Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,38 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
task_categories:
|
4 |
+
- graph-ml
|
5 |
+
- image-classification
|
6 |
+
pretty_name: DeepNets
|
7 |
+
size_categories:
|
8 |
+
- 1M<n<10M
|
9 |
---
|
10 |
+
|
11 |
+
This is a copy of the **DeepNets-1M** dataset originally released at https://github.com/facebookresearch/ppuda under the MIT license.
|
12 |
+
|
13 |
+
The dataset presents diverse computational graphs (1M training and 1402 evaluation) of neural network architectures used in image classification.
|
14 |
+
See detailed description at https://paperswithcode.com/dataset/deepnets-1m and
|
15 |
+
in the [Parameter Prediction for Unseen Deep Architectures](https://arxiv.org/abs/2110.13100) paper.
|
16 |
+
|
17 |
+
|
18 |
+
There are four files in this dataset:
|
19 |
+
- deepnets1m_eval.hdf5; # 16 MB (md5: 1f5641329271583ad068f43e1521517e)
|
20 |
+
- deepnets1m_meta.tar.gz; # 35 MB (md5: a42b6f513da6bbe493fc16a30d6d4e3e), run `tar -xf deepnets1m_meta.tar.gz` to unpack it before running any code reading the dataset
|
21 |
+
- deepnets1m_search.hdf5; # 1.3 GB (md5: 0a93f4b4e3b729ea71eb383f78ea9b53)
|
22 |
+
- deepnets1m_train.hdf5; # 10.3 GB (md5: 90bbe84bb1da0d76cdc06d5ff84fa23d)
|
23 |
+
|
24 |
+
|
25 |
+
<img src="https://production-media.paperswithcode.com/datasets/0dbd44d8-19d9-495d-918a-b0db80facaf3.png" alt="" width="600"/>
|
26 |
+
|
27 |
+
## Citation
|
28 |
+
|
29 |
+
If you use this dataset, please cite it as:
|
30 |
+
|
31 |
+
```
|
32 |
+
@inproceedings{knyazev2021parameter,
|
33 |
+
title={Parameter Prediction for Unseen Deep Architectures},
|
34 |
+
author={Knyazev, Boris and Drozdzal, Michal and Taylor, Graham W and Romero-Soriano, Adriana},
|
35 |
+
booktitle={Advances in Neural Information Processing Systems},
|
36 |
+
year={2021}
|
37 |
+
}
|
38 |
+
```
|