BalΓ‘zs Thomay commited on
Commit
2bfa8ff
Β·
1 Parent(s): 6f1ef1a

readme fixed

Browse files
Files changed (1) hide show
  1. README.md +18 -16
README.md CHANGED
@@ -1,6 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # 🌟 Motivational Quote Generator
2
 
3
- A fine-tuned Llama 3.2 3B model that generates motivational quotes and advice. This model has been specifically trained on a curated dataset of inspirational content to provide guidance on various life topics.
4
 
5
  **πŸš€ Try it live: [https://huggingface.co/spaces/balazsthomay/motivational-quote-generator](https://huggingface.co/spaces/balazsthomay/motivational-quote-generator)**
6
 
@@ -9,14 +22,13 @@ A fine-tuned Llama 3.2 3B model that generates motivational quotes and advice. T
9
  - **Personalized Advice**: Get motivational quotes tailored to your specific situation
10
  - **Multiple Topics**: Covers perseverance, leadership, success, personal growth, and more
11
  - **Adjustable Creativity**: Control the temperature for more or less creative responses
12
- - **Fast Generation**: Optimized with LoRA fine-tuning for efficient inference
13
 
14
  ## πŸ› οΈ Technical Details
15
 
16
  - **Base Model**: Llama 3.2 3B-Instruct (4-bit quantized)
17
- - **Fine-tuning Method**: LoRA (Low-Rank Adaptation)
18
- - **Training**: 2000 iterations on curated motivational quotes dataset
19
- - **Framework**: MLX for efficient Apple Silicon inference
20
 
21
  ## πŸ’‘ Usage
22
 
@@ -27,16 +39,6 @@ Simply enter a topic you'd like advice about, such as:
27
 
28
  The model will generate a personalized motivational response to help inspire and guide you.
29
 
30
- ## πŸ”§ Model Configuration
31
-
32
- - **LoRA Rank**: 8
33
- - **Training Iterations**: 2000
34
- - **Max Sequence Length**: 2048 tokens
35
-
36
- ## πŸ“Š Training Data
37
-
38
- The model was trained on a carefully curated dataset of motivational quotes, with theme-based labeling using Ollama for improved contextual understanding.
39
-
40
  ---
41
 
42
- *Built with ❀️ using MLX and Gradio*
 
1
+ ---
2
+ title: Motivational Quote Generator
3
+ emoji: 🌟
4
+ colorFrom: blue
5
+ colorTo: purple
6
+ sdk: gradio
7
+ sdk_version: 4.44.0
8
+ app_file: app.py
9
+ pinned: false
10
+ license: mit
11
+ hardware: cpu-basic
12
+ ---
13
+
14
  # 🌟 Motivational Quote Generator
15
 
16
+ A Llama 3.2 3B model optimized for generating motivational quotes and advice. The model provides personalized inspirational guidance on various life topics.
17
 
18
  **πŸš€ Try it live: [https://huggingface.co/spaces/balazsthomay/motivational-quote-generator](https://huggingface.co/spaces/balazsthomay/motivational-quote-generator)**
19
 
 
22
  - **Personalized Advice**: Get motivational quotes tailored to your specific situation
23
  - **Multiple Topics**: Covers perseverance, leadership, success, personal growth, and more
24
  - **Adjustable Creativity**: Control the temperature for more or less creative responses
25
+ - **Fast Generation**: Optimized with 4-bit quantization for efficient inference
26
 
27
  ## πŸ› οΈ Technical Details
28
 
29
  - **Base Model**: Llama 3.2 3B-Instruct (4-bit quantized)
30
+ - **Framework**: PyTorch with Transformers
31
+ - **Optimization**: BitsAndBytesConfig for memory efficiency
 
32
 
33
  ## πŸ’‘ Usage
34
 
 
39
 
40
  The model will generate a personalized motivational response to help inspire and guide you.
41
 
 
 
 
 
 
 
 
 
 
 
42
  ---
43
 
44
+ *Built with ❀️ using PyTorch and Gradio*