prnshv commited on
Commit
e3e5139
·
verified ·
1 Parent(s): 02ed2af

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +35 -5
README.md CHANGED
@@ -12,12 +12,42 @@ language:
12
  - en
13
  ---
14
 
15
- # Uploaded model
16
 
17
- - **Developed by:** prnshv
 
 
18
  - **License:** apache-2.0
19
- - **Finetuned from model :** unsloth/Qwen2.5-32B-Instruct-bnb-4bit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- This qwen2 model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
22
 
23
- [<img src="https://raw.githubusercontent.com/unslothai/unsloth/main/images/unsloth%20made%20with%20love.png" width="200"/>](https://github.com/unslothai/unsloth)
 
 
 
 
 
 
 
 
 
12
  - en
13
  ---
14
 
15
+ # Model Card for ORANSight Qwen-32B
16
 
17
+ This model belongs to the first release of the ORANSight family of models.
18
+
19
+ - **Developed by:** NextG lab@ NC State
20
  - **License:** apache-2.0
21
+ - **Long-context Support** up to 128K tokens and can generate up to 8K tokens.
22
+ - **Fine Tuning Framework:** Unsloth
23
+
24
+ ### Generate with Transformers
25
+ Below is a quick example of how to use the model with Hugging Face Transformers:
26
+
27
+ ```python
28
+ from transformers import pipeline
29
+
30
+ # Example query
31
+ messages = [
32
+ {"role": "system", "content": "You are an O-RAN expert assistant."},
33
+ {"role": "user", "content": "Explain the E2 interface."},
34
+ ]
35
+
36
+ # Load the model
37
+ chatbot = pipeline("text-generation", model="NextGLab/ORANSight_Qwen_32B_Instruct")
38
+ result = chatbot(messages)
39
+ print(result)
40
+ ```
41
 
42
+ ### Coming Soon
43
+ A detailed paper documenting the experiments and results achieved with this model will be available soon. Meanwhile, if you try this model, please cite the below mentioned paper to acknowledge the foundational work that enabled this fine-tuning.
44
 
45
+ ```bibtex
46
+ @article{gajjar2024oran,
47
+ title={Oran-bench-13k: An open source benchmark for assessing llms in open radio access networks},
48
+ author={Gajjar, Pranshav and Shah, Vijay K},
49
+ journal={arXiv preprint arXiv:2407.06245},
50
+ year={2024}
51
+ }
52
+ ```
53
+ ---