Instructions to use KomeijiForce/Cuckoo-C4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KomeijiForce/Cuckoo-C4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="KomeijiForce/Cuckoo-C4")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("KomeijiForce/Cuckoo-C4") model = AutoModelForTokenClassification.from_pretrained("KomeijiForce/Cuckoo-C4") - Notebooks
- Google Colab
- Kaggle
Add pipeline tag, library name, link to paper
#1
by nielsr HF Staff - opened
This PR improves the model card by adding the pipeline_tag: question-answering, ensuring people can find your model at https://huggingface.co/models?pipeline_tag=question-answering. It also sets the appropriate library name (Transformers) and links to the paper on https://huggingface.co/papers/2502.11275.
KomeijiForce changed pull request status to merged