nbansal commited on
Commit
3d8a6b1
1 Parent(s): 6ca6a6d
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -30,9 +30,9 @@ Sem-F1 takes 2 mandatory arguments:
30
  - `predictions` - List of predictions. Format varies based on `tokenize_sentences` and `multi_references` flags.
31
  - `references`: List of references. Format varies based on `tokenize_sentences` and `multi_references` flags.
32
 
 
33
  ```python
34
  from evaluate import load
35
-
36
  predictions = [
37
  ["I go to School. You are stupid."],
38
  ["I love adventure sports."],
@@ -47,6 +47,7 @@ for score in results:
47
  print(f"Precision: {score.precision}, Recall: {score.recall}, F1: {score.f1}")
48
  ```
49
 
 
50
  Sem-F1 also accepts multiple optional arguments:
51
  - `model_type (str)`: Model to use for encoding sentences. Options: ['pv1', 'stsb', 'use']
52
  - `pv1` - [paraphrase-distilroberta-base-v1](https://huggingface.co/sentence-transformers/paraphrase-distilroberta-base-v1)
 
30
  - `predictions` - List of predictions. Format varies based on `tokenize_sentences` and `multi_references` flags.
31
  - `references`: List of references. Format varies based on `tokenize_sentences` and `multi_references` flags.
32
 
33
+
34
  ```python
35
  from evaluate import load
 
36
  predictions = [
37
  ["I go to School. You are stupid."],
38
  ["I love adventure sports."],
 
47
  print(f"Precision: {score.precision}, Recall: {score.recall}, F1: {score.f1}")
48
  ```
49
 
50
+
51
  Sem-F1 also accepts multiple optional arguments:
52
  - `model_type (str)`: Model to use for encoding sentences. Options: ['pv1', 'stsb', 'use']
53
  - `pv1` - [paraphrase-distilroberta-base-v1](https://huggingface.co/sentence-transformers/paraphrase-distilroberta-base-v1)