Skip to content

Commit

Permalink
dev
Browse files Browse the repository at this point in the history
  • Loading branch information
probberechts committed Jun 4, 2024
1 parent 8aa96b1 commit 97fc6f8
Show file tree
Hide file tree
Showing 13 changed files with 1,309 additions and 791 deletions.
24 changes: 22 additions & 2 deletions soccer_xg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,27 @@
:copyright: (c) 2023 by DTAI KU Leuven.
:license: Apache v2, see LICENSE for more details.
"""
from soccer_xg.xg import XGModel
from soccer_xg.data import Dataset, HDFDataset, SQLDataset
from soccer_xg.xg import (
DatasetTransformer,
XGModel,
PenaltyXGModel,
FreekickXGModel,
BasicOpenplayXGModel,
AdvancedOpenplayXGModel,
StatsBombOpenplayXGModel,
)

__version__ = '0.0.1'
__all__ = ['XGModel']
__all__ = [
'Dataset',
'HDFDataset',
'SQLDataset',
'DatasetTransformer',
'XGModel',
'PenaltyXGModel',
'FreekickXGModel',
'BasicOpenplayXGModel',
'AdvancedOpenplayXGModel',
'StatsBombOpenplayXGModel',
]
Loading

0 comments on commit 97fc6f8

Please sign in to comment.