yushuang88 commited on
Commit
343b591
·
verified ·
1 Parent(s): b871dba

Add model configuration

Browse files
Files changed (1) hide show
  1. config.json +84 -0
config.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "PointNetCFD"
4
+ ],
5
+ "framework": "pytorch",
6
+ "model_name": "PointNetCFD",
7
+ "model_type": "pointnetcfd",
8
+ "source_config": "config/config.yaml",
9
+ "experiment": {
10
+ "name": "pointcfd_main",
11
+ "paper": "https://arxiv.org/pdf/2010.09469"
12
+ },
13
+ "paths": {
14
+ "data_dir": "/public/share/sugonhpcapp01/onestore/onedatasets/PointNetCFD_data",
15
+ "data_file": "CFDdata.npy",
16
+ "train_indices": "training_idx.npy",
17
+ "validation_indices": "validation_idx.npy",
18
+ "test_indices": "test_idx.npy",
19
+ "checkpoint": "weight/best_model.pth",
20
+ "results_dir": "results"
21
+ },
22
+ "data": {
23
+ "num_points": 1024,
24
+ "source_channels": [
25
+ "x",
26
+ "y",
27
+ "p",
28
+ "u",
29
+ "v"
30
+ ],
31
+ "input_indices": [
32
+ 0,
33
+ 1
34
+ ],
35
+ "target_indices": [
36
+ 3,
37
+ 4,
38
+ 2
39
+ ],
40
+ "input_names": [
41
+ "x",
42
+ "y"
43
+ ],
44
+ "target_names": [
45
+ "u",
46
+ "v",
47
+ "p"
48
+ ],
49
+ "coordinate_normalization": "none",
50
+ "target_normalization": "train_minmax"
51
+ },
52
+ "model": {
53
+ "input_dim": 2,
54
+ "output_dim": 3,
55
+ "global_feature_dim": 1024,
56
+ "expected_paper_parameters": 3552588
57
+ },
58
+ "training": {
59
+ "seed": 0,
60
+ "epochs": 4000,
61
+ "batch_size": 256,
62
+ "num_workers": 0,
63
+ "optimizer": "adam",
64
+ "learning_rate": 0.0005,
65
+ "beta1": 0.9,
66
+ "beta2": 0.999,
67
+ "epsilon": 1e-06,
68
+ "weight_decay": 0.0,
69
+ "scheduler": "none",
70
+ "precision": "float32",
71
+ "validation_interval": 1,
72
+ "log_every_batches": 1,
73
+ "best_metric": "val_mse"
74
+ },
75
+ "evaluation": {
76
+ "relative_l2_epsilon": 1e-12,
77
+ "visualization_cases": 3,
78
+ "paper_reference_mean_relative_l2": {
79
+ "u": 0.0449666,
80
+ "v": 0.037054,
81
+ "p": 0.0271661
82
+ }
83
+ }
84
+ }