dabboud commited on
Commit
337c784
·
verified ·
1 Parent(s): c3879e0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +9 -5
README.md CHANGED
@@ -5,13 +5,17 @@ pipeline_tag: text-generation
5
  base_model: unsloth/Qwen2.5-3B-Instruct
6
  ---
7
 
 
8
  # Commgpt‑3B
9
 
10
- **Commgpt‑3B** is a conversational language model fine-tuned from [unsloth/Qwen2.5-3B-Instruct](https://huggingface.co/unsloth/Qwen2.5-3B-Instruct).
11
- It was specifically adapted for **Engineering Communications** topics.
 
 
 
12
 
13
- For more information, visit the GitHub repository:
14
- 🔗 [https://github.com/DavidA00/Commgpt-final-year-project](https://github.com/DavidA00/Commgpt-final-year-project)
15
 
16
  ## Usage
17
 
@@ -22,5 +26,5 @@ model = AutoModelForCausalLM.from_pretrained("dabboud/Commgpt-3B")
22
  tokenizer = AutoTokenizer.from_pretrained("dabboud/Commgpt-3B")
23
 
24
  generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
25
- output = generator("Hello, how can I help you today?", max_new_tokens=100)
26
  print(output[0]["generated_text"])
 
5
  base_model: unsloth/Qwen2.5-3B-Instruct
6
  ---
7
 
8
+
9
  # Commgpt‑3B
10
 
11
+ **Commgpt‑3B** is a conversational language model fine-tuned from [unsloth/Qwen2.5-3B-Instruct](https://huggingface.co/unsloth/Qwen2.5-3B-Instruct), adapted specifically for **Advanced Communication Systems (EECE 442)** at the American University of Beirut.
12
+
13
+ The model was trained using a curriculum of domain-specific Q&A pairs and evaluated on a custom benchmark of 450 communication systems questions. It was originally deployed with a retrieval-augmented generation (RAG) pipeline and Gradio interface.
14
+
15
+ This repo contains **only the model weights** and a **detailed implementation report**.
16
 
17
+ 📄 Full report and documentation:
18
+ [https://github.com/DavidA00/Commgpt-final-year-project](https://github.com/DavidA00/Commgpt-final-year-project)
19
 
20
  ## Usage
21
 
 
26
  tokenizer = AutoTokenizer.from_pretrained("dabboud/Commgpt-3B")
27
 
28
  generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
29
+ output = generator("What is Nyquist rate?", max_new_tokens=100)
30
  print(output[0]["generated_text"])