Nikhil0987 commited on
Commit
a640ab4
·
verified ·
1 Parent(s): 4a78a3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -9
app.py CHANGED
@@ -18,15 +18,19 @@ user_input = st.text_input("Enter your message:")
18
  # Preprocess and generate response when the user hits Enter
19
  if user_input:
20
  if user_input.lower() == "quit":
21
- st.stop() # End the Streamlit app
22
 
23
- encoded_input = tokenizer(user_input, return_tensors='pt')
24
- outputs = model(**encoded_input)
25
- logits = outputs.logits
26
- predicted_class_id = logits.argmax(-1).item()
27
 
28
-
29
- sentiment_map = {0: "negative", 1: "neutral", 2: "positive"} # Sentiment mapping
30
- sentiment = sentiment_map[predicted_class_id] # Get predicted sentiment
 
 
 
 
31
 
32
- st.write(f"Predicted Sentiment: {sentiment}") # Display the sentiment
 
 
 
18
  # Preprocess and generate response when the user hits Enter
19
  if user_input:
20
  if user_input.lower() == "quit":
21
+ st.stop()
22
 
23
+ # Encode the user input
24
+ input_ids = tokenizer.encode(user_input, return_tensors='pt')
 
 
25
 
26
+ # Generate a response (adjust parameters for control)
27
+ output_sequences = model.generate(
28
+ input_ids=input_ids,
29
+ max_length=50, # Example max response length
30
+ temperature=0.8, # Controls creativity
31
+ # ... other generation parameters ...
32
+ )
33
 
34
+ # Decode the generated text and display
35
+ generated_text = tokenizer.decode(output_sequences[0], skip_special_tokens=True)
36
+ st.write(generated_text)