footballbert-base / __init__.py
achadj's picture
Upload folder using huggingface_hub
0045d2c verified
raw
history blame contribute delete
593 Bytes
"""
FootballBERT: A Foundation Model for Football Player Analytics
A player is a token, a match is a sentence.
"""
from .configuration_footballbert import FootballBERTConfig
from .modeling_footballbert import (
FootballBERTModel,
FootballBERTForMaskedPlayerPrediction,
FootballBERTPreTrainedModel
)
from .tokenization_footballbert import FootballBERTTokenizer
__version__ = "1.0.0"
__all__ = [
"FootballBERTConfig",
"FootballBERTModel",
"FootballBERTForMaskedPlayerPrediction",
"FootballBERTPreTrainedModel",
"FootballBERTTokenizer"
]