Transformers How to use NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro")
model = AutoModelForSequenceClassification.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro")