File size: 265 Bytes
25f0c96
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import streamlit as st
import datasets as ds


@st.cache
def load_tasks():
    return [
  'causal-language-modeling',
  'masked-language-modeling',
  'question-answering',
  'summarization',
  'text-classification',
  'token-classification',
  'translation',
    ]