Upload facebook_sam3_2.txt with huggingface_hub
Browse files- facebook_sam3_2.txt +29 -7
facebook_sam3_2.txt
CHANGED
|
@@ -1,17 +1,39 @@
|
|
| 1 |
```CODE:
|
| 2 |
# Load model directly
|
| 3 |
-
from transformers import
|
| 4 |
|
| 5 |
-
|
| 6 |
model = AutoModel.from_pretrained("facebook/sam3")
|
| 7 |
```
|
| 8 |
|
| 9 |
ERROR:
|
| 10 |
Traceback (most recent call last):
|
| 11 |
-
File "/tmp/
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
raise ValueError(
|
| 15 |
-
...<
|
| 16 |
)
|
| 17 |
-
ValueError:
|
|
|
|
|
|
|
|
|
| 1 |
```CODE:
|
| 2 |
# Load model directly
|
| 3 |
+
from transformers import AutoTokenizer, AutoModel
|
| 4 |
|
| 5 |
+
tokenizer = AutoTokenizer.from_pretrained("facebook/sam3")
|
| 6 |
model = AutoModel.from_pretrained("facebook/sam3")
|
| 7 |
```
|
| 8 |
|
| 9 |
ERROR:
|
| 10 |
Traceback (most recent call last):
|
| 11 |
+
File "/tmp/.cache/uv/environments-v2/e0ad3a6bca3defbb/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1360, in from_pretrained
|
| 12 |
+
config_class = CONFIG_MAPPING[config_dict["model_type"]]
|
| 13 |
+
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 14 |
+
File "/tmp/.cache/uv/environments-v2/e0ad3a6bca3defbb/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1048, in __getitem__
|
| 15 |
+
raise KeyError(key)
|
| 16 |
+
KeyError: 'sam3_video'
|
| 17 |
+
|
| 18 |
+
During handling of the above exception, another exception occurred:
|
| 19 |
+
|
| 20 |
+
Traceback (most recent call last):
|
| 21 |
+
File "/tmp/facebook_sam3_2VcD99t.py", line 27, in <module>
|
| 22 |
+
model = AutoModel.from_pretrained("facebook/sam3")
|
| 23 |
+
File "/tmp/.cache/uv/environments-v2/e0ad3a6bca3defbb/lib/python3.13/site-packages/transformers/models/auto/auto_factory.py", line 549, in from_pretrained
|
| 24 |
+
config, kwargs = AutoConfig.from_pretrained(
|
| 25 |
+
~~~~~~~~~~~~~~~~~~~~~~~~~~^
|
| 26 |
+
pretrained_model_name_or_path,
|
| 27 |
+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
| 28 |
+
...<4 lines>...
|
| 29 |
+
**kwargs,
|
| 30 |
+
^^^^^^^^^
|
| 31 |
+
)
|
| 32 |
+
^
|
| 33 |
+
File "/tmp/.cache/uv/environments-v2/e0ad3a6bca3defbb/lib/python3.13/site-packages/transformers/models/auto/configuration_auto.py", line 1362, in from_pretrained
|
| 34 |
raise ValueError(
|
| 35 |
+
...<8 lines>...
|
| 36 |
)
|
| 37 |
+
ValueError: The checkpoint you are trying to load has model type `sam3_video` but Transformers does not recognize this architecture. This could be because of an issue with the checkpoint, or because your version of Transformers is out of date.
|
| 38 |
+
|
| 39 |
+
You can update Transformers with the command `pip install --upgrade transformers`. If this does not work, and the checkpoint is very new, then there may not be a release version that supports this model yet. In this case, you can get the most up-to-date code by installing Transformers from source with the command `pip install git+https://github.com/huggingface/transformers.git`
|