Instructions to use Prosho/sentinel-src-25 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Prosho/sentinel-src-25 with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "translation" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("translation", model="Prosho/sentinel-src-25")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Prosho/sentinel-src-25", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Initial commit with model files
Browse files- checkpoints/model.ckpt +3 -0
- config.json +4 -0
checkpoints/model.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:55207fbcb359e88294873e83f374820c765e92916c05b8ebe04bc6128549906f
|
| 3 |
+
size 2237896348
|
config.json
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "SENTINEL-SRC-MQM",
|
| 3 |
+
"checkpoint_file": "checkpoints/model.ckpt"
|
| 4 |
+
}
|