Commit
·
3894f3b
1
Parent(s):
aed2e14
update
Browse files- README.md +2 -2
- hubert_ckp/config.json +0 -70
- hubert_ckp/preprocessor_config.json +0 -9
- hubert_ckp/pytorch_model.bin +0 -3
- hubert_ckp/special_tokens_map.json +0 -1
- hubert_ckp/tf_model.h5 +0 -3
- hubert_ckp/tokenizer_config.json +0 -1
- hubert_ckp/vocab.json +0 -1
- {pbnet_seperate → pbnet}/blink/checkpoint_95000.pth.tar +0 -0
- {pbnet_seperate → pbnet}/blink/opt.yaml +0 -0
- {pbnet_seperate → pbnet}/pose/checkpoint_40000.pth.tar +0 -0
- {pbnet_seperate → pbnet}/pose/opt.yaml +0 -0
- pbnet_both/checkpoint_100000.pth.tar +0 -3
- pbnet_both/opt.yaml +0 -40
README.md
CHANGED
@@ -26,9 +26,9 @@ extra_gated_fields:
|
|
26 |
[](https://zhuanlan.zhihu.com/p/2253009511)
|
27 |
[](https://github.com/Hanbo-Cheng/DAWN-pytorch)
|
28 |
|
29 |
-
`./hubert_ckpt`:
|
30 |
|
31 |
-
`./
|
32 |
|
33 |
`DAWN_128.pth`: checkpoint for the A2V-FDM with 128 * 128 resolution
|
34 |
|
|
|
26 |
[](https://zhuanlan.zhihu.com/p/2253009511)
|
27 |
[](https://github.com/Hanbo-Cheng/DAWN-pytorch)
|
28 |
|
29 |
+
`./hubert_ckpt`: you need to download [hubert-large-ls960-ft](https://huggingface.co/facebook/hubert-large-ls960-ft/tree/main)
|
30 |
|
31 |
+
`./pbnet`: checkpoint for the Pose-Blink generation network
|
32 |
|
33 |
`DAWN_128.pth`: checkpoint for the A2V-FDM with 128 * 128 resolution
|
34 |
|
hubert_ckp/config.json
DELETED
@@ -1,70 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"_name_or_path": "facebook/hubert-large-ls960-ft",
|
3 |
-
"activation_dropout": 0.1,
|
4 |
-
"apply_spec_augment": true,
|
5 |
-
"architectures": [
|
6 |
-
"HubertForCTC"
|
7 |
-
],
|
8 |
-
"attention_dropout": 0.1,
|
9 |
-
"bos_token_id": 1,
|
10 |
-
"conv_bias": true,
|
11 |
-
"conv_dim": [
|
12 |
-
512,
|
13 |
-
512,
|
14 |
-
512,
|
15 |
-
512,
|
16 |
-
512,
|
17 |
-
512,
|
18 |
-
512
|
19 |
-
],
|
20 |
-
"conv_kernel": [
|
21 |
-
10,
|
22 |
-
3,
|
23 |
-
3,
|
24 |
-
3,
|
25 |
-
3,
|
26 |
-
2,
|
27 |
-
2
|
28 |
-
],
|
29 |
-
"conv_stride": [
|
30 |
-
5,
|
31 |
-
2,
|
32 |
-
2,
|
33 |
-
2,
|
34 |
-
2,
|
35 |
-
2,
|
36 |
-
2
|
37 |
-
],
|
38 |
-
"ctc_loss_reduction": "sum",
|
39 |
-
"ctc_zero_infinity": false,
|
40 |
-
"diversity_loss_weight": 0.1,
|
41 |
-
"do_stable_layer_norm": true,
|
42 |
-
"eos_token_id": 2,
|
43 |
-
"feat_extract_activation": "gelu",
|
44 |
-
"feat_extract_dropout": 0.0,
|
45 |
-
"feat_extract_norm": "layer",
|
46 |
-
"feat_proj_dropout": 0.1,
|
47 |
-
"final_dropout": 0.1,
|
48 |
-
"gradient_checkpointing": false,
|
49 |
-
"hidden_act": "gelu",
|
50 |
-
"hidden_dropout": 0.1,
|
51 |
-
"hidden_dropout_prob": 0.1,
|
52 |
-
"hidden_size": 1024,
|
53 |
-
"initializer_range": 0.02,
|
54 |
-
"intermediate_size": 4096,
|
55 |
-
"layer_norm_eps": 1e-05,
|
56 |
-
"layerdrop": 0.1,
|
57 |
-
"mask_feature_length": 10,
|
58 |
-
"mask_feature_prob": 0.0,
|
59 |
-
"mask_time_length": 10,
|
60 |
-
"mask_time_prob": 0.05,
|
61 |
-
"model_type": "hubert",
|
62 |
-
"num_attention_heads": 16,
|
63 |
-
"num_conv_pos_embedding_groups": 16,
|
64 |
-
"num_conv_pos_embeddings": 128,
|
65 |
-
"num_feat_extract_layers": 7,
|
66 |
-
"num_hidden_layers": 24,
|
67 |
-
"pad_token_id": 0,
|
68 |
-
"transformers_version": "4.10.0.dev0",
|
69 |
-
"vocab_size": 32
|
70 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hubert_ckp/preprocessor_config.json
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
{
|
2 |
-
"do_normalize": true,
|
3 |
-
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
4 |
-
"feature_size": 1,
|
5 |
-
"padding_side": "right",
|
6 |
-
"padding_value": 0,
|
7 |
-
"return_attention_mask": true,
|
8 |
-
"sampling_rate": 16000
|
9 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
hubert_ckp/pytorch_model.bin
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:e03a1beb2d83abb6a828ab1f72caaf16a43f57a39325b7543c3cb50df5502dce
|
3 |
-
size 1534556247
|
|
|
|
|
|
|
|
hubert_ckp/special_tokens_map.json
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "pad_token": "<pad>"}
|
|
|
|
hubert_ckp/tf_model.h5
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:1fc55856d3faa99c91b1cb91c6b9717d0d967ea09a676b2b20cff7039169a750
|
3 |
-
size 1262396792
|
|
|
|
|
|
|
|
hubert_ckp/tokenizer_config.json
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"unk_token": "<unk>", "bos_token": "<s>", "eos_token": "</s>", "pad_token": "<pad>", "do_lower_case": false, "word_delimiter_token": "|"}
|
|
|
|
hubert_ckp/vocab.json
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
{"<pad>": 0, "<s>": 1, "</s>": 2, "<unk>": 3, "|": 4, "E": 5, "T": 6, "A": 7, "O": 8, "N": 9, "I": 10, "H": 11, "S": 12, "R": 13, "D": 14, "L": 15, "U": 16, "M": 17, "W": 18, "C": 19, "F": 20, "G": 21, "Y": 22, "P": 23, "B": 24, "V": 25, "K": 26, "'": 27, "X": 28, "J": 29, "Q": 30, "Z": 31}
|
|
|
|
{pbnet_seperate → pbnet}/blink/checkpoint_95000.pth.tar
RENAMED
File without changes
|
{pbnet_seperate → pbnet}/blink/opt.yaml
RENAMED
File without changes
|
{pbnet_seperate → pbnet}/pose/checkpoint_40000.pth.tar
RENAMED
File without changes
|
{pbnet_seperate → pbnet}/pose/opt.yaml
RENAMED
File without changes
|
pbnet_both/checkpoint_100000.pth.tar
DELETED
@@ -1,3 +0,0 @@
|
|
1 |
-
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:b138f3220df5b87ada54b6455c2d9434e71d0abc59a5e9252d20b8a6be332df8
|
3 |
-
size 45264358
|
|
|
|
|
|
|
|
pbnet_both/opt.yaml
DELETED
@@ -1,40 +0,0 @@
|
|
1 |
-
activation: gelu
|
2 |
-
archiname: transformerreemb8
|
3 |
-
audio_latent_dim: 256
|
4 |
-
batch_size: 40
|
5 |
-
ckpt: ''
|
6 |
-
cuda: true
|
7 |
-
dataset: hdtf
|
8 |
-
dropout: 0.1
|
9 |
-
expname: exps
|
10 |
-
eye: 'True'
|
11 |
-
ff_size: 128
|
12 |
-
first3: false
|
13 |
-
folder: exps_delta_pose_rope_eye/HDTF_b40_200_eye_kl1e3_lr4e-4_reg5e-4_rope16_3
|
14 |
-
gpu: '0'
|
15 |
-
lambda_kl: 0.002
|
16 |
-
lambda_rc: 1.0
|
17 |
-
lambda_rcw: 1.0
|
18 |
-
lambda_reg: 0.0005
|
19 |
-
lambda_ssim: 1.0
|
20 |
-
lambdas:
|
21 |
-
kl: 0.002
|
22 |
-
rc: 1.0
|
23 |
-
reg: 0.0005
|
24 |
-
latent_dim: 256
|
25 |
-
losses:
|
26 |
-
- rc
|
27 |
-
- kl
|
28 |
-
- reg
|
29 |
-
lr: 0.0004
|
30 |
-
max_distance: 128
|
31 |
-
max_len: -1
|
32 |
-
min_len: -1
|
33 |
-
modelname: cvae_transformerreemb8_rc_kl_reg
|
34 |
-
modeltype: cvae
|
35 |
-
num_buckets: 128
|
36 |
-
num_epochs: 100000
|
37 |
-
num_frames: 200
|
38 |
-
num_layers: 2
|
39 |
-
num_seq_max: -1
|
40 |
-
snapshot: 10000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|