Update README.md
Browse files
README.md
CHANGED
|
@@ -34,7 +34,7 @@ Some external servers require API keys. Therefore, to test and send requests to
|
|
| 34 |
|
| 35 |
The LLM used in the example code also requires configuration. Please make sure to specify the model name and provide the corresponding API key.
|
| 36 |
|
| 37 |
-
Please also remember to put the data files into ~/data. Or you can modify the data path in test.py.
|
| 38 |
|
| 39 |
```
|
| 40 |
cd examples/autogen
|
|
@@ -48,6 +48,13 @@ If you want to use other models, please modify eval.py. For instance, if you wan
|
|
| 48 |
sh eval.sh
|
| 49 |
```
|
| 50 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
## Citing
|
| 52 |
|
| 53 |
If you found the data or code useful, free to cite:
|
|
|
|
| 34 |
|
| 35 |
The LLM used in the example code also requires configuration. Please make sure to specify the model name and provide the corresponding API key.
|
| 36 |
|
| 37 |
+
Please also remember to put the data/*.csv files into ~/data. Or you can modify the data path in test.py.
|
| 38 |
|
| 39 |
```
|
| 40 |
cd examples/autogen
|
|
|
|
| 48 |
sh eval.sh
|
| 49 |
```
|
| 50 |
|
| 51 |
+
## load datasets
|
| 52 |
+
If you want to load datasets, and use the data in jsonl format:
|
| 53 |
+
```
|
| 54 |
+
from datasets import load_dataset
|
| 55 |
+
dataset = load_dataset("lorashen/Auto-SLURP")
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
## Citing
|
| 59 |
|
| 60 |
If you found the data or code useful, free to cite:
|