Update README.md
Browse files
README.md
CHANGED
@@ -1,4 +1,60 @@
|
|
1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
base_model:
|
3 |
-
- unsloth
|
4 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language: en
|
3 |
+
tags:
|
4 |
+
- llama
|
5 |
+
- llama-3.1
|
6 |
+
- llm
|
7 |
+
- gguf
|
8 |
+
- swot-analysis
|
9 |
+
- business-analysis
|
10 |
+
- question-generation
|
11 |
+
license: apache-2.0
|
12 |
+
datasets:
|
13 |
+
- custom_swot_dataset
|
14 |
+
model-index:
|
15 |
+
- name: Llama-3.1-8b-instruct-swot-questions
|
16 |
+
results: []
|
17 |
base_model:
|
18 |
+
- jsbaicenter/unsloth-llama3.1-8b-Instruct
|
19 |
+
---
|
20 |
+
|
21 |
+
# Llama 3.1 8B Instruct - SWOT Question Generator
|
22 |
+
|
23 |
+
## Model Description
|
24 |
+
This model is a fine-tuned version of Llama 3.1 8B Instruct, specifically optimized for generating comprehensive questions for SWOT (Strengths, Weaknesses, Opportunities, Threats) analysis. The model has been trained to generate relevant, probing questions that help organizations conduct thorough SWOT analyses across various industries and business contexts.
|
25 |
+
|
26 |
+
## Intended Use
|
27 |
+
- Business consultants conducting SWOT analyses
|
28 |
+
- Strategic planning teams
|
29 |
+
- Business analysts
|
30 |
+
- Management consultants
|
31 |
+
- Students and educators in business studies
|
32 |
+
- Entrepreneurs developing business plans
|
33 |
+
|
34 |
+
## Training Details
|
35 |
+
|
36 |
+
### Base Model
|
37 |
+
- Original Model: Llama 3.1 8B Instruct
|
38 |
+
- Architecture: Transformer-based LLM
|
39 |
+
- Parameters: 8 billion
|
40 |
+
- Original Training: General instruction following and conversation
|
41 |
+
|
42 |
+
### Fine-tuning
|
43 |
+
- Training Focus: SWOT analysis question generation
|
44 |
+
- Training Data: Curated dataset of SWOT analyses and professional business analysis questions
|
45 |
+
- Training Approach: Instruction fine-tuning with emphasis on business context understanding
|
46 |
+
|
47 |
+
## Usage Examples
|
48 |
+
|
49 |
+
```python
|
50 |
+
# Example prompt format
|
51 |
+
prompt = """
|
52 |
+
Generate relevant questions for conducting a SWOT analysis of [company/industry].
|
53 |
+
Focus on [specific aspect] if applicable.
|
54 |
+
"""
|
55 |
+
|
56 |
+
# Example usage
|
57 |
+
prompt = """
|
58 |
+
Generate relevant questions for conducting a SWOT analysis of a tech startup
|
59 |
+
focusing on AI software development.
|
60 |
+
"""
|