FrancescoPeriti
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -145,7 +145,7 @@ with torch.no_grad():
|
|
145 |
sense_definitions.append(answer.replace('\n', ' ') + '\n')
|
146 |
|
147 |
# output
|
148 |
-
dataset = dataset.add_column('definition',
|
149 |
for row in dataset:
|
150 |
print(f"Target: {row['target']}\nExample: {row['example']}\nSense definition: {row['definition']}")
|
151 |
```
|
|
|
145 |
sense_definitions.append(answer.replace('\n', ' ') + '\n')
|
146 |
|
147 |
# output
|
148 |
+
dataset = dataset.add_column('definition', sense_definitions)
|
149 |
for row in dataset:
|
150 |
print(f"Target: {row['target']}\nExample: {row['example']}\nSense definition: {row['definition']}")
|
151 |
```
|