Instructions to use toind/custom-model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use toind/custom-model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("toind/custom-model", device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 244 Bytes
4c1a327 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | {
"architectures": [
"CustomModel"
],
"hidden_size": 768,
"model_type": "custom_model",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"torch_dtype": "float32",
"transformers_version": "4.41.2",
"vocab_size": 30522
}
|