Upload 16 files
Browse files- HumanML3D/bert_neg/.hydra/config.yaml +58 -0
- HumanML3D/bert_neg/.hydra/hydra.yaml +157 -0
- HumanML3D/bert_neg/.hydra/overrides.yaml +1 -0
- HumanML3D/bert_neg/best_model_mt.pt +3 -0
- HumanML3D/bert_neg_o2e/.hydra/config.yaml +58 -0
- HumanML3D/bert_neg_o2e/.hydra/hydra.yaml +157 -0
- HumanML3D/bert_neg_o2e/.hydra/overrides.yaml +1 -0
- HumanML3D/bert_neg_o2e/best_model_mt.pt +3 -0
- HumanML3D/bert_orig/.hydra/config.yaml +58 -0
- HumanML3D/bert_orig/.hydra/hydra.yaml +157 -0
- HumanML3D/bert_orig/.hydra/overrides.yaml +1 -0
- HumanML3D/bert_orig/best_model_mt.pt +3 -0
- HumanML3D/bert_orig_o2e/.hydra/config.yaml +58 -0
- HumanML3D/bert_orig_o2e/.hydra/hydra.yaml +157 -0
- HumanML3D/bert_orig_o2e/.hydra/overrides.yaml +1 -0
- HumanML3D/bert_orig_o2e/best_model_mt.pt +3 -0
HumanML3D/bert_neg/.hydra/config.yaml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
exp_name: bert_neg
|
2 |
+
model_save_dir: ./output/${exp_name}/
|
3 |
+
save_dir: ./output/${exp_name}/contrastive_results/
|
4 |
+
mean_path: ./stats/humanml3d/guoh3dfeats/mean.pt
|
5 |
+
std_path: ./stats/humanml3d/guoh3dfeats/std.pt
|
6 |
+
model:
|
7 |
+
text_model_name: distilbert-base-uncased
|
8 |
+
temperature: 0.1
|
9 |
+
threshold_selfsim: 0.8
|
10 |
+
threshold_selfsim_metrics: 0.95
|
11 |
+
token_num: 128
|
12 |
+
noneg: false
|
13 |
+
lmd:
|
14 |
+
recons: 1.0
|
15 |
+
latent: 1.0e-05
|
16 |
+
kl: 1.0e-05
|
17 |
+
contrast: 0.1
|
18 |
+
recon: true
|
19 |
+
motion_encoder:
|
20 |
+
nfeats: 263
|
21 |
+
vae: true
|
22 |
+
latent_dim: 256
|
23 |
+
ff_size: 1024
|
24 |
+
num_layers: 6
|
25 |
+
num_heads: 4
|
26 |
+
dropout: 0.1
|
27 |
+
activation: gelu
|
28 |
+
text_encoder:
|
29 |
+
nfeats: 768
|
30 |
+
vae: true
|
31 |
+
latent_dim: 256
|
32 |
+
ff_size: 1024
|
33 |
+
num_layers: 6
|
34 |
+
num_heads: 4
|
35 |
+
dropout: 0.1
|
36 |
+
activation: gelu
|
37 |
+
motion_decoder:
|
38 |
+
nfeats: 263
|
39 |
+
latent_dim: 256
|
40 |
+
ff_size: 1024
|
41 |
+
num_layers: 6
|
42 |
+
num_heads: 4
|
43 |
+
dropout: 0.1
|
44 |
+
activation: gelu
|
45 |
+
dataset:
|
46 |
+
data_dir: ./data/humanml3d/
|
47 |
+
max_motion_length: 224
|
48 |
+
padding: true
|
49 |
+
ev2ev: true
|
50 |
+
dataloader:
|
51 |
+
batch_size: 32
|
52 |
+
num_workers: 8
|
53 |
+
train:
|
54 |
+
seed: 1234
|
55 |
+
epochs: 200
|
56 |
+
lr: 0.0001
|
57 |
+
langlr: 1.0e-05
|
58 |
+
train_text_encoder: false
|
HumanML3D/bert_neg/.hydra/hydra.yaml
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ./output/${exp_name}/
|
4 |
+
sweep:
|
5 |
+
dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
|
6 |
+
subdir: ${hydra.job.num}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
simple:
|
72 |
+
format: '[%(asctime)s][HYDRA] %(message)s'
|
73 |
+
handlers:
|
74 |
+
console:
|
75 |
+
class: logging.StreamHandler
|
76 |
+
formatter: simple
|
77 |
+
stream: ext://sys.stdout
|
78 |
+
root:
|
79 |
+
level: INFO
|
80 |
+
handlers:
|
81 |
+
- console
|
82 |
+
loggers:
|
83 |
+
logging_example:
|
84 |
+
level: DEBUG
|
85 |
+
disable_existing_loggers: false
|
86 |
+
job_logging:
|
87 |
+
version: 1
|
88 |
+
formatters:
|
89 |
+
simple:
|
90 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
91 |
+
handlers:
|
92 |
+
console:
|
93 |
+
class: logging.StreamHandler
|
94 |
+
formatter: simple
|
95 |
+
stream: ext://sys.stdout
|
96 |
+
file:
|
97 |
+
class: logging.FileHandler
|
98 |
+
formatter: simple
|
99 |
+
filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
|
100 |
+
root:
|
101 |
+
level: INFO
|
102 |
+
handlers:
|
103 |
+
- console
|
104 |
+
- file
|
105 |
+
disable_existing_loggers: false
|
106 |
+
env: {}
|
107 |
+
mode: RUN
|
108 |
+
searchpath: []
|
109 |
+
callbacks: {}
|
110 |
+
output_subdir: .hydra
|
111 |
+
overrides:
|
112 |
+
hydra:
|
113 |
+
- hydra.mode=RUN
|
114 |
+
task: []
|
115 |
+
job:
|
116 |
+
name: retrieval_shuffle
|
117 |
+
chdir: null
|
118 |
+
override_dirname: ''
|
119 |
+
id: ???
|
120 |
+
num: ???
|
121 |
+
config_name: train_bert_neg
|
122 |
+
env_set: {}
|
123 |
+
env_copy: []
|
124 |
+
config:
|
125 |
+
override_dirname:
|
126 |
+
kv_sep: '='
|
127 |
+
item_sep: ','
|
128 |
+
exclude_keys: []
|
129 |
+
runtime:
|
130 |
+
version: 1.3.2
|
131 |
+
version_base: '1.3'
|
132 |
+
cwd: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet
|
133 |
+
config_sources:
|
134 |
+
- path: hydra.conf
|
135 |
+
schema: pkg
|
136 |
+
provider: hydra
|
137 |
+
- path: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/config
|
138 |
+
schema: file
|
139 |
+
provider: main
|
140 |
+
- path: hydra_plugins.hydra_colorlog.conf
|
141 |
+
schema: pkg
|
142 |
+
provider: hydra-colorlog
|
143 |
+
- path: ''
|
144 |
+
schema: structured
|
145 |
+
provider: schema
|
146 |
+
output_dir: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/output/bert_neg
|
147 |
+
choices:
|
148 |
+
hydra/env: default
|
149 |
+
hydra/callbacks: null
|
150 |
+
hydra/job_logging: default
|
151 |
+
hydra/hydra_logging: default
|
152 |
+
hydra/hydra_help: default
|
153 |
+
hydra/help: default
|
154 |
+
hydra/sweeper: basic
|
155 |
+
hydra/launcher: basic
|
156 |
+
hydra/output: default
|
157 |
+
verbose: false
|
HumanML3D/bert_neg/.hydra/overrides.yaml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[]
|
HumanML3D/bert_neg/best_model_mt.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2c6301c4c8effa86301bbbcb3e336ec4786fc16db2e6d4fa8c53aaa85869856a
|
3 |
+
size 330124397
|
HumanML3D/bert_neg_o2e/.hydra/config.yaml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
exp_name: bert_neg_o2e
|
2 |
+
model_save_dir: ./output/${exp_name}/
|
3 |
+
save_dir: ./output/${exp_name}/contrastive_results/
|
4 |
+
mean_path: ./stats/humanml3d/guoh3dfeats/mean.pt
|
5 |
+
std_path: ./stats/humanml3d/guoh3dfeats/std.pt
|
6 |
+
model:
|
7 |
+
text_model_name: distilbert-base-uncased
|
8 |
+
temperature: 0.1
|
9 |
+
threshold_selfsim: 0.8
|
10 |
+
threshold_selfsim_metrics: 0.95
|
11 |
+
token_num: 128
|
12 |
+
noneg: false
|
13 |
+
lmd:
|
14 |
+
recons: 1.0
|
15 |
+
latent: 1.0e-05
|
16 |
+
kl: 1.0e-05
|
17 |
+
contrast: 0.1
|
18 |
+
recon: true
|
19 |
+
motion_encoder:
|
20 |
+
nfeats: 263
|
21 |
+
vae: true
|
22 |
+
latent_dim: 256
|
23 |
+
ff_size: 1024
|
24 |
+
num_layers: 6
|
25 |
+
num_heads: 4
|
26 |
+
dropout: 0.1
|
27 |
+
activation: gelu
|
28 |
+
text_encoder:
|
29 |
+
nfeats: 768
|
30 |
+
vae: true
|
31 |
+
latent_dim: 256
|
32 |
+
ff_size: 1024
|
33 |
+
num_layers: 6
|
34 |
+
num_heads: 4
|
35 |
+
dropout: 0.1
|
36 |
+
activation: gelu
|
37 |
+
motion_decoder:
|
38 |
+
nfeats: 263
|
39 |
+
latent_dim: 256
|
40 |
+
ff_size: 1024
|
41 |
+
num_layers: 6
|
42 |
+
num_heads: 4
|
43 |
+
dropout: 0.1
|
44 |
+
activation: gelu
|
45 |
+
dataset:
|
46 |
+
data_dir: ./data/humanml3d/
|
47 |
+
max_motion_length: 224
|
48 |
+
padding: true
|
49 |
+
ev2ev: false
|
50 |
+
dataloader:
|
51 |
+
batch_size: 32
|
52 |
+
num_workers: 8
|
53 |
+
train:
|
54 |
+
seed: 1234
|
55 |
+
epochs: 200
|
56 |
+
lr: 0.0001
|
57 |
+
langlr: 1.0e-05
|
58 |
+
train_text_encoder: false
|
HumanML3D/bert_neg_o2e/.hydra/hydra.yaml
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ./output/${exp_name}/
|
4 |
+
sweep:
|
5 |
+
dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
|
6 |
+
subdir: ${hydra.job.num}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
simple:
|
72 |
+
format: '[%(asctime)s][HYDRA] %(message)s'
|
73 |
+
handlers:
|
74 |
+
console:
|
75 |
+
class: logging.StreamHandler
|
76 |
+
formatter: simple
|
77 |
+
stream: ext://sys.stdout
|
78 |
+
root:
|
79 |
+
level: INFO
|
80 |
+
handlers:
|
81 |
+
- console
|
82 |
+
loggers:
|
83 |
+
logging_example:
|
84 |
+
level: DEBUG
|
85 |
+
disable_existing_loggers: false
|
86 |
+
job_logging:
|
87 |
+
version: 1
|
88 |
+
formatters:
|
89 |
+
simple:
|
90 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
91 |
+
handlers:
|
92 |
+
console:
|
93 |
+
class: logging.StreamHandler
|
94 |
+
formatter: simple
|
95 |
+
stream: ext://sys.stdout
|
96 |
+
file:
|
97 |
+
class: logging.FileHandler
|
98 |
+
formatter: simple
|
99 |
+
filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
|
100 |
+
root:
|
101 |
+
level: INFO
|
102 |
+
handlers:
|
103 |
+
- console
|
104 |
+
- file
|
105 |
+
disable_existing_loggers: false
|
106 |
+
env: {}
|
107 |
+
mode: RUN
|
108 |
+
searchpath: []
|
109 |
+
callbacks: {}
|
110 |
+
output_subdir: .hydra
|
111 |
+
overrides:
|
112 |
+
hydra:
|
113 |
+
- hydra.mode=RUN
|
114 |
+
task: []
|
115 |
+
job:
|
116 |
+
name: retrieval_shuffle
|
117 |
+
chdir: null
|
118 |
+
override_dirname: ''
|
119 |
+
id: ???
|
120 |
+
num: ???
|
121 |
+
config_name: train_bert_neg_o2e
|
122 |
+
env_set: {}
|
123 |
+
env_copy: []
|
124 |
+
config:
|
125 |
+
override_dirname:
|
126 |
+
kv_sep: '='
|
127 |
+
item_sep: ','
|
128 |
+
exclude_keys: []
|
129 |
+
runtime:
|
130 |
+
version: 1.3.2
|
131 |
+
version_base: '1.3'
|
132 |
+
cwd: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet
|
133 |
+
config_sources:
|
134 |
+
- path: hydra.conf
|
135 |
+
schema: pkg
|
136 |
+
provider: hydra
|
137 |
+
- path: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/config
|
138 |
+
schema: file
|
139 |
+
provider: main
|
140 |
+
- path: hydra_plugins.hydra_colorlog.conf
|
141 |
+
schema: pkg
|
142 |
+
provider: hydra-colorlog
|
143 |
+
- path: ''
|
144 |
+
schema: structured
|
145 |
+
provider: schema
|
146 |
+
output_dir: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/output/bert_neg_o2e
|
147 |
+
choices:
|
148 |
+
hydra/env: default
|
149 |
+
hydra/callbacks: null
|
150 |
+
hydra/job_logging: default
|
151 |
+
hydra/hydra_logging: default
|
152 |
+
hydra/hydra_help: default
|
153 |
+
hydra/help: default
|
154 |
+
hydra/sweeper: basic
|
155 |
+
hydra/launcher: basic
|
156 |
+
hydra/output: default
|
157 |
+
verbose: false
|
HumanML3D/bert_neg_o2e/.hydra/overrides.yaml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[]
|
HumanML3D/bert_neg_o2e/best_model_mt.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4c8abc969e175ec732e04d8b5eb269309a1a923255275381116d0ece79ff21c9
|
3 |
+
size 330124397
|
HumanML3D/bert_orig/.hydra/config.yaml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
exp_name: bert_orig
|
2 |
+
model_save_dir: ./output/${exp_name}/
|
3 |
+
save_dir: ./output/${exp_name}/contrastive_results/
|
4 |
+
mean_path: ./stats/humanml3d/guoh3dfeats/mean.pt
|
5 |
+
std_path: ./stats/humanml3d/guoh3dfeats/std.pt
|
6 |
+
model:
|
7 |
+
text_model_name: distilbert-base-uncased
|
8 |
+
temperature: 0.1
|
9 |
+
threshold_selfsim: 0.8
|
10 |
+
threshold_selfsim_metrics: 0.95
|
11 |
+
token_num: 128
|
12 |
+
noneg: true
|
13 |
+
lmd:
|
14 |
+
recons: 1.0
|
15 |
+
latent: 1.0e-05
|
16 |
+
kl: 1.0e-05
|
17 |
+
contrast: 0.1
|
18 |
+
recon: true
|
19 |
+
motion_encoder:
|
20 |
+
nfeats: 263
|
21 |
+
vae: true
|
22 |
+
latent_dim: 256
|
23 |
+
ff_size: 1024
|
24 |
+
num_layers: 6
|
25 |
+
num_heads: 4
|
26 |
+
dropout: 0.1
|
27 |
+
activation: gelu
|
28 |
+
text_encoder:
|
29 |
+
nfeats: 768
|
30 |
+
vae: true
|
31 |
+
latent_dim: 256
|
32 |
+
ff_size: 1024
|
33 |
+
num_layers: 6
|
34 |
+
num_heads: 4
|
35 |
+
dropout: 0.1
|
36 |
+
activation: gelu
|
37 |
+
motion_decoder:
|
38 |
+
nfeats: 263
|
39 |
+
latent_dim: 256
|
40 |
+
ff_size: 1024
|
41 |
+
num_layers: 6
|
42 |
+
num_heads: 4
|
43 |
+
dropout: 0.1
|
44 |
+
activation: gelu
|
45 |
+
dataset:
|
46 |
+
data_dir: ./data/humanml3d/
|
47 |
+
max_motion_length: 224
|
48 |
+
padding: true
|
49 |
+
ev2ev: true
|
50 |
+
dataloader:
|
51 |
+
batch_size: 32
|
52 |
+
num_workers: 8
|
53 |
+
train:
|
54 |
+
seed: 1234
|
55 |
+
epochs: 200
|
56 |
+
lr: 0.0001
|
57 |
+
langlr: 1.0e-05
|
58 |
+
train_text_encoder: false
|
HumanML3D/bert_orig/.hydra/hydra.yaml
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ./output/${exp_name}/
|
4 |
+
sweep:
|
5 |
+
dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
|
6 |
+
subdir: ${hydra.job.num}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
simple:
|
72 |
+
format: '[%(asctime)s][HYDRA] %(message)s'
|
73 |
+
handlers:
|
74 |
+
console:
|
75 |
+
class: logging.StreamHandler
|
76 |
+
formatter: simple
|
77 |
+
stream: ext://sys.stdout
|
78 |
+
root:
|
79 |
+
level: INFO
|
80 |
+
handlers:
|
81 |
+
- console
|
82 |
+
loggers:
|
83 |
+
logging_example:
|
84 |
+
level: DEBUG
|
85 |
+
disable_existing_loggers: false
|
86 |
+
job_logging:
|
87 |
+
version: 1
|
88 |
+
formatters:
|
89 |
+
simple:
|
90 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
91 |
+
handlers:
|
92 |
+
console:
|
93 |
+
class: logging.StreamHandler
|
94 |
+
formatter: simple
|
95 |
+
stream: ext://sys.stdout
|
96 |
+
file:
|
97 |
+
class: logging.FileHandler
|
98 |
+
formatter: simple
|
99 |
+
filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
|
100 |
+
root:
|
101 |
+
level: INFO
|
102 |
+
handlers:
|
103 |
+
- console
|
104 |
+
- file
|
105 |
+
disable_existing_loggers: false
|
106 |
+
env: {}
|
107 |
+
mode: RUN
|
108 |
+
searchpath: []
|
109 |
+
callbacks: {}
|
110 |
+
output_subdir: .hydra
|
111 |
+
overrides:
|
112 |
+
hydra:
|
113 |
+
- hydra.mode=RUN
|
114 |
+
task: []
|
115 |
+
job:
|
116 |
+
name: evaluate_negative
|
117 |
+
chdir: null
|
118 |
+
override_dirname: ''
|
119 |
+
id: ???
|
120 |
+
num: ???
|
121 |
+
config_name: train_bert_orig
|
122 |
+
env_set: {}
|
123 |
+
env_copy: []
|
124 |
+
config:
|
125 |
+
override_dirname:
|
126 |
+
kv_sep: '='
|
127 |
+
item_sep: ','
|
128 |
+
exclude_keys: []
|
129 |
+
runtime:
|
130 |
+
version: 1.3.2
|
131 |
+
version_base: '1.3'
|
132 |
+
cwd: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet
|
133 |
+
config_sources:
|
134 |
+
- path: hydra.conf
|
135 |
+
schema: pkg
|
136 |
+
provider: hydra
|
137 |
+
- path: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/config
|
138 |
+
schema: file
|
139 |
+
provider: main
|
140 |
+
- path: hydra_plugins.hydra_colorlog.conf
|
141 |
+
schema: pkg
|
142 |
+
provider: hydra-colorlog
|
143 |
+
- path: ''
|
144 |
+
schema: structured
|
145 |
+
provider: schema
|
146 |
+
output_dir: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/output/bert_orig
|
147 |
+
choices:
|
148 |
+
hydra/env: default
|
149 |
+
hydra/callbacks: null
|
150 |
+
hydra/job_logging: default
|
151 |
+
hydra/hydra_logging: default
|
152 |
+
hydra/hydra_help: default
|
153 |
+
hydra/help: default
|
154 |
+
hydra/sweeper: basic
|
155 |
+
hydra/launcher: basic
|
156 |
+
hydra/output: default
|
157 |
+
verbose: false
|
HumanML3D/bert_orig/.hydra/overrides.yaml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[]
|
HumanML3D/bert_orig/best_model_mt.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:19f047230b73ae6be6546d3231ede2af41fc54c8a1251095f8762e7d8b210adb
|
3 |
+
size 330124397
|
HumanML3D/bert_orig_o2e/.hydra/config.yaml
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
exp_name: bert_orig_o2e
|
2 |
+
model_save_dir: ./output/${exp_name}/
|
3 |
+
save_dir: ./output/${exp_name}/contrastive_results/
|
4 |
+
mean_path: ./stats/humanml3d/guoh3dfeats/mean.pt
|
5 |
+
std_path: ./stats/humanml3d/guoh3dfeats/std.pt
|
6 |
+
model:
|
7 |
+
text_model_name: distilbert-base-uncased
|
8 |
+
temperature: 0.1
|
9 |
+
threshold_selfsim: 0.8
|
10 |
+
threshold_selfsim_metrics: 0.95
|
11 |
+
token_num: 128
|
12 |
+
noneg: true
|
13 |
+
lmd:
|
14 |
+
recons: 1.0
|
15 |
+
latent: 1.0e-05
|
16 |
+
kl: 1.0e-05
|
17 |
+
contrast: 0.1
|
18 |
+
recon: true
|
19 |
+
motion_encoder:
|
20 |
+
nfeats: 263
|
21 |
+
vae: true
|
22 |
+
latent_dim: 256
|
23 |
+
ff_size: 1024
|
24 |
+
num_layers: 6
|
25 |
+
num_heads: 4
|
26 |
+
dropout: 0.1
|
27 |
+
activation: gelu
|
28 |
+
text_encoder:
|
29 |
+
nfeats: 768
|
30 |
+
vae: true
|
31 |
+
latent_dim: 256
|
32 |
+
ff_size: 1024
|
33 |
+
num_layers: 6
|
34 |
+
num_heads: 4
|
35 |
+
dropout: 0.1
|
36 |
+
activation: gelu
|
37 |
+
motion_decoder:
|
38 |
+
nfeats: 263
|
39 |
+
latent_dim: 256
|
40 |
+
ff_size: 1024
|
41 |
+
num_layers: 6
|
42 |
+
num_heads: 4
|
43 |
+
dropout: 0.1
|
44 |
+
activation: gelu
|
45 |
+
dataset:
|
46 |
+
data_dir: ./data/humanml3d/
|
47 |
+
max_motion_length: 224
|
48 |
+
padding: true
|
49 |
+
ev2ev: false
|
50 |
+
dataloader:
|
51 |
+
batch_size: 32
|
52 |
+
num_workers: 8
|
53 |
+
train:
|
54 |
+
seed: 1234
|
55 |
+
epochs: 200
|
56 |
+
lr: 0.0001
|
57 |
+
langlr: 1.0e-05
|
58 |
+
train_text_encoder: false
|
HumanML3D/bert_orig_o2e/.hydra/hydra.yaml
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
hydra:
|
2 |
+
run:
|
3 |
+
dir: ./output/${exp_name}/
|
4 |
+
sweep:
|
5 |
+
dir: multirun/${now:%Y-%m-%d}/${now:%H-%M-%S}
|
6 |
+
subdir: ${hydra.job.num}
|
7 |
+
launcher:
|
8 |
+
_target_: hydra._internal.core_plugins.basic_launcher.BasicLauncher
|
9 |
+
sweeper:
|
10 |
+
_target_: hydra._internal.core_plugins.basic_sweeper.BasicSweeper
|
11 |
+
max_batch_size: null
|
12 |
+
params: null
|
13 |
+
help:
|
14 |
+
app_name: ${hydra.job.name}
|
15 |
+
header: '${hydra.help.app_name} is powered by Hydra.
|
16 |
+
|
17 |
+
'
|
18 |
+
footer: 'Powered by Hydra (https://hydra.cc)
|
19 |
+
|
20 |
+
Use --hydra-help to view Hydra specific help
|
21 |
+
|
22 |
+
'
|
23 |
+
template: '${hydra.help.header}
|
24 |
+
|
25 |
+
== Configuration groups ==
|
26 |
+
|
27 |
+
Compose your configuration from those groups (group=option)
|
28 |
+
|
29 |
+
|
30 |
+
$APP_CONFIG_GROUPS
|
31 |
+
|
32 |
+
|
33 |
+
== Config ==
|
34 |
+
|
35 |
+
Override anything in the config (foo.bar=value)
|
36 |
+
|
37 |
+
|
38 |
+
$CONFIG
|
39 |
+
|
40 |
+
|
41 |
+
${hydra.help.footer}
|
42 |
+
|
43 |
+
'
|
44 |
+
hydra_help:
|
45 |
+
template: 'Hydra (${hydra.runtime.version})
|
46 |
+
|
47 |
+
See https://hydra.cc for more info.
|
48 |
+
|
49 |
+
|
50 |
+
== Flags ==
|
51 |
+
|
52 |
+
$FLAGS_HELP
|
53 |
+
|
54 |
+
|
55 |
+
== Configuration groups ==
|
56 |
+
|
57 |
+
Compose your configuration from those groups (For example, append hydra/job_logging=disabled
|
58 |
+
to command line)
|
59 |
+
|
60 |
+
|
61 |
+
$HYDRA_CONFIG_GROUPS
|
62 |
+
|
63 |
+
|
64 |
+
Use ''--cfg hydra'' to Show the Hydra config.
|
65 |
+
|
66 |
+
'
|
67 |
+
hydra_help: ???
|
68 |
+
hydra_logging:
|
69 |
+
version: 1
|
70 |
+
formatters:
|
71 |
+
simple:
|
72 |
+
format: '[%(asctime)s][HYDRA] %(message)s'
|
73 |
+
handlers:
|
74 |
+
console:
|
75 |
+
class: logging.StreamHandler
|
76 |
+
formatter: simple
|
77 |
+
stream: ext://sys.stdout
|
78 |
+
root:
|
79 |
+
level: INFO
|
80 |
+
handlers:
|
81 |
+
- console
|
82 |
+
loggers:
|
83 |
+
logging_example:
|
84 |
+
level: DEBUG
|
85 |
+
disable_existing_loggers: false
|
86 |
+
job_logging:
|
87 |
+
version: 1
|
88 |
+
formatters:
|
89 |
+
simple:
|
90 |
+
format: '[%(asctime)s][%(name)s][%(levelname)s] - %(message)s'
|
91 |
+
handlers:
|
92 |
+
console:
|
93 |
+
class: logging.StreamHandler
|
94 |
+
formatter: simple
|
95 |
+
stream: ext://sys.stdout
|
96 |
+
file:
|
97 |
+
class: logging.FileHandler
|
98 |
+
formatter: simple
|
99 |
+
filename: ${hydra.runtime.output_dir}/${hydra.job.name}.log
|
100 |
+
root:
|
101 |
+
level: INFO
|
102 |
+
handlers:
|
103 |
+
- console
|
104 |
+
- file
|
105 |
+
disable_existing_loggers: false
|
106 |
+
env: {}
|
107 |
+
mode: RUN
|
108 |
+
searchpath: []
|
109 |
+
callbacks: {}
|
110 |
+
output_subdir: .hydra
|
111 |
+
overrides:
|
112 |
+
hydra:
|
113 |
+
- hydra.mode=RUN
|
114 |
+
task: []
|
115 |
+
job:
|
116 |
+
name: evaluate
|
117 |
+
chdir: null
|
118 |
+
override_dirname: ''
|
119 |
+
id: ???
|
120 |
+
num: ???
|
121 |
+
config_name: train_bert_orig_o2e
|
122 |
+
env_set: {}
|
123 |
+
env_copy: []
|
124 |
+
config:
|
125 |
+
override_dirname:
|
126 |
+
kv_sep: '='
|
127 |
+
item_sep: ','
|
128 |
+
exclude_keys: []
|
129 |
+
runtime:
|
130 |
+
version: 1.3.2
|
131 |
+
version_base: '1.3'
|
132 |
+
cwd: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet
|
133 |
+
config_sources:
|
134 |
+
- path: hydra.conf
|
135 |
+
schema: pkg
|
136 |
+
provider: hydra
|
137 |
+
- path: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/config
|
138 |
+
schema: file
|
139 |
+
provider: main
|
140 |
+
- path: hydra_plugins.hydra_colorlog.conf
|
141 |
+
schema: pkg
|
142 |
+
provider: hydra-colorlog
|
143 |
+
- path: ''
|
144 |
+
schema: structured
|
145 |
+
provider: schema
|
146 |
+
output_dir: /root/workspace/sharing/vhdatalarge/share/kfuji/zero/ChronAccRet/output/bert_orig_o2e
|
147 |
+
choices:
|
148 |
+
hydra/env: default
|
149 |
+
hydra/callbacks: null
|
150 |
+
hydra/job_logging: default
|
151 |
+
hydra/hydra_logging: default
|
152 |
+
hydra/hydra_help: default
|
153 |
+
hydra/help: default
|
154 |
+
hydra/sweeper: basic
|
155 |
+
hydra/launcher: basic
|
156 |
+
hydra/output: default
|
157 |
+
verbose: false
|
HumanML3D/bert_orig_o2e/.hydra/overrides.yaml
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
[]
|
HumanML3D/bert_orig_o2e/best_model_mt.pt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ae23417c5a58f7afe75b980aab2feccf88cc623853df96be8abce631761ecad7
|
3 |
+
size 330124397
|