YAML Metadata
Error:
"datasets[0]" with value "self made to classify whether text is related to technology or not." is not valid. If possible, use a dataset id from https://hf.co/datasets.
BETO(cased)
This model was built using pytorch.
Model description
Input for the model: Any spanish text Output for the model: Sentiment. (0 - Negative, 1 - Positive(i.e. technology relate))
How to use
Here is how to use this model to get the features of a given text in PyTorch:
# You can include sample code which will be formatted
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("hiiamsid/BETO_es_binary_classification")
model = AutoModelForSequenceClassification.from_pretrained("hiiamsid/BETO_es_binary_classification")
text = "Replace me by any text you'd like."
encoded_input = tokenizer(text, return_tensors='pt')
output = model(**encoded_input)
Training procedure
I trained on the dataset on the dccuchile/bert-base-spanish-wwm-cased.
- Downloads last month
- 47
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.