Upload numind_NuMarkdown-8B-Thinking_0.txt with huggingface_hub
Browse files
numind_NuMarkdown-8B-Thinking_0.txt
CHANGED
|
@@ -1 +1,22 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```CODE:
|
| 2 |
+
# Use a pipeline as a high-level helper
|
| 3 |
+
from transformers import pipeline
|
| 4 |
+
|
| 5 |
+
pipe = pipeline("image-to-text", model="numind/NuMarkdown-8B-Thinking")
|
| 6 |
+
```
|
| 7 |
+
|
| 8 |
+
ERROR:
|
| 9 |
+
Traceback (most recent call last):
|
| 10 |
+
File "/tmp/numind_NuMarkdown-8B-Thinking_0pl9aA5.py", line 26, in <module>
|
| 11 |
+
pipe = pipeline("image-to-text", model="numind/NuMarkdown-8B-Thinking")
|
| 12 |
+
File "/tmp/.cache/uv/environments-v2/f1ff6fde18fc9a6f/lib/python3.13/site-packages/transformers/pipelines/__init__.py", line 777, in pipeline
|
| 13 |
+
normalized_task, targeted_task, task_options = check_task(task)
|
| 14 |
+
~~~~~~~~~~^^^^^^
|
| 15 |
+
File "/tmp/.cache/uv/environments-v2/f1ff6fde18fc9a6f/lib/python3.13/site-packages/transformers/pipelines/__init__.py", line 381, in check_task
|
| 16 |
+
return PIPELINE_REGISTRY.check_task(task)
|
| 17 |
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^
|
| 18 |
+
File "/tmp/.cache/uv/environments-v2/f1ff6fde18fc9a6f/lib/python3.13/site-packages/transformers/pipelines/base.py", line 1356, in check_task
|
| 19 |
+
raise KeyError(
|
| 20 |
+
f"Unknown task {task}, available tasks are {self.get_supported_tasks() + ['translation_XX_to_YY']}"
|
| 21 |
+
)
|
| 22 |
+
KeyError: "Unknown task image-to-text, available tasks are ['any-to-any', 'audio-classification', 'automatic-speech-recognition', 'depth-estimation', 'document-question-answering', 'feature-extraction', 'fill-mask', 'image-classification', 'image-feature-extraction', 'image-segmentation', 'image-text-to-text', 'image-to-image', 'keypoint-matching', 'mask-generation', 'ner', 'object-detection', 'question-answering', 'sentiment-analysis', 'table-question-answering', 'text-classification', 'text-generation', 'text-to-audio', 'text-to-speech', 'token-classification', 'video-classification', 'visual-question-answering', 'vqa', 'zero-shot-audio-classification', 'zero-shot-classification', 'zero-shot-image-classification', 'zero-shot-object-detection', 'translation_XX_to_YY']"
|