DeepSDFStruct 1.7.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- DeepSDFStruct/SDF.py +1734 -0
- DeepSDFStruct/__init__.py +66 -0
- DeepSDFStruct/deep_sdf/__init__.py +69 -0
- DeepSDFStruct/deep_sdf/create_screenshots_from_plyfiles.py +65 -0
- DeepSDFStruct/deep_sdf/data.py +258 -0
- DeepSDFStruct/deep_sdf/metrics/__init__.py +14 -0
- DeepSDFStruct/deep_sdf/metrics/mesh_to_analytical.py +24 -0
- DeepSDFStruct/deep_sdf/models.py +197 -0
- DeepSDFStruct/deep_sdf/networks/__init__.py +8 -0
- DeepSDFStruct/deep_sdf/networks/analytic_round_cross.py +105 -0
- DeepSDFStruct/deep_sdf/networks/deep_sdf_decoder.py +155 -0
- DeepSDFStruct/deep_sdf/networks/hierarchical_deep_sdf_decoder.py +139 -0
- DeepSDFStruct/deep_sdf/networks/hierarchical_positional_sdf_decoder.py +190 -0
- DeepSDFStruct/deep_sdf/networks/resnet_positional_sdf_decoder.py +108 -0
- DeepSDFStruct/deep_sdf/nn_utils.py +70 -0
- DeepSDFStruct/deep_sdf/plotting.py +143 -0
- DeepSDFStruct/deep_sdf/reconstruction.py +165 -0
- DeepSDFStruct/deep_sdf/training.py +840 -0
- DeepSDFStruct/deep_sdf/workspace.py +363 -0
- DeepSDFStruct/design_of_experiments.py +235 -0
- DeepSDFStruct/flexicubes/__init__.py +15 -0
- DeepSDFStruct/flexicubes/flexicubes.py +1005 -0
- DeepSDFStruct/flexicubes/tables.py +2338 -0
- DeepSDFStruct/flexisquares/__init__.py +15 -0
- DeepSDFStruct/flexisquares/flexisquares.py +967 -0
- DeepSDFStruct/flexisquares/tables.py +63 -0
- DeepSDFStruct/lattice_structure.py +254 -0
- DeepSDFStruct/local_shapes.py +226 -0
- DeepSDFStruct/mesh.py +1184 -0
- DeepSDFStruct/optimization.py +357 -0
- DeepSDFStruct/parametrization.py +215 -0
- DeepSDFStruct/pretrained_models.py +128 -0
- DeepSDFStruct/sampling.py +670 -0
- DeepSDFStruct/sdf_operations.py +990 -0
- DeepSDFStruct/sdf_primitives.py +1416 -0
- DeepSDFStruct/splinepy_unitcells/__init__.py +35 -0
- DeepSDFStruct/splinepy_unitcells/chi_3D.py +1617 -0
- DeepSDFStruct/splinepy_unitcells/cross_lattice.py +165 -0
- DeepSDFStruct/splinepy_unitcells/double_lattice_extruded.py +298 -0
- DeepSDFStruct/splinepy_unitcells/snappy_3d.py +544 -0
- DeepSDFStruct/torch_spline.py +446 -0
- DeepSDFStruct/trained_models/analytic_round_cross/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/analytic_round_cross/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/analytic_round_cross/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/analytic_round_cross/specs.json +45 -0
- DeepSDFStruct/trained_models/chi_and_cross/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/chi_and_cross/Logs.pth +0 -0
- DeepSDFStruct/trained_models/chi_and_cross/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/chi_and_cross/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/chi_and_cross/specs.json +76 -0
- DeepSDFStruct/trained_models/primitives/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives/specs.json +46 -0
- DeepSDFStruct/trained_models/primitives_2d/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives_2d/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives_2d/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/primitives_2d/specs.json +46 -0
- DeepSDFStruct/trained_models/round_cross/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/round_cross/Logs.pth +0 -0
- DeepSDFStruct/trained_models/round_cross/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/round_cross/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/round_cross/specs.json +45 -0
- DeepSDFStruct/trained_models/test_experiment/LatentCodes/latent_code_data_map.json +106 -0
- DeepSDFStruct/trained_models/test_experiment/specs.json +45 -0
- DeepSDFStruct/trained_models/test_experiment/training_summary.json +10 -0
- DeepSDFStruct/trained_models/test_experiment_hierarchical/LatentCodes/latent_code_data_map.json +106 -0
- DeepSDFStruct/trained_models/test_experiment_hierarchical/specs.json +45 -0
- DeepSDFStruct/trained_models/test_experiment_hierarchical/training_summary.json +10 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latent_code_data_map.json +5006 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latest.pth +0 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/Logs.png +0 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/ModelParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/OptimizerParameters/latest.pth +0 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/specs.json +83 -0
- DeepSDFStruct/trained_models/test_experiment_homogenization/training_summary.json +10 -0
- DeepSDFStruct/utils.py +96 -0
- DeepSDFStruct/visualization/latent_viewer.py +211 -0
- DeepSDFStruct/visualization/latent_viewer_cli.py +8 -0
- benchmarks/generate_sdf_showcase.py +622 -0
- benchmarks/sdf_from_mesh_benchmark.py +52 -0
- benchmarks/sdf_from_mesh_comparison.md +33 -0
- benchmarks/sdf_showcase/operations/boolean/difference_sphere_box.png +0 -0
- benchmarks/sdf_showcase/operations/boolean/union_sphere_box.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/circular_array_sphere.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/dilate_sphere.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/mirror_sphere.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/repeat_sphere.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/revolve_circle.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/shell_sphere.png +0 -0
- benchmarks/sdf_showcase/operations/transformations/twist_torus.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/circle.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/equilateral_triangle.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/hexagon.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/polygon_pentagon.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/rectangle.png +0 -0
- benchmarks/sdf_showcase/primitives/2D/rounded_rectangle.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/box.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/capped_cone.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/capped_cylinder.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/capsule.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/cone.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/corner_spheres.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/cross_ms.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/cylinder.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/dodecahedron.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/ellipsoid.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/icosahedron.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/octahedron.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/pyramid.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/rounded_box.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/rounded_cone.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/rounded_cylinder.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/sphere.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/tetrahedron.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/torus.png +0 -0
- benchmarks/sdf_showcase/primitives/3D/wireframe_box.png +0 -0
- deepsdfstruct-1.7.2.dist-info/METADATA +44 -0
- deepsdfstruct-1.7.2.dist-info/RECORD +165 -0
- deepsdfstruct-1.7.2.dist-info/WHEEL +5 -0
- deepsdfstruct-1.7.2.dist-info/licenses/LICENSE +208 -0
- deepsdfstruct-1.7.2.dist-info/licenses/NOTICE +67 -0
- deepsdfstruct-1.7.2.dist-info/scm_file_list.json +178 -0
- deepsdfstruct-1.7.2.dist-info/scm_version.json +8 -0
- deepsdfstruct-1.7.2.dist-info/top_level.txt +4 -0
- docs/Makefile +20 -0
- docs/api_reference.rst +6 -0
- docs/conf.py +60 -0
- docs/index.rst +136 -0
- docs/make.bat +35 -0
- docs/qr_code_github.png +0 -0
- docs/qr_code_paper.png +0 -0
- docs/readme_images/example_output_01.png +0 -0
- docs/readme_images/example_output_02.png +0 -0
- docs/readme_images/example_output_03.png +0 -0
- docs/readme_images/example_output_04.png +0 -0
- tests/data/chairs/1005.obj +282 -0
- tests/data/chairs/1024.obj +222 -0
- tests/data/chairs/README.md +1 -0
- tests/data/circular_balls_test_case.stl +0 -0
- tests/data/cone.stl +1794 -0
- tests/data/example_disconnectd_mesh.inp +1784 -0
- tests/data/example_line_mesh.vtk +0 -0
- tests/data/stanford_bunny.stl +0 -0
- tests/data/sweep_test_case.stl +0 -0
- tests/test_DOE.py +49 -0
- tests/test_elongate_sdf.py +195 -0
- tests/test_flexisquares.py +187 -0
- tests/test_generate_dataset.py +76 -0
- tests/test_lattice_evaluation.py +137 -0
- tests/test_mesh_export.py +137 -0
- tests/test_mesh_functions.py +49 -0
- tests/test_networks.py +71 -0
- tests/test_pretrained_models.py +40 -0
- tests/test_reconstruction.py +101 -0
- tests/test_sdf_from_mesh.py +52 -0
- tests/test_sdf_functions.py +117 -0
- tests/test_sdf_primitives.py +668 -0
- tests/test_sdf_trimesh_comparison.py +482 -0
- tests/test_splinepy_unitcells.py +64 -0
- tests/test_structural_optimization.py +178 -0
- tests/test_torch_spline.py +216 -0
- tests/test_train_model.py +110 -0
- tests/test_training_data_ids.py +41 -0
- tests/tmp_outputs/temp_file.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Description" : "This experiment learns a shape representation for a simple microstructure using a big network.",
|
|
3
|
+
"DataSource" : "data",
|
|
4
|
+
"NetworkArch" : "deep_sdf_decoder",
|
|
5
|
+
"TrainSplit": "data/splits/round_cross_only.json",
|
|
6
|
+
"TestSplit": "data/splits/round_cross_only.json",
|
|
7
|
+
"ReconstructionSplit": "",
|
|
8
|
+
"NetworkSpecs" : {
|
|
9
|
+
"dims" : [128, 128, 128, 128, 128, 128],
|
|
10
|
+
"dropout" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
11
|
+
"dropout_prob" : 0.2,
|
|
12
|
+
"norm_layers" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
13
|
+
"latent_in" : [2],
|
|
14
|
+
"xyz_in_all" : false,
|
|
15
|
+
"use_tanh" : false,
|
|
16
|
+
"latent_dropout" : false,
|
|
17
|
+
"weight_norm" : true,
|
|
18
|
+
"geom_dimension": 3
|
|
19
|
+
},
|
|
20
|
+
"CodeLength" : 1,
|
|
21
|
+
"NumEpochs" : 1000,
|
|
22
|
+
"SnapshotFrequency" : 100,
|
|
23
|
+
"AdditionalSnapshots" : [1,5],
|
|
24
|
+
"LearningRateSchedule" : [
|
|
25
|
+
{
|
|
26
|
+
"Type" : "Step",
|
|
27
|
+
"Initial" : 0.0005,
|
|
28
|
+
"Interval" : 500,
|
|
29
|
+
"Factor" : 0.5
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Type" : "Step",
|
|
33
|
+
"Initial" : 0.001,
|
|
34
|
+
"Interval" : 500,
|
|
35
|
+
"Factor" : 0.5
|
|
36
|
+
}],
|
|
37
|
+
"SamplesPerScene" : 16000,
|
|
38
|
+
"ScenesPerBatch" : 10,
|
|
39
|
+
"DataLoaderThreads" : 1,
|
|
40
|
+
"ClampingDistance" : 0.1,
|
|
41
|
+
"CodeRegularization" : true,
|
|
42
|
+
"CodeRegularizationLambda" : 1e-4,
|
|
43
|
+
"CodeBound" : 1.0
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data_source": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd",
|
|
3
|
+
"sdf_samples_subdir": "SdfSamples",
|
|
4
|
+
"latent_codes": [
|
|
5
|
+
{
|
|
6
|
+
"latent_index": 0,
|
|
7
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00000.npz",
|
|
8
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00000.npz"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"latent_index": 1,
|
|
12
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00001.npz",
|
|
13
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00001.npz"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"latent_index": 2,
|
|
17
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00002.npz",
|
|
18
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00002.npz"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"latent_index": 3,
|
|
22
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00003.npz",
|
|
23
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00003.npz"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"latent_index": 4,
|
|
27
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00004.npz",
|
|
28
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00004.npz"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"latent_index": 5,
|
|
32
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00005.npz",
|
|
33
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00005.npz"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"latent_index": 6,
|
|
37
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00006.npz",
|
|
38
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00006.npz"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"latent_index": 7,
|
|
42
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00007.npz",
|
|
43
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00007.npz"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"latent_index": 8,
|
|
47
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00008.npz",
|
|
48
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00008.npz"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"latent_index": 9,
|
|
52
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00009.npz",
|
|
53
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00009.npz"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"latent_index": 10,
|
|
57
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00010.npz",
|
|
58
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00010.npz"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"latent_index": 11,
|
|
62
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00011.npz",
|
|
63
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00011.npz"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"latent_index": 12,
|
|
67
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00012.npz",
|
|
68
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00012.npz"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"latent_index": 13,
|
|
72
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00013.npz",
|
|
73
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00013.npz"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"latent_index": 14,
|
|
77
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00014.npz",
|
|
78
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00014.npz"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"latent_index": 15,
|
|
82
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00015.npz",
|
|
83
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00015.npz"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"latent_index": 16,
|
|
87
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00016.npz",
|
|
88
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00016.npz"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"latent_index": 17,
|
|
92
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00017.npz",
|
|
93
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00017.npz"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"latent_index": 18,
|
|
97
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00018.npz",
|
|
98
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00018.npz"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"latent_index": 19,
|
|
102
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00019.npz",
|
|
103
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00019.npz"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Description" : "This experiment is intented for testing purposes only.",
|
|
3
|
+
"NetworkArch" : "deep_sdf_decoder",
|
|
4
|
+
"TrainSplit": "splits/cross.json",
|
|
5
|
+
"TestSplit": "splits/cross.json",
|
|
6
|
+
"ReconstructionSplit": "",
|
|
7
|
+
"NetworkSpecs" : {
|
|
8
|
+
"dims" : [32, 32, 32, 32, 32, 32],
|
|
9
|
+
"dropout" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
10
|
+
"dropout_prob" : 0.2,
|
|
11
|
+
"norm_layers" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
12
|
+
"latent_in" : [2],
|
|
13
|
+
"xyz_in_all" : false,
|
|
14
|
+
"use_tanh" : false,
|
|
15
|
+
"latent_dropout" : false,
|
|
16
|
+
"weight_norm" : true,
|
|
17
|
+
"geom_dimension": 3
|
|
18
|
+
},
|
|
19
|
+
"CodeLength" : 1,
|
|
20
|
+
"NumEpochs" : 5,
|
|
21
|
+
"LogFrequency": 5,
|
|
22
|
+
"SnapshotFrequency" : 100,
|
|
23
|
+
"AdditionalSnapshots" : [1,5],
|
|
24
|
+
"LearningRateSchedule" : [
|
|
25
|
+
{
|
|
26
|
+
"Type" : "Step",
|
|
27
|
+
"Initial" : 0.0005,
|
|
28
|
+
"Interval" : 500,
|
|
29
|
+
"Factor" : 0.5
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Type" : "Step",
|
|
33
|
+
"Initial" : 0.001,
|
|
34
|
+
"Interval" : 500,
|
|
35
|
+
"Factor" : 0.5
|
|
36
|
+
}],
|
|
37
|
+
"SamplesPerScene" : 4,
|
|
38
|
+
"ScenesPerBatch" : 2,
|
|
39
|
+
"DataLoaderThreads" : 1,
|
|
40
|
+
"ClampingDistance" : 0.1,
|
|
41
|
+
"CodeRegularization" : true,
|
|
42
|
+
"CodeRegularizationLambda" : 1e-4,
|
|
43
|
+
"CodeBound" : 1.0
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"loss": 0.05482380986213684,
|
|
3
|
+
"num_epochs": 5,
|
|
4
|
+
"timestamp": "2026-05-21 17:40:15",
|
|
5
|
+
"host_name": "neptune",
|
|
6
|
+
"device": "cpu",
|
|
7
|
+
"training_duration": "0:00:06",
|
|
8
|
+
"data_dir": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd",
|
|
9
|
+
"version": "1.7.1.dev40+g989384bd4.d20260330"
|
|
10
|
+
}
|
DeepSDFStruct/trained_models/test_experiment_hierarchical/LatentCodes/latent_code_data_map.json
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"data_source": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd",
|
|
3
|
+
"sdf_samples_subdir": "SdfSamples",
|
|
4
|
+
"latent_codes": [
|
|
5
|
+
{
|
|
6
|
+
"latent_index": 0,
|
|
7
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00000.npz",
|
|
8
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00000.npz"
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"latent_index": 1,
|
|
12
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00001.npz",
|
|
13
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00001.npz"
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"latent_index": 2,
|
|
17
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00002.npz",
|
|
18
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00002.npz"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"latent_index": 3,
|
|
22
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00003.npz",
|
|
23
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00003.npz"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"latent_index": 4,
|
|
27
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00004.npz",
|
|
28
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00004.npz"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"latent_index": 5,
|
|
32
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00005.npz",
|
|
33
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00005.npz"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"latent_index": 6,
|
|
37
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00006.npz",
|
|
38
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00006.npz"
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"latent_index": 7,
|
|
42
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00007.npz",
|
|
43
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00007.npz"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"latent_index": 8,
|
|
47
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00008.npz",
|
|
48
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00008.npz"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"latent_index": 9,
|
|
52
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00009.npz",
|
|
53
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00009.npz"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"latent_index": 10,
|
|
57
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00010.npz",
|
|
58
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00010.npz"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"latent_index": 11,
|
|
62
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00011.npz",
|
|
63
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00011.npz"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"latent_index": 12,
|
|
67
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00012.npz",
|
|
68
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00012.npz"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"latent_index": 13,
|
|
72
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00013.npz",
|
|
73
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00013.npz"
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"latent_index": 14,
|
|
77
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00014.npz",
|
|
78
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00014.npz"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"latent_index": 15,
|
|
82
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00015.npz",
|
|
83
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00015.npz"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"latent_index": 16,
|
|
87
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00016.npz",
|
|
88
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00016.npz"
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
"latent_index": 17,
|
|
92
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00017.npz",
|
|
93
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00017.npz"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"latent_index": 18,
|
|
97
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00018.npz",
|
|
98
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00018.npz"
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"latent_index": 19,
|
|
102
|
+
"relative_npz_filename": "microstructure/CrossLattice/CrossLattice_00019.npz",
|
|
103
|
+
"npz_filename": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd/SdfSamples/microstructure/CrossLattice/CrossLattice_00019.npz"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Description" : "This experiment is intented for testing purposes only.",
|
|
3
|
+
"NetworkArch" : "hierarchical_deep_sdf_decoder",
|
|
4
|
+
"TrainSplit": "splits/cross.json",
|
|
5
|
+
"TestSplit": "splits/cross.json",
|
|
6
|
+
"ReconstructionSplit": "",
|
|
7
|
+
"NetworkSpecs" : {
|
|
8
|
+
"dims" : [32, 32, 32, 32, 32, 32],
|
|
9
|
+
"dropout" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
10
|
+
"dropout_prob" : 0.2,
|
|
11
|
+
"norm_layers" : [0, 1, 2, 3, 4, 5, 6, 7],
|
|
12
|
+
"latent_in" : [1,2,3,4],
|
|
13
|
+
"xyz_in_all" : false,
|
|
14
|
+
"activation_fun" : "relu",
|
|
15
|
+
"latent_dropout" : false,
|
|
16
|
+
"weight_norm" : true,
|
|
17
|
+
"geom_dimension": 3
|
|
18
|
+
},
|
|
19
|
+
"CodeLength" : [1,2,3,4],
|
|
20
|
+
"NumEpochs" : 5,
|
|
21
|
+
"LogFrequency": 5,
|
|
22
|
+
"SnapshotFrequency" : 100,
|
|
23
|
+
"AdditionalSnapshots" : [1,5],
|
|
24
|
+
"LearningRateSchedule" : [
|
|
25
|
+
{
|
|
26
|
+
"Type" : "Step",
|
|
27
|
+
"Initial" : 0.0005,
|
|
28
|
+
"Interval" : 500,
|
|
29
|
+
"Factor" : 0.5
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"Type" : "Step",
|
|
33
|
+
"Initial" : 0.001,
|
|
34
|
+
"Interval" : 500,
|
|
35
|
+
"Factor" : 0.5
|
|
36
|
+
}],
|
|
37
|
+
"SamplesPerScene" : 4,
|
|
38
|
+
"ScenesPerBatch" : 2,
|
|
39
|
+
"DataLoaderThreads" : 1,
|
|
40
|
+
"ClampingDistance" : 0.1,
|
|
41
|
+
"CodeRegularization" : true,
|
|
42
|
+
"CodeRegularizationLambda" : 1e-4,
|
|
43
|
+
"CodeBound" : 1.0
|
|
44
|
+
}
|
|
45
|
+
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"loss": 0.12290580123662949,
|
|
3
|
+
"num_epochs": 5,
|
|
4
|
+
"timestamp": "2026-05-21 17:39:59",
|
|
5
|
+
"host_name": "neptune",
|
|
6
|
+
"device": "cpu",
|
|
7
|
+
"training_duration": "0:00:08",
|
|
8
|
+
"data_dir": "/usr2/mkofler/.cache/huggingface/hub/datasets--mkofler--lattice_structure_unit_cells/snapshots/b80339abc071df77ff81e8abc19ad4856d96ddbd",
|
|
9
|
+
"version": "1.7.1.dev40+g989384bd4.d20260330"
|
|
10
|
+
}
|