File size: 593 Bytes
0045d2c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | """
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"
] |