Upload config.json with huggingface_hub
Browse files- config.json +41 -0
config.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_config": {
|
| 3 |
+
"propagation_layer_config": {
|
| 4 |
+
"prop_type": "embedding",
|
| 5 |
+
"node_state_dim": 10,
|
| 6 |
+
"edge_hidden_sizes": [
|
| 7 |
+
20
|
| 8 |
+
],
|
| 9 |
+
"node_hidden_sizes": [
|
| 10 |
+
10
|
| 11 |
+
],
|
| 12 |
+
"edge_net_init_scale": 0.1,
|
| 13 |
+
"node_update_type": "gru",
|
| 14 |
+
"use_reverse_direction": true,
|
| 15 |
+
"reverse_dir_param_different": false,
|
| 16 |
+
"layer_norm": false
|
| 17 |
+
},
|
| 18 |
+
"propagation_steps": 5,
|
| 19 |
+
"refinement_steps": 3,
|
| 20 |
+
"alignment_feature_dim": 16,
|
| 21 |
+
"unify_scoring_and_interaction_preprocessor": true,
|
| 22 |
+
"scoring": "set_aligned",
|
| 23 |
+
"scoring_alignment": "sinkhorn",
|
| 24 |
+
"scoring_alignment_preprocessor_type": "lrl",
|
| 25 |
+
"interaction_alignment": "sinkhorn",
|
| 26 |
+
"interaction_alignment_preprocessor_type": "lrl",
|
| 27 |
+
"interaction_when": "pre",
|
| 28 |
+
"encoder_config": {
|
| 29 |
+
"node_hidden_sizes": [
|
| 30 |
+
10
|
| 31 |
+
],
|
| 32 |
+
"node_feature_dim": 1,
|
| 33 |
+
"edge_hidden_sizes": null,
|
| 34 |
+
"edge_feature_dim": 1
|
| 35 |
+
},
|
| 36 |
+
"sinkhorn_config": {
|
| 37 |
+
"noise_factor": 0
|
| 38 |
+
}
|
| 39 |
+
},
|
| 40 |
+
"name": "gmn_iterative_refinement_scoring=sinkhorn_pp=lrl___tp=sinkhorn_pp=lrl_when=pre___unify=true"
|
| 41 |
+
}
|