Text Generation
PEFT
Safetensors
English
terraform
terraform-configuration
infrastructure-as-code
iac
hashicorp
codellama
lora
qlora
code-generation
devops
cloud
aws
azure
gcp
multi-cloud
automation
configuration-management
cloud-infrastructure
Instructions to use rafiaa/terraform-cloud-codellama-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use rafiaa/terraform-cloud-codellama-7b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("codellama/CodeLlama-7b-Instruct-hf") model = PeftModel.from_pretrained(base_model, "rafiaa/terraform-cloud-codellama-7b") - Notebooks
- Google Colab
- Kaggle
| { | |
| "additional_special_tokens": [ | |
| "▁<PRE>", | |
| "▁<MID>", | |
| "▁<SUF>", | |
| "▁<EOT>" | |
| ], | |
| "bos_token": { | |
| "content": "<s>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "eos_token": { | |
| "content": "</s>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false | |
| }, | |
| "pad_token": "</s>", | |
| "unk_token": { | |
| "content": "<unk>", | |
| "lstrip": false, | |
| "normalized": true, | |
| "rstrip": false, | |
| "single_word": false | |
| } | |
| } | |