Instructions to use miguelcsx/tolm-structured-ds-syntax with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use miguelcsx/tolm-structured-ds-syntax with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="miguelcsx/tolm-structured-ds-syntax", trust_remote_code=True)# Load model directly from transformers import AutoModelForMaskedLM model = AutoModelForMaskedLM.from_pretrained("miguelcsx/tolm-structured-ds-syntax", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
File size: 1,227 Bytes
d342e77 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | {
"model_type": "tolm",
"architectures": [
"TOLMForMaskedLM"
],
"auto_map": {
"AutoConfig": "tolm.TOLMConfig",
"AutoModel": "tolm.TOLMModel",
"AutoModelForMaskedLM": "tolm.TOLMForMaskedLM",
"AutoModelForCausalLM": "tolm.TOLMForCausalLM"
},
"vocab_size": 16000,
"max_seq_len": 512,
"hidden_size": 512,
"num_hidden_layers": 12,
"num_attention_heads": 8,
"intermediate_size": 1536,
"position_buckets": 32,
"dropout": 0.1,
"attention_dropout": 0.1,
"initializer_range": 0.03227486121839514,
"value_gating": true,
"residual_mixing": true,
"pad_token_id": 1,
"bos_token_id": 2,
"eos_token_id": 3,
"mask_token_id": 4,
"absolute_positions": false,
"use_rope": false,
"use_alibi": false,
"recurrent_steps": 1,
"num_experts": 1,
"experts_per_token": 1,
"expert_intermediate_size": null,
"future_offsets": [],
"state_mixer_kernel": 0,
"rtd_auxiliary": false,
"geometry_lexical_dim": 0,
"geometry_curvature": 1.0,
"cognitive_readout_layer": 0,
"cognitive_readout_weight": 0.0,
"direct_sum_dims": [
96,
128,
288
],
"direct_sum_heads": [
3,
4,
6
],
"direct_sum_intermediate_sizes": [
512,
640,
1344
]
}
|