prnshv commited on
Commit
14d661f
·
verified ·
1 Parent(s): 18a7162

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -7
README.md CHANGED
@@ -7,17 +7,47 @@ tags:
7
  - llama
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/Meta-Llama-3.1-8B-Instruct-bnb-4bit
20
 
21
- This llama 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
  - llama
8
  - trl
9
  - sft
10
+ license: llama3.1
11
  language:
12
  - en
13
  ---
14
 
15
+ # Model Card for ORANSight Llama-8B
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:** llama3.1
21
+ - **Context Window** 128K 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_LLama_8B_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
+ ---