d.tsimerman commited on
Commit
a922c26
1 Parent(s): a4ab98a

fix context

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -15,9 +15,9 @@ model = transformers.AutoModelForSequenceClassification.from_pretrained(model_na
15
  if torch.cuda.is_available():
16
  model = model.cuda()
17
 
18
- context_3 = 'Привет'
19
- context_2 = 'Привет!'
20
- context_1 = 'Как у тебя дела?'
21
 
22
  st.markdown('👱🏻‍♀️ **Настя**: ' + context_3)
23
  st.markdown('🤖 **Диалоговый агент**: ' + context_2)
15
  if torch.cuda.is_available():
16
  model = model.cuda()
17
 
18
+ context_3 = 'привет'
19
+ context_2 = 'привет!'
20
+ context_1 = 'как дела?'
21
 
22
  st.markdown('👱🏻‍♀️ **Настя**: ' + context_3)
23
  st.markdown('🤖 **Диалоговый агент**: ' + context_2)