Maxilicious20 commited on
Commit
94f4e85
·
verified ·
1 Parent(s): b8e3bfa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -8
README.md CHANGED
@@ -9,6 +9,7 @@ tags:
9
  - transformers
10
  - trl
11
  - german
 
12
  - aether
13
  license: apache-2.0
14
  language:
@@ -18,7 +19,7 @@ language:
18
 
19
  # Aether 2.2
20
 
21
- Aether 2.2 ist ein leichtgewichtiges, feingetuntes Sprachmodell auf Basis von **Qwen2.5-1.5B-Instruct**. Es wurde mittels PEFT (LoRA) optimiert, um verbesserte Antwortqualitäten in Deutsch und Englisch bei geringem VRAM-Verbrauch zu bieten.
22
 
23
  ## Model Details
24
 
@@ -34,11 +35,11 @@ Aether 2.2 ist ein leichtgewichtiges, feingetuntes Sprachmodell auf Basis von **
34
 
35
  ### Direct Use
36
 
37
- Dieses Modell ist als intelligenter Assistent für Textgenerierung, Dialogführung und allgemeine Aufgaben konzipiert. Es lässt sich dank des kompakten LoRA-Adapters lokal mit minimalem VRAM betreiben.
38
 
39
  ### How to Get Started with the Model
40
 
41
- Verwende den folgenden Python-Code mit `transformers` und `peft`, um Aether 2.2 direkt zu laden:
42
 
43
  ```python
44
  import torch
@@ -48,7 +49,7 @@ from peft import PeftModel
48
  base_model_id = "Qwen/Qwen2.5-1.5B-Instruct"
49
  adapter_id = "Maxilicious20/Aether-2.2"
50
 
51
- # Tokenizer und Basis-Modell laden
52
  tokenizer = AutoTokenizer.from_pretrained(base_model_id)
53
  base_model = AutoModelForCausalLM.from_pretrained(
54
  base_model_id,
@@ -56,13 +57,13 @@ base_model = AutoModelForCausalLM.from_pretrained(
56
  device_map="auto"
57
  )
58
 
59
- # Aether 2.2 LoRA-Adapter laden
60
  model = PeftModel.from_pretrained(base_model, adapter_id)
61
 
62
- # Beispiel-Prompt
63
  messages = [
64
- {"role": "system", "content": "Du bist Aether, ein hilfreicher KI-Assistent."},
65
- {"role": "user", "content": "Hallo! Wer bist du und was kannst du?"}
66
  ]
67
 
68
  prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)
 
9
  - transformers
10
  - trl
11
  - german
12
+ - english
13
  - aether
14
  license: apache-2.0
15
  language:
 
19
 
20
  # Aether 2.2
21
 
22
+ Aether 2.2 is a lightweight, fine-tuned language model based on **Qwen2.5-1.5B-Instruct**. It was optimized using PEFT (LoRA) to deliver improved response quality in both German and English while maintaining minimal VRAM usage.
23
 
24
  ## Model Details
25
 
 
35
 
36
  ### Direct Use
37
 
38
+ This model is designed as an intelligent assistant for text generation, conversational chat, and general reasoning tasks. Thanks to its lightweight LoRA adapter format, it can be run locally with minimal VRAM requirements.
39
 
40
  ### How to Get Started with the Model
41
 
42
+ Use the following Python code with `transformers` and `peft` to load Aether 2.2 directly:
43
 
44
  ```python
45
  import torch
 
49
  base_model_id = "Qwen/Qwen2.5-1.5B-Instruct"
50
  adapter_id = "Maxilicious20/Aether-2.2"
51
 
52
+ # Load Tokenizer and Base Model
53
  tokenizer = AutoTokenizer.from_pretrained(base_model_id)
54
  base_model = AutoModelForCausalLM.from_pretrained(
55
  base_model_id,
 
57
  device_map="auto"
58
  )
59
 
60
+ # Load Aether 2.2 LoRA Adapter
61
  model = PeftModel.from_pretrained(base_model, adapter_id)
62
 
63
+ # Example Prompt
64
  messages = [
65
+ {"role": "system", "content": "You are Aether, a helpful AI assistant."},
66
+ {"role": "user", "content": "Hello! Who are you and what can you do?"}
67
  ]
68
 
69
  prompt = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True)