Commit ·
5b6f20f
1
Parent(s): ea3ef1b
Update README.md
Browse files
README.md
CHANGED
|
@@ -3,6 +3,9 @@ Metadata information of all the models uploaded on [HuggingFace modelhub](https:
|
|
| 3 |
Dataset was last updated on 15th June 2021. Contains information on 10,354 models (v1).
|
| 4 |
Only `train` dataset is provided
|
| 5 |
|
|
|
|
|
|
|
|
|
|
| 6 |
## Loading data
|
| 7 |
```python
|
| 8 |
from datasets import load_dataset
|
|
@@ -17,6 +20,7 @@ modelhub_dataset["train"].features # Get the columns present in the dataset.
|
|
| 17 |
### Sample dataset:
|
| 18 |
```json
|
| 19 |
{
|
|
|
|
| 20 |
"files": [
|
| 21 |
".gitattributes",
|
| 22 |
"README.md",
|
|
@@ -28,6 +32,7 @@ modelhub_dataset["train"].features # Get the columns present in the dataset.
|
|
| 28 |
"with-prefix-tf_model.h5"
|
| 29 |
],
|
| 30 |
"lastModified": "2021-01-13T15:08:24.000Z",
|
|
|
|
| 31 |
"modelId": "albert-base-v1",
|
| 32 |
"pipeline_tag": "fill-mask",
|
| 33 |
"publishedBy": "huggingface",
|
|
@@ -45,7 +50,7 @@ modelhub_dataset["train"].features # Get the columns present in the dataset.
|
|
| 45 |
"license:apache-2.0",
|
| 46 |
"fill-mask"
|
| 47 |
],
|
| 48 |
-
"modelCard": "..."
|
| 49 |
}
|
| 50 |
```
|
| 51 |
## Bugs:
|
|
|
|
| 3 |
Dataset was last updated on 15th June 2021. Contains information on 10,354 models (v1).
|
| 4 |
Only `train` dataset is provided
|
| 5 |
|
| 6 |
+
#### Update: v1.0.2: Added downloads_last_month and library data
|
| 7 |
+
Same dataset is available in [kaggle](https://www.kaggle.com/crazydiv/huggingface-modelhub)
|
| 8 |
+
|
| 9 |
## Loading data
|
| 10 |
```python
|
| 11 |
from datasets import load_dataset
|
|
|
|
| 20 |
### Sample dataset:
|
| 21 |
```json
|
| 22 |
{
|
| 23 |
+
"downloads_last_month": 7474,
|
| 24 |
"files": [
|
| 25 |
".gitattributes",
|
| 26 |
"README.md",
|
|
|
|
| 32 |
"with-prefix-tf_model.h5"
|
| 33 |
],
|
| 34 |
"lastModified": "2021-01-13T15:08:24.000Z",
|
| 35 |
+
"library": "transformers",
|
| 36 |
"modelId": "albert-base-v1",
|
| 37 |
"pipeline_tag": "fill-mask",
|
| 38 |
"publishedBy": "huggingface",
|
|
|
|
| 50 |
"license:apache-2.0",
|
| 51 |
"fill-mask"
|
| 52 |
],
|
| 53 |
+
"modelCard": "Readme sample data..."
|
| 54 |
}
|
| 55 |
```
|
| 56 |
## Bugs:
|