Instructions to use thethinkmachine/MICE with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thethinkmachine/MICE with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="thethinkmachine/MICE")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("thethinkmachine/MICE") model = AutoModelForSequenceClassification.from_pretrained("thethinkmachine/MICE") - Notebooks
- Google Colab
- Kaggle
Correct pipeline tag and add Github link
#1
by nielsr HF Staff - opened
This PR corrects the pipeline_tag to text-generation which is more appropriate for this model. It also adds a link to the Github repository for easier access to the code.
thethinkmachine changed pull request status to closed