Update README.md
Browse files
README.md
CHANGED
|
@@ -18,7 +18,6 @@ This repo contains **only the model weights** and a **detailed implementation re
|
|
| 18 |
[https://github.com/DavidA00/Commgpt-final-year-project](https://github.com/DavidA00/Commgpt-final-year-project)
|
| 19 |
|
| 20 |
## Usage
|
| 21 |
-
|
| 22 |
```python
|
| 23 |
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
|
| 24 |
|
|
@@ -28,3 +27,14 @@ tokenizer = AutoTokenizer.from_pretrained("dabboud/Commgpt-3B")
|
|
| 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"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
[https://github.com/DavidA00/Commgpt-final-year-project](https://github.com/DavidA00/Commgpt-final-year-project)
|
| 19 |
|
| 20 |
## Usage
|
|
|
|
| 21 |
```python
|
| 22 |
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
|
| 23 |
|
|
|
|
| 27 |
generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
| 28 |
output = generator("What is Nyquist rate?", max_new_tokens=100)
|
| 29 |
print(output[0]["generated_text"])
|
| 30 |
+
|
| 31 |
+
---
|
| 32 |
+
## Citation
|
| 33 |
+
```latex
|
| 34 |
+
@misc{CommGPT2025,
|
| 35 |
+
title = {CommGPT: A Domain-Tuned Qwen 2.5-3B Model for Advanced Communication Systems},
|
| 36 |
+
author = {Abboud, David and Eid, Alex and Menassa, Alexander and Abou Faycal, Ibrahim and Fahs, Jihad and Zaraket, Fadi and Chokr, Sally},
|
| 37 |
+
note = {Model and report available at \url{https://huggingface.co/dabboud/Commgpt-3B}},
|
| 38 |
+
year = {2025}
|
| 39 |
+
}
|
| 40 |
+
```
|