dk4120 commited on
Commit
724c800
·
verified ·
1 Parent(s): 4682c2e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +63 -34
README.md CHANGED
@@ -1,34 +1,63 @@
1
- Summary
2
-
3
- This repository contains a dataset of neural networks, designed for the purpose of hypernetworks research. The dataset includes 10,610 neural networks trained for binary image classification separated into 10 classes, such that each class contains 1,061 different neural networks that can identify a certain ImageNette V2 class from all other classes. The classification models used a LeNet-5 framework with each model containing 91,481 parameters. A computing cluster of over 10,000 cores was used to generate the dataset. Basic classification results show that the neural networks can be classified with accuracy of 87%, indicating that the differences between the neural networks can be identified by supervised machine learning algorithms in accuracy better than mere chance. The ultimate purpose of the dataset is to enable hypernetworks research. 
4
-
5
- Specifications
6
-
7
- This repository contains the indivdual model files, consolidated listing of parameters, and training/validation loss and accuracy plots for each model.
8
-
9
- Directory Listing
10
-
11
- Model Weights - contains individual model paratmeters saved ad hdf5 files
12
- Plots - contains plots for training/validation loss and accuracy for each model 
13
- Pickle Files - consolidated parameters saved into a single file for all 10,610 models. 
14
- Modelwise - parameters by model in dictionary format
15
- Keys: model, parameters_by_layer, parameters_flat 
16
- Example: {'model': 'church_649', 'parameters_by_layer': {'conv2d/conv2d/bias:0': tensor([ 0.0572, 0.0594, -0.0007, -0.0440, 0.0227, 0.0155]), 'conv2d/conv2d/kernel:0': tensor([[[[ 2.0242e-01, -8.1340e-02, -1.1604e-01, 6.9871e-02, -1.4720e-01,...}, 'parameters_flat': tensor([ 0.0572, 0.0594, -0.0007, ..., 0.2816, 0.3210, -0.1104])}
17
- Layerwise - parameters by layer for all models in a given class
18
- Keys: class, parameters 
19
- Example: {'class': 'cassette_player', 'parameters': {'conv2d': [array([ 2.81625651e-02, -7.09968358e-02, -1.40507936e-01, -9.32385959e-03, -1.10361770e-01, 1.00062557e-01, -3.23645794e-03, 1.01349339e-01, 5.19516990e-02, -8.61838460e-02, 1.42671123e-01, -1.31018981e-01,...'dense_1': [array([-0.04802695, -0.26561895, -0.13131969,  0.13551578, -0.14921758, -0.15271764,  0.226575...}
20
-
21
-
22
-
23
- Class  Accuracy Min Accuracy Max Accuracy Avg Precision Min Precision Max Precision Avg Recall Min Recall Max Recall Avg F1 Min F1 Max F1 Avg
24
- tench 0.932 0.949 0.942 0.663 0.872 0.769 0.478 0.672 0.587 0.604 0.713 0.665
25
- english_springer 0.894 0.920 0.911 0.473 0.779 0.619 0.134 0.496 0.315 0.219 0.522 0.412
26
- cassette_player 0.916 0.937 0.928 0.544 0.845 0.675 0.272 0.569 0.408 0.407 0.581 0.506
27
- chain_saw 0.897 0.908 0.903 0.349 0.933 0.576 0.008 0.127 0.068 0.015 0.214 0.120
28
- church 0.901 0.921 0.911 0.533 0.844 0.666 0.134 0.438 0.301 0.226 0.518 0.411
29
- french_horn 0.886 0.907 0.900 0.300 0.634 0.507 0.008 0.353 0.186 0.015 0.406 0.265
30
- garbage_truck 0.892 0.927 0.917 0.464 0.846 0.645 0.193 0.584 0.395 0.303 0.565 0.484
31
- gas_pump 0.870 0.901 0.892 0.295 0.684 0.480 0.062 0.234 0.151 0.109 0.306 0.228
32
- golf_ball 0.898 0.919 0.912 0.496 0.836 0.658 0.128 0.434 0.298 0.222 0.494 0.407
33
- parachute 0.920 0.944 0.937 0.583 0.875 0.773 0.313 0.674 0.532 0.448 0.685 0.626
34
- All Classes 0.870 0.949 0.915 0.295 0.933 0.637 0.008 0.674 0.324 0.015 0.713 0.412
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Neural Networks Dataset for Hypernetworks Research
2
+
3
+ ## Summary
4
+ This repository contains a dataset of neural networks, designed for the purpose of hypernetworks research. The dataset includes 10,610 neural networks trained for binary image classification separated into 10 classes, such that each class contains 1,061 different neural networks that can identify a certain ImageNette V2 class from all other classes. The classification models used a LeNet-5 framework with each model containing 91,481 parameters. A computing cluster of over 10,000 cores was used to generate the dataset. Basic classification results show that the neural networks can be classified with accuracy of 87%, indicating that the differences between the neural networks can be identified by supervised machine learning algorithms in accuracy better than mere chance. The ultimate purpose of the dataset is to enable hypernetworks research.
5
+
6
+ ## Specifications
7
+ This repository contains the individual model files, consolidated listing of parameters, and training/validation loss and accuracy plots for each model.
8
+
9
+ ## Directory Listing
10
+
11
+ ### Model Weights
12
+ Contains individual model parameters saved as hdf5 files
13
+
14
+ ### Plots
15
+ Contains plots for training/validation loss and accuracy for each model
16
+
17
+ ### Pickle Files
18
+ Consolidated parameters saved into a single file for all 10,610 models.
19
+
20
+ #### Modelwise
21
+ Parameters by model in dictionary format
22
+ - Keys: `model`, `parameters_by_layer`, `parameters_flat`
23
+ - Example:
24
+ ```
25
+ {
26
+ 'model': 'church_649',
27
+ 'parameters_by_layer': {
28
+ 'conv2d/conv2d/bias:0': tensor([ 0.0572, 0.0594, -0.0007, -0.0440, 0.0227, 0.0155]),
29
+ 'conv2d/conv2d/kernel:0': tensor([[[[ 2.0242e-01, -8.1340e-02, -1.1604e-01, 6.9871e-02, -1.4720e-01,...
30
+ },
31
+ 'parameters_flat': tensor([ 0.0572, 0.0594, -0.0007, ..., 0.2816, 0.3210, -0.1104])
32
+ }
33
+ ```
34
+
35
+ #### Layerwise
36
+ Parameters by layer for all models in a given class
37
+ - Keys: `class`, `parameters`
38
+ - Example:
39
+ ```
40
+ {
41
+ 'class': 'cassette_player',
42
+ 'parameters': {
43
+ 'conv2d': [array([ 2.81625651e-02, -7.09968358e-02, -1.40507936e-01, -9.32385959e-03, -1.10361770e-01, 1.00062557e-01, -3.23645794e-03, 1.01349339e-01, 5.19516990e-02, -8.61838460e-02, 1.42671123e-01, -1.31018981e-01,...
44
+ 'dense_1': [array([-0.04802695, -0.26561895, -0.13131969, 0.13551578, -0.14921758, -0.15271764, 0.226575...
45
+ }
46
+ }
47
+ ```
48
+
49
+ ## Performance Metrics
50
+
51
+ | Class | Accuracy Min | Accuracy Max | Accuracy Avg | Precision Min | Precision Max | Precision Avg | Recall Min | Recall Max | Recall Avg | F1 Min | F1 Max | F1 Avg |
52
+ |-------|-------------|-------------|-------------|--------------|--------------|--------------|-----------|-----------|-----------|--------|--------|--------|
53
+ | tench | 0.932 | 0.949 | 0.942 | 0.663 | 0.872 | 0.769 | 0.478 | 0.672 | 0.587 | 0.604 | 0.713 | 0.665 |
54
+ | english_springer | 0.894 | 0.920 | 0.911 | 0.473 | 0.779 | 0.619 | 0.134 | 0.496 | 0.315 | 0.219 | 0.522 | 0.412 |
55
+ | cassette_player | 0.916 | 0.937 | 0.928 | 0.544 | 0.845 | 0.675 | 0.272 | 0.569 | 0.408 | 0.407 | 0.581 | 0.506 |
56
+ | chain_saw | 0.897 | 0.908 | 0.903 | 0.349 | 0.933 | 0.576 | 0.008 | 0.127 | 0.068 | 0.015 | 0.214 | 0.120 |
57
+ | church | 0.901 | 0.921 | 0.911 | 0.533 | 0.844 | 0.666 | 0.134 | 0.438 | 0.301 | 0.226 | 0.518 | 0.411 |
58
+ | french_horn | 0.886 | 0.907 | 0.900 | 0.300 | 0.634 | 0.507 | 0.008 | 0.353 | 0.186 | 0.015 | 0.406 | 0.265 |
59
+ | garbage_truck | 0.892 | 0.927 | 0.917 | 0.464 | 0.846 | 0.645 | 0.193 | 0.584 | 0.395 | 0.303 | 0.565 | 0.484 |
60
+ | gas_pump | 0.870 | 0.901 | 0.892 | 0.295 | 0.684 | 0.480 | 0.062 | 0.234 | 0.151 | 0.109 | 0.306 | 0.228 |
61
+ | golf_ball | 0.898 | 0.919 | 0.912 | 0.496 | 0.836 | 0.658 | 0.128 | 0.434 | 0.298 | 0.222 | 0.494 | 0.407 |
62
+ | parachute | 0.920 | 0.944 | 0.937 | 0.583 | 0.875 | 0.773 | 0.313 | 0.674 | 0.532 | 0.448 | 0.685 | 0.626 |
63
+ | All Classes | 0.870 | 0.949 | 0.915 | 0.295 | 0.933 | 0.637 | 0.008 | 0.674 | 0.324 | 0.015 | 0.713 | 0.412 |