papasega commited on
Commit
cdc8900
·
1 Parent(s): ee7cf53

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -28,18 +28,22 @@ fluency = gr.Interface(fn=predict_fluency,
28
  outputs="text",
29
  description="Ce modèle est un modèle de classification de la fluence de l'utilisateur suivant le texte.",
30
  examples=[
31
- ["Engineer, Yeah, indeed, you know that the lady has a Phd. It's the 1st.",
32
- "Engineer, Yeah, indeed, you know that the lady has a Phd. It's the 1st."],
33
  ["Engineer, indeed, the lady, an accomplished engineer, holds a prestigious Ph.D. It's her first achievement of such caliber.",
34
  "Engineer, indeed, the lady, an accomplished engineer, holds a prestigious Ph.D. It's her first achievement of such caliber."],
35
  [ "Oh, how was brown for you?",
36
  "Oh, how was brown for you?"],
 
 
37
  [ "Now they can.",
38
  "Now they can."],
 
 
39
  [ "But kind of plastics like growing more social consciousness, right?",
40
  "But kind of plastics like growing more social consciousness, right?"]
41
  ]
42
- )
43
 
44
 
45
 
 
28
  outputs="text",
29
  description="Ce modèle est un modèle de classification de la fluence de l'utilisateur suivant le texte.",
30
  examples=[
31
+ ["Engineer, Yeah, you",
32
+ "Engineer, Yeah, you"],
33
  ["Engineer, indeed, the lady, an accomplished engineer, holds a prestigious Ph.D. It's her first achievement of such caliber.",
34
  "Engineer, indeed, the lady, an accomplished engineer, holds a prestigious Ph.D. It's her first achievement of such caliber."],
35
  [ "Oh, how was brown for you?",
36
  "Oh, how was brown for you?"],
37
+ ["The cat chased its tail, tail spinning wildly around and around.",
38
+ "The cat chased its tail, tail spinning wildly around and around."],
39
  [ "Now they can.",
40
  "Now they can."],
41
+ ["I like to read books and watch movies on the weekends.",
42
+ "I like to read books and watch movies on the weekends."],
43
  [ "But kind of plastics like growing more social consciousness, right?",
44
  "But kind of plastics like growing more social consciousness, right?"]
45
  ]
46
+ )
47
 
48
 
49