Upload config.json with huggingface_hub
Browse files- config.json +45 -0
config.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"num_players": 496,
|
| 3 |
+
"hidden_dim": 64,
|
| 4 |
+
"dropout_rate": 0.3,
|
| 5 |
+
"num_heads": 4,
|
| 6 |
+
"num_layers": 3,
|
| 7 |
+
"use_norm": true,
|
| 8 |
+
"num_global_features": 18,
|
| 9 |
+
"global_feature_names": [
|
| 10 |
+
"ball_closer_than_gk",
|
| 11 |
+
"body_part_name_Left Foot",
|
| 12 |
+
"body_part_name_Other",
|
| 13 |
+
"body_part_name_Right Foot",
|
| 14 |
+
"goal_dist_to_gk",
|
| 15 |
+
"minute",
|
| 16 |
+
"nearest_opponent_dist",
|
| 17 |
+
"nearest_teammate_dist",
|
| 18 |
+
"opponents_within_5m",
|
| 19 |
+
"play_pattern_name_From Counter",
|
| 20 |
+
"play_pattern_name_From Free Kick",
|
| 21 |
+
"play_pattern_name_From Goal Kick",
|
| 22 |
+
"play_pattern_name_From Keeper",
|
| 23 |
+
"play_pattern_name_From Kick Off",
|
| 24 |
+
"play_pattern_name_From Throw In",
|
| 25 |
+
"play_pattern_name_Other",
|
| 26 |
+
"play_pattern_name_Regular Play",
|
| 27 |
+
"teammates_within_5m"
|
| 28 |
+
],
|
| 29 |
+
"model_type": "HeterogeneousGNN_OneGraph",
|
| 30 |
+
"framework": "PyTorch Geometric",
|
| 31 |
+
"task": "binary_classification",
|
| 32 |
+
"target": "goal",
|
| 33 |
+
"node_types": [
|
| 34 |
+
"shooter",
|
| 35 |
+
"goal",
|
| 36 |
+
"goalkeeper"
|
| 37 |
+
],
|
| 38 |
+
"edge_types": [
|
| 39 |
+
"('shooter', 'shoots_at', 'goal')",
|
| 40 |
+
"('goal', 'rev_shoots_at', 'shooter')",
|
| 41 |
+
"('shooter', 'faces', 'goalkeeper')",
|
| 42 |
+
"('goalkeeper', 'rev_faces', 'shooter')"
|
| 43 |
+
],
|
| 44 |
+
"graph_structure": "persistent_nodes_with_shot_indexed_edges"
|
| 45 |
+
}
|