sagemaker-launcher / utils /load_tasks.py
philschmid's picture
philschmid HF staff
online trainer
25f0c96
raw
history blame contribute delete
265 Bytes
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',
]