-
Notifications
You must be signed in to change notification settings - Fork 3
/
deepforge-extension.json
47 lines (47 loc) · 1.5 KB
/
deepforge-extension.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"type": "Library",
"name": "keras",
"description": "Neural Network library using Keras with a TensorFlow backend",
"seed": "keras",
"initCode": "./init_code.py",
"nodeTypes": [
"Architecture"
],
"models": [
{
"name": "LeNet",
"description": "A simple CNN for image classfication.",
"path": "src/models/lenet.webgmexm"
},
{
"name": "AlexNet",
"description": "A CNN trained for image classification on ImageNet in 2012.",
"path": "src/models/alexnet.webgmexm"
},
{
"name": "DCGAN",
"description": "Deep Convolutional Generative Adversarial Network",
"path": "src/models/dcgan.webgmexm"
},
{
"name": "Inception",
"description": "CNN with 27 layers for image classification.",
"path": "src/models/inception.webgmexm"
},
{
"name": "ResNet-50",
"description": "CNN with 50 layers leveraging skip connections.",
"path": "src/models/resnet50.webgmexm"
},
{
"name": "VGG-16",
"description": "Deep CNN with improvements over AlexNet on ImageNet",
"path": "src/models/vgg16.webgmexm"
},
{
"name": "Xception",
"description": "A variation of Inception with depthwise separable convolutions.",
"path": "src/models/xception.webgmexm"
}
]
}