Upload folder using huggingface_hub
Browse files- __init__.py +23 -0
__init__.py
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
FootballBERT: A Foundation Model for Football Player Analytics
|
| 3 |
+
|
| 4 |
+
A player is a token, a match is a sentence.
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
from .configuration_footballbert import FootballBERTConfig
|
| 8 |
+
from .modeling_footballbert import (
|
| 9 |
+
FootballBERTModel,
|
| 10 |
+
FootballBERTForMaskedPlayerPrediction,
|
| 11 |
+
FootballBERTPreTrainedModel
|
| 12 |
+
)
|
| 13 |
+
from .tokenization_footballbert import FootballBERTTokenizer
|
| 14 |
+
|
| 15 |
+
__version__ = "1.0.0"
|
| 16 |
+
|
| 17 |
+
__all__ = [
|
| 18 |
+
"FootballBERTConfig",
|
| 19 |
+
"FootballBERTModel",
|
| 20 |
+
"FootballBERTForMaskedPlayerPrediction",
|
| 21 |
+
"FootballBERTPreTrainedModel",
|
| 22 |
+
"FootballBERTTokenizer"
|
| 23 |
+
]
|