rfahlevih commited on
Commit
fede59a
·
verified ·
1 Parent(s): bcfa65d
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -33,5 +33,5 @@ predicted_class = logits.argmax(dim=-1).item()
33
 
34
  sentiment = "Negative" if predicted_class == 0 else "Positive"
35
 
36
- print(f"Predicted class: {predicted_class} - Sentimen: {sentiment}")
37
  ```
 
33
 
34
  sentiment = "Negative" if predicted_class == 0 else "Positive"
35
 
36
+ print(f"Predicted class: {predicted_class}\nSentimen: {sentiment}")
37
  ```