Instructions to use haricharanhl22/ecommerce-distributed-sql with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use haricharanhl22/ecommerce-distributed-sql with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("unsloth/Llama-3.2-3B") model = PeftModel.from_pretrained(base_model, "haricharanhl22/ecommerce-distributed-sql") - Notebooks
- Google Colab
- Kaggle
File size: 421 Bytes
8e80c1b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | {
"backend": "tokenizers",
"bos_token": "<|begin_of_text|>",
"clean_up_tokenization_spaces": true,
"eos_token": "<|end_of_text|>",
"is_local": false,
"model_input_names": [
"input_ids",
"attention_mask"
],
"model_max_length": 131072,
"model_specific_special_tokens": {},
"pad_token": "<|end_of_text|>",
"padding_side": "left",
"tokenizer_class": "TokenizersBackend",
"unk_token": null
}
|