Spaces:
Running
Running
Commit
·
ea18bb3
1
Parent(s):
beff7ec
instruction fix
Browse files- assets/instructions.md +3 -3
assets/instructions.md
CHANGED
|
@@ -32,9 +32,9 @@ With this data, the self ranking procedure can be invoked as follows:
|
|
| 32 |
|
| 33 |
```python
|
| 34 |
import pandas as pd
|
| 35 |
-
from algos.iterative import SelfRank # The full ranking algorithm
|
| 36 |
-
from algos.greedy import SelfRankGreedy # The greedy version
|
| 37 |
-
from algos.triplet import rouge, equality
|
| 38 |
|
| 39 |
f = "inferences.csv"
|
| 40 |
df = pd.read_csv(f)
|
|
|
|
| 32 |
|
| 33 |
```python
|
| 34 |
import pandas as pd
|
| 35 |
+
from selfrank.algos.iterative import SelfRank # The full ranking algorithm
|
| 36 |
+
from selfrank.algos.greedy import SelfRankGreedy # The greedy version
|
| 37 |
+
from selfrank.algos.triplet import rouge, equality
|
| 38 |
|
| 39 |
f = "inferences.csv"
|
| 40 |
df = pd.read_csv(f)
|