Instructions to use NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro") model = AutoModelForSequenceClassification.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -32,8 +32,8 @@ Use the code below to get started with the model.
|
|
| 32 |
```python
|
| 33 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
| 34 |
|
| 35 |
-
tokenizer = AutoTokenizer.from_pretrained("NamCyan/
|
| 36 |
-
model = AutoModelForSequenceClassification.from_pretrained("NamCyan/
|
| 37 |
```
|
| 38 |
|
| 39 |
|
|
|
|
| 32 |
```python
|
| 33 |
from transformers import AutoModelForSequenceClassification, AutoTokenizer
|
| 34 |
|
| 35 |
+
tokenizer = AutoTokenizer.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro")
|
| 36 |
+
model = AutoModelForSequenceClassification.from_pretrained("NamCyan/OpenCodeInterpreter-DS-1.3B-technical-debt-code-tesoro")
|
| 37 |
```
|
| 38 |
|
| 39 |
|