lorenzoscottb commited on
Commit
be274f0
Β·
1 Parent(s): 70370ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -13,8 +13,8 @@ def check_lang(lang_acronym):
13
  title = "DReAM"
14
 
15
  description_main = """
16
- This space allows access to a set of LLMs tuned to perform different tasks over dream reports.
17
- Two main tasks are available:
18
 
19
  - Sentiment Analysis (SA), with two English-only models (one for classification, one for generation) and a large multilingual model for classification.
20
 
@@ -115,5 +115,5 @@ interface_model_NER = gr.Interface.load(
115
 
116
  gr.TabbedInterface(
117
  [interface_words, interface_model_L, interface_model_S, interface_model_G, interface_model_RE, interface_model_NER],
118
- ["Intro", "SA Large Multilingual", "SA Base En", "SA En Generation", "RE Generation", "NER Generation"]
119
  ).launch()
 
13
  title = "DReAM"
14
 
15
  description_main = """
16
+ This space allows you to test a set of LLMs tuned to perform different tasks over dream reports.
17
+ Three main tasks are available:
18
 
19
  - Sentiment Analysis (SA), with two English-only models (one for classification, one for generation) and a large multilingual model for classification.
20
 
 
115
 
116
  gr.TabbedInterface(
117
  [interface_words, interface_model_L, interface_model_S, interface_model_G, interface_model_RE, interface_model_NER],
118
+ ["Main", "SA Large Multilingual", "SA Base En", "SA En Generation", "RE Generation", "NER Generation"]
119
  ).launch()