update readme
Browse files
README.md
CHANGED
@@ -109,17 +109,13 @@ The complete results on this benchmark, including all of the human and model (e.
|
|
109 |
```
|
110 |
git clone https://github.com/tzler/MOCHI.git
|
111 |
```
|
112 |
-
|
113 |
And then imported with a few lines of code:
|
114 |
|
115 |
```python
|
116 |
-
|
117 |
import pandas
|
118 |
-
|
119 |
# load data the github repo we just cloned
|
120 |
df = pandas.read_csv('MOCHI/assets/benchmark.csv')
|
121 |
# extract trial info with the index from huggingface repo above
|
122 |
df.loc[i_trial_index]['trial']
|
123 |
```
|
124 |
-
|
125 |
This returns the trial, `shapegen2527`, which is the same as the huggingface dataset for this index.
|
|
|
109 |
```
|
110 |
git clone https://github.com/tzler/MOCHI.git
|
111 |
```
|
|
|
112 |
And then imported with a few lines of code:
|
113 |
|
114 |
```python
|
|
|
115 |
import pandas
|
|
|
116 |
# load data the github repo we just cloned
|
117 |
df = pandas.read_csv('MOCHI/assets/benchmark.csv')
|
118 |
# extract trial info with the index from huggingface repo above
|
119 |
df.loc[i_trial_index]['trial']
|
120 |
```
|
|
|
121 |
This returns the trial, `shapegen2527`, which is the same as the huggingface dataset for this index.
|