rustat-python-api 0.6.6__tar.gz → 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rustat-python-api-0.6.6/rustat_python_api.egg-info → rustat-python-api-0.7.0}/PKG-INFO +1 -1
- rustat-python-api-0.7.0/rustat_python_api/kernels/__init__.py +6 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/kernels/maha.py +7 -2
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/pitch_control.py +4 -2
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0/rustat_python_api.egg-info}/PKG-INFO +1 -1
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/setup.py +1 -1
- rustat-python-api-0.6.6/rustat_python_api/kernels/__init__.py +0 -3
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/LICENSE +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/README.md +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/pyproject.toml +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/__init__.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/config.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/models_api.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/parser.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/processing.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api/urls.py +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/SOURCES.txt +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/dependency_links.txt +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/requires.txt +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/top_level.txt +0 -0
- {rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/setup.cfg +0 -0
|
@@ -7,8 +7,10 @@ import matplotsoccer as mpl
|
|
|
7
7
|
import torch
|
|
8
8
|
from tqdm import tqdm
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
try:
|
|
11
|
+
from .kernels import triton_influence
|
|
12
|
+
except ImportError:
|
|
13
|
+
triton_influence = None
|
|
12
14
|
|
|
13
15
|
class PitchControl:
|
|
14
16
|
def __init__(self, tracking: pd.DataFrame, events: pd.DataFrame, ball_data: pd.DataFrame = None):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
{rustat-python-api-0.6.6 → rustat-python-api-0.7.0}/rustat_python_api.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|