prnshv commited on
Commit
8c04559
·
verified ·
1 Parent(s): f05f761

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -7
README.md CHANGED
@@ -7,17 +7,47 @@ tags:
7
  - gemma2
8
  - trl
9
  - sft
10
- license: apache-2.0
11
  language:
12
  - en
13
  ---
14
 
15
- # Uploaded model
16
 
17
- - **Developed by:** prnshv
18
- - **License:** apache-2.0
19
- - **Finetuned from model :** unsloth/gemma-2-27b-it-bnb-4bit
20
 
21
- This gemma2 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)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  - gemma2
8
  - trl
9
  - sft
10
+ license: gemma
11
  language:
12
  - en
13
  ---
14
 
15
+ # Model Card for ORANSight Gemma-9B
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:** gemma
21
+ - **Context Window:** 8192 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_Gemma_2_9B_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
+ ---