Views
No views yet
spm.model)config.json: The model configuration file used by the DeBERTa-base architecture.pytorch_model.bin: The pre-trained model weights in PyTorch format.spm.model: The SentencePiece model file used for tokenization.vocab.txt: A human-readable vocabulary file that contains the list of tokens used by the model.tokenizer_config.json: Configuration file for the tokenizer.transformers library. Below is an example to get started with token classification:1from transformers import AutoTokenizer, AutoModelForTokenClassification
2
3# Load the tokenizer and model
4tokenizer = AutoTokenizer.from_pretrained("AI-team-UoA/GreekDeBERTa-base")
5model = AutoModelForTokenClassification.from_pretrained("AI-team-UoA/GreekDeBERTa-base")