Instructions to use vector-institute/atomformer-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use vector-institute/atomformer-base with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("vector-institute/atomformer-base", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update modeling_atomformer.py
Browse files- modeling_atomformer.py +1 -1
modeling_atomformer.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
"""Implementation of the
|
| 2 |
|
| 3 |
from typing import Any, Optional, Tuple
|
| 4 |
|
|
|
|
| 1 |
+
"""Implementation of the Atomformer model."""
|
| 2 |
|
| 3 |
from typing import Any, Optional, Tuple
|
| 4 |
|