How to use VinsmokeMir/Fine_Tuning_SC_Method_2_Epoch_13B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="VinsmokeMir/Fine_Tuning_SC_Method_2_Epoch_13B")
# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("VinsmokeMir/Fine_Tuning_SC_Method_2_Epoch_13B") model = AutoModelForSequenceClassification.from_pretrained("VinsmokeMir/Fine_Tuning_SC_Method_2_Epoch_13B")