-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathparameters.json
95 lines (95 loc) · 2.92 KB
/
parameters.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"exp_param": {
"experiments_dir": "experiments"
},
"experiments": {
"default_experiment": {
"input_ds": {
"filtering": {
"min_cells": 3,
"min_genes": 400
},
"n_cpus_preprocessing": 20,
"raw_input": [
"data/citeseq.h5ad",
"data/pbmc8k.h5ad"
],
"scale": {
"LSN": 20000,
"fixed_scaling": {
"mean": "genes",
"var": "genes"
}
},
"split": {
"balanced_split": true,
"split_seed": 0,
"test_cells": 0,
"valid_cells": 0.1
}
},
"model": {
"activation_fn": "tensorflow_addons.activations.mish",
"conditional_regularization": {
"l2": 0.0,
"name": "tensorflow.keras.regularizers.L1L2"
},
"crossentropy": {
"label_smoothing": 0.0,
"lower_label_smoothing": 0.1
},
"decoder": {
"layers": [
256,
512,
1024
],
"regularization": 0.0
},
"encoder": {
"layers": [
1024,
512,
256
],
"regularization": 0.4
},
"latent_dim": 48,
"norm_type": [
"conditionallayernorm",
"conditionallayernorm",
"conditionallayernorm"
],
"output_fn": null,
"reconstruction_loss": {
"delta": 9.0,
"name": "HuberLoss"
},
"wae_lambda": 1500,
"weighting_decoder_dropout": 10000,
"weighting_random_encoder": 1e-08
},
"training": {
"GPU": [
0
],
"XLA": true,
"batch_size": 192,
"early_stopping": {
"delay": 5,
"min_delta": 0.01,
"patience": 30
},
"max_steps": 200,
"optimizer": {
"algorithm": "tensorflow_addons.optimizers.RectifiedAdam",
"amsgrad": false,
"beta_1": 0.85,
"beta_2": 0.95,
"learning_rate": 0.001
},
"parallel_pc": 5
}
}
}
}