Instructions to use JohnnyZeppelin/sql-ocr with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JohnnyZeppelin/sql-ocr with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("JohnnyZeppelin/sql-ocr", dtype="auto") - Notebooks
- Google Colab
- Kaggle
Upload special_tokens_map.json with huggingface_hub
Browse files- special_tokens_map.json +6 -0
special_tokens_map.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "[BOS]",
|
| 3 |
+
"eos_token": "[EOS]",
|
| 4 |
+
"pad_token": "[PAD]",
|
| 5 |
+
"unk_token": "[UNK]"
|
| 6 |
+
}
|