TheCamusean commited on
Commit
19b30ef
•
1 Parent(s): acfd94e

Folder based model loading

Browse files
model.pth → grasp_dif_mugs/model.pth RENAMED
File without changes
params.json → grasp_dif_mugs/params.json RENAMED
File without changes
grasp_dif_multi/model.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f67f127c32ea5a5a9ca2348bef7b98e571b8a10df92e0ae675d06ab1e000e5ba
3
+ size 24948651
grasp_dif_multi/params.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "Description" : [ "This experiment trains jointly an SDF model and a SE(3) Grasp Energy" ],
3
+ "exp_log_dir": "multiobject_p_graspdif2",
4
+ "cuda_device":1,
5
+ "single_object": false,
6
+ "TrainSpecs": {
7
+ "batch_size": 10,
8
+ "num_epochs": 90000,
9
+ "steps_til_summary": 500,
10
+ "iters_til_checkpoint": 1000,
11
+ "epochs_til_checkpoint": 10
12
+ },
13
+ "NetworkArch" : "PointcloudGraspDiffusion",
14
+ "NetworkSpecs" : {
15
+ "feature_encoder": {
16
+ "enc_dim": 528,
17
+ "in_dim": 3,
18
+ "out_dim": 20,
19
+ "dims" : [ 512, 512, 512, 2048, 1024, 1024],
20
+ "dropout" : [0, 1, 2, 3, 4, 5],
21
+ "dropout_prob" : 0.2,
22
+ "norm_layers" : [0, 1, 2, 3, 4, 5],
23
+ "latent_in" : [4],
24
+ "xyz_in_all" : false,
25
+ "use_tanh" : false,
26
+ "latent_dropout" : false,
27
+ "weight_norm" : true
28
+ },
29
+ "encoder": {
30
+ "latent_size": 528,
31
+ "hidden_dim": 512
32
+ },
33
+ "points": {
34
+ "n_points": 30,
35
+ "loc": [0.0, 0.0, 0.5],
36
+ "scale": [0.7, 0.5, 0.7]
37
+ },
38
+ "decoder": {
39
+ "hidden_dim": 512
40
+ }
41
+ },
42
+ "LearningRateSchedule" : [
43
+ {
44
+ "Type" : "Step",
45
+ "Initial" : 0.0005,
46
+ "Interval" : 500,
47
+ "Factor" : 0.5
48
+ },
49
+ {
50
+ "Type" : "Step",
51
+ "Initial" : 0.001,
52
+ "Interval" : 500,
53
+ "Factor" : 0.5
54
+ },
55
+ {
56
+ "Type" : "Step",
57
+ "Initial" : 0.001,
58
+ "Interval" : 500,
59
+ "Factor" : 0.5
60
+ }],
61
+ "Losses": ["sdf_loss", "projected_denoising_loss"]
62
+ }