Update README.md
Browse files
README.md
CHANGED
|
@@ -13,11 +13,17 @@ license: mit
|
|
| 13 |
<h1>Quickstart Usage</h1>
|
| 14 |
<p>Install HuggingFace Datasets package</p>
|
| 15 |
<p>Each subset can be loaded into python using the Huggingface datasets library. First, from the command line install the datasets library:</p>
|
|
|
|
| 16 |
```python
|
| 17 |
-
|
| 18 |
-
import datasets
|
| 19 |
-
```
|
| 20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 21 |
|
| 22 |
|
| 23 |
<h1>Data Explaination</h1>
|
|
|
|
| 13 |
<h1>Quickstart Usage</h1>
|
| 14 |
<p>Install HuggingFace Datasets package</p>
|
| 15 |
<p>Each subset can be loaded into python using the Huggingface datasets library. First, from the command line install the datasets library:</p>
|
| 16 |
+
|
| 17 |
```python
|
| 18 |
+
from datasets import load_dataset
|
|
|
|
|
|
|
| 19 |
|
| 20 |
+
dataset_protein = load_dataset(
|
| 21 |
+
"JOOOOOOOOOOJ/Rosetta_NAKB",
|
| 22 |
+
data_files="Protein/*.csv"
|
| 23 |
+
)
|
| 24 |
+
|
| 25 |
+
dataset_protein["train"].head()
|
| 26 |
+
```
|
| 27 |
|
| 28 |
|
| 29 |
<h1>Data Explaination</h1>
|