prostochel097 commited on
Commit
a4e9aa2
·
verified ·
1 Parent(s): fc8b889

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +22 -14
config.json CHANGED
@@ -1,16 +1,24 @@
1
  {
2
- "model_name": "alpha3D-v1",
3
- "architecture": "SimpleMLP",
4
- "version": "1.0",
5
- "parameters": {
6
- "num_points": 1000,
7
- "input_dim": 5,
8
- "output_dim": 6000,
9
- "hidden_layers": [
10
- 128,
11
- 512,
12
- 1024
13
- ]
14
- },
15
- "license": "Apache-2.0"
 
 
 
 
 
 
 
 
16
  }
 
1
  {
2
+ "architectures": [
3
+ "Alpha3DModel"
4
+ ],
5
+ "model_type": "alpha3d",
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_alpha3d.Alpha3DConfig",
8
+ "AutoModel": "modeling_alpha3d.Alpha3DModel"
9
+ },
10
+ "num_points": 1000,
11
+ "hidden_dims": [
12
+ 128,
13
+ 512,
14
+ 1024
15
+ ],
16
+ "vocab": {
17
+ "red": 0,
18
+ "green": 1,
19
+ "blue": 2,
20
+ "cube": 3,
21
+ "sphere": 4
22
+ },
23
+ "transformers_version": "4.35.2"
24
  }