Instructions to use microsoft/unixcoder-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use microsoft/unixcoder-base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="microsoft/unixcoder-base")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("microsoft/unixcoder-base") model = AutoModel.from_pretrained("microsoft/unixcoder-base") - Inference
- Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -13,7 +13,7 @@ UniXcoder is a unified cross-modal pre-trained model for programming languages t
|
|
| 13 |
|
| 14 |
## Citation
|
| 15 |
|
| 16 |
-
If you use
|
| 17 |
|
| 18 |
```
|
| 19 |
@article{guo2022unixcoder,
|
|
|
|
| 13 |
|
| 14 |
## Citation
|
| 15 |
|
| 16 |
+
If you use UniXcoder, please consider citing the following paper:
|
| 17 |
|
| 18 |
```
|
| 19 |
@article{guo2022unixcoder,
|