Instructions to use NousResearch/Minos-v1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NousResearch/Minos-v1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="NousResearch/Minos-v1")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("NousResearch/Minos-v1") model = AutoModelForSequenceClassification.from_pretrained("NousResearch/Minos-v1") - Inference
- Notebooks
- Google Colab
- Kaggle
Val set metrics
#6
by cmcmaster - opened
What are the metrics on the validation set (precision, recall etc.)? A precision-recall curve would be very helpful to calibrate a cut point for practical usage. Or just release the dataset so we can calculate these ourselves.
We will try and get the precision-recall curve out to you soon