IQ Code | Supervisors
Collection
Text Classification • 42 items • Updated
# Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("braindao/iq-code-supervisor-missing-return-statement-v1-tinyroberta-6l-768d")
model = AutoModelForSequenceClassification.from_pretrained("braindao/iq-code-supervisor-missing-return-statement-v1-tinyroberta-6l-768d")This model was trained from scratch on an unknown dataset. It achieves the following results on the evaluation set:
More information needed
More information needed
More information needed
The following hyperparameters were used during training:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="braindao/iq-code-supervisor-missing-return-statement-v1-tinyroberta-6l-768d")