rokati commited on
Commit
d4bb3ae
·
verified ·
1 Parent(s): 7a44376

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +43 -0
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "num_players": 496,
3
+ "hidden_dim": 32,
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",
30
+ "framework": "PyTorch Geometric",
31
+ "task": "binary_classification",
32
+ "target": "goal",
33
+ "node_types": [
34
+ "shooter",
35
+ "goal"
36
+ ],
37
+ "edge_types": [
38
+ "('goal', 'distance', 'shooter')",
39
+ "('goal', 'angle_to_goal', 'shooter')",
40
+ "('goal', 'dist_to_gk', 'shooter')",
41
+ "('goal', 'angle_to_gk', 'shooter')"
42
+ ]
43
+ }