shift
Browse files
nba_tracking_data_15_16.py
CHANGED
@@ -79,6 +79,8 @@ class NbaTrackingConfig(datasets.BuilderConfig):
|
|
79 |
class NbaTracking(datasets.GeneratorBasedBuilder):
|
80 |
"""Tracking data for all games of 2015-2016 season in forms of coordinates for players and ball at each moment."""
|
81 |
|
|
|
|
|
82 |
BUILDER_CONFIG_CLASS = NbaTrackingConfig
|
83 |
|
84 |
BUILDER_CONFIGS = [
|
@@ -99,8 +101,6 @@ class NbaTracking(datasets.GeneratorBasedBuilder):
|
|
99 |
samples = len(items)
|
100 |
)
|
101 |
]
|
102 |
-
|
103 |
-
items = ITEMS
|
104 |
|
105 |
def _info(self):
|
106 |
features = datasets.Features(
|
|
|
79 |
class NbaTracking(datasets.GeneratorBasedBuilder):
|
80 |
"""Tracking data for all games of 2015-2016 season in forms of coordinates for players and ball at each moment."""
|
81 |
|
82 |
+
items = ITEMS
|
83 |
+
|
84 |
BUILDER_CONFIG_CLASS = NbaTrackingConfig
|
85 |
|
86 |
BUILDER_CONFIGS = [
|
|
|
101 |
samples = len(items)
|
102 |
)
|
103 |
]
|
|
|
|
|
104 |
|
105 |
def _info(self):
|
106 |
features = datasets.Features(
|