Instructions to use claudios/unixcoder-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use claudios/unixcoder-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="claudios/unixcoder-base")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("claudios/unixcoder-base") model = AutoModel.from_pretrained("claudios/unixcoder-base") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("claudios/unixcoder-base")
model = AutoModel.from_pretrained("claudios/unixcoder-base")Quick Links
- Model Card for UniXcoder-base
- Model Details
- Uses
- Bias, Risks, and Limitations
- Training Details
- Evaluation
- Model Examination
- Environmental Impact
- Technical Specifications [optional]
- Citation
- Glossary [optional]
- More Information [optional]
- Model Card Authors [optional]
- Model Card Contact
- How to Get Started with the Model
- Downloads last month
- 275
Papers for claudios/unixcoder-base
Paper • 2203.03850 • Published
Quantifying the Carbon Emissions of Machine Learning
Paper • 1910.09700 • Published • 49
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="claudios/unixcoder-base")