ivanasp commited on
Commit
745c2e3
·
verified ·
1 Parent(s): d867b0b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +36 -11
README.md CHANGED
@@ -1,21 +1,46 @@
1
  ---
2
- base_model: unsloth/llama-3.2-1b-instruct-bnb-4bit
 
3
  tags:
4
- - text-generation-inference
5
- - transformers
6
  - unsloth
7
- - llama
8
- license: apache-2.0
 
9
  language:
10
  - en
 
11
  ---
12
 
13
- # Uploaded finetuned model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
- - **Developed by:** ivanasp
16
- - **License:** apache-2.0
17
- - **Finetuned from model :** unsloth/llama-3.2-1b-instruct-bnb-4bit
18
 
19
- This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
20
 
21
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ base_model: unsloth/Llama-3.2-1B-instruct-bnb-4bit
4
  tags:
5
+ - text-to-json
 
6
  - unsloth
7
+ - llama-3
8
+ - fine-tuned
9
+ - extraction
10
  language:
11
  - en
12
+ - es
13
  ---
14
 
15
+ # 🚀 Llama-3.2-1B-JSON-Extractor
16
+
17
+ This model is a professional fine-tuned version of **Llama 3.2 1B Instruct**, specialized in converting **Natural Language into structured JSON objects**.
18
+
19
+ ## 🎯 Project Goal
20
+ The system interprets human intent and extracts key entities into a machine-readable format. It is designed to be the bridge between human communication and database systems.
21
+
22
+ ### Extracted Fields:
23
+ - `product`: Name or description of the item.
24
+ - `price`: Numerical value (currency independent).
25
+ - `category`: Market segment or classification.
26
+
27
+ ## 🛠️ Technical Specifications
28
+ - **Architecture**: Llama 3.2 1B
29
+ - **Optimization**: QLoRA (4-bit)
30
+ - **Rank (r)**: 16
31
+ - **Alpha**: 32
32
+ - **Learning Rate**: 2e-4
33
+ - **Final Training Loss**: ~0.013 (High precision)
34
 
35
+ ## 💡 Usage Example
 
 
36
 
37
+ **Input:**
38
+ > "I want to sell a Sony PlayStation 5 for 500 dollars in the gaming category."
39
 
40
+ **Output:**
41
+ ```json
42
+ {
43
+ "product": "Sony PlayStation 5",
44
+ "price": 500,
45
+ "category": "gaming"
46
+ }