Add missing comma (#7870)

This commit is contained in:
Manuel Romero 2020-10-21 14:24:12 +02:00 committed by GitHub
parent 3eaa007d78
commit 8e23749649
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@ Dataset ID: ```squad``` from [HugginFace/NLP](https://github.com/huggingface/nl
How to load it from [nlp](https://github.com/huggingface/nlp)
```python
train_dataset = nlp.load_dataset('squad, split=nlp.Split.TRAIN)
train_dataset = nlp.load_dataset('squad', split=nlp.Split.TRAIN)
valid_dataset = nlp.load_dataset('squad', split=nlp.Split.VALIDATION)
```
Check out more about this dataset and others in [NLP Viewer](https://huggingface.co/nlp/viewer/)