Views
No views yet
config.json: Configuration file for the model.pytorch_model.bin: The PyTorch weights of the model.spm.model: The SentencePiece tokenizer model.vocab.txt: A human-readable vocabulary file that contains the list of tokens used by the model.tokenizer_config.json: Tokenizer configuration file.transformers library:1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3tokenizer = AutoTokenizer.from_pretrained("AI-team-UoA/GreekDeBERTaV3-base")
4model = AutoModelForTokenClassification.from_pretrained("AI-team-UoA/GreekDeBERTaV3-base")