ccss17 commited on
Commit
1747e20
·
verified ·
1 Parent(s): bc9881c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +0 -35
README.md CHANGED
@@ -1,35 +0,0 @@
1
- ---
2
- license: apache-2.0
3
- base_model: Qwen/Qwen2.5-72B-Instruct
4
- tags:
5
- - cybersecurity
6
- - fine-tuned
7
- - security
8
- - hacking
9
- - instruction-following
10
- ---
11
-
12
- # hacking-instruct-exp-72B
13
-
14
- This is a experimental fine-tuned version of Qwen2.5-72B-Instruct on cybersecurity datasets.
15
-
16
- ## Model Details
17
-
18
- - **Base Model**: Qwen/Qwen2.5-72B-Instruct
19
- - **Fine-tuning Method**: Supervised Fine-Tuning (SFT)
20
- - **Training Data**: Cybersecurity instruction datasets
21
- - **Checkpoint**: checkpoint-2424
22
-
23
- ## Usage
24
-
25
- ```python
26
- from transformers import AutoTokenizer, AutoModelForCausalLM
27
-
28
- model_name = "ccss17/hacking-instruct-exp-72B"
29
- tokenizer = AutoTokenizer.from_pretrained(model_name)
30
- model = AutoModelForCausalLM.from_pretrained(
31
- model_name,
32
- torch_dtype=torch.bfloat16,
33
- device_map="auto"
34
- )
35
- ```