juliusherzig commited on
Commit
1149460
·
verified ·
1 Parent(s): 7b8036a

add missing bracket in model.encode()

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -59,7 +59,7 @@ model = SetFitModel.from_pretrained("juliusherzig/setfit-modernbert-studien1")
59
  # Run inference
60
  preds = model("I loved the spiderman movie!")
61
  #Generate embeddings with the fine-tuned model
62
- embeddings = model.encode(df["text"].tolist(),
63
  ```
64
 
65
  <!--
 
59
  # Run inference
60
  preds = model("I loved the spiderman movie!")
61
  #Generate embeddings with the fine-tuned model
62
+ embeddings = model.encode(df["text"].tolist()),
63
  ```
64
 
65
  <!--