dk-crazydiv commited on
Commit
00770ee
2 Parent(s): abd3263 919d120

Merge branch 'main' of https://huggingface.co/datasets/dk-crazydiv/huggingface-modelhub into main

Browse files
Files changed (1) hide show
  1. README.md +52 -0
README.md ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Summary
2
+ Metadata information of all the models uploaded on [HuggingFace modelhub](https://huggingface.co/models)
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
+ ```
8
+ from datasets import load_dataset
9
+ modelhub_dataset = load_dataset("dk-crazydiv/huggingface-modelhub")
10
+ ```
11
+ ### Useful commands:
12
+ ```
13
+ modelhub_dataset["train"] # Access train subset (the only subset available)
14
+ modelhub_dataset["train"][0] # Access the dataset elements by index
15
+ modelhub_dataset["train"].features # Get the columns present in the dataset.
16
+ ```
17
+ ### Sample dataset:
18
+ ```
19
+ {
20
+ "files": [
21
+ ".gitattributes",
22
+ "README.md",
23
+ "config.json",
24
+ "pytorch_model.bin",
25
+ "spiece.model",
26
+ "tf_model.h5",
27
+ "tokenizer.json",
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",
34
+ "tags": [
35
+ "pytorch",
36
+ "tf",
37
+ "albert",
38
+ "masked-lm",
39
+ "en",
40
+ "dataset:bookcorpus",
41
+ "dataset:wikipedia",
42
+ "arxiv:1909.11942",
43
+ "transformers",
44
+ "exbert",
45
+ "license:apache-2.0",
46
+ "fill-mask"
47
+ ],
48
+ "modelCard": "..."
49
+ }
50
+ ```
51
+ ## Bugs:
52
+ Please report any bugs/improvements to me on [twitter](https://twitter.com/kartik_godawat)