ZhafranR commited on
Commit
b00b0fc
1 Parent(s): b837da5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -14,7 +14,7 @@ pipeline_tag: text-generation
14
 
15
  This is a fine-tuned version of LLaMA 3.2 3B Instruct model, specifically optimized for Text-to-SQL generation tasks. The model has been trained to convert natural language queries into structured SQL commands.
16
 
17
- - **Developed by:** Zhafran Ramadhan
18
  - **Model type:** Decoder-only Language Model
19
  - **Language(s):** English - MultiLingual
20
  - **License:** MIT
@@ -52,7 +52,7 @@ from transformers import pipeline
52
  # Initialize the pipeline
53
  generator = pipeline(
54
  "text-generation",
55
- model="[YOUR_HUGGINGFACE_MODEL_ID]", # Replace with your model ID
56
  torch_dtype=torch.float16,
57
  device_map="auto"
58
  )
 
14
 
15
  This is a fine-tuned version of LLaMA 3.2 3B Instruct model, specifically optimized for Text-to-SQL generation tasks. The model has been trained to convert natural language queries into structured SQL commands.
16
 
17
+ - **Developed by:** Zhafran Ramadhan - XeAI
18
  - **Model type:** Decoder-only Language Model
19
  - **Language(s):** English - MultiLingual
20
  - **License:** MIT
 
52
  # Initialize the pipeline
53
  generator = pipeline(
54
  "text-generation",
55
+ model="XeAI/LLaMa_3.2_3B_Instruct_Text2SQL", # Replace with your model ID
56
  torch_dtype=torch.float16,
57
  device_map="auto"
58
  )