Text Generation
PEFT
Safetensors
Transformers
qwen2
dpo
lora
sft
trl
unsloth
conversational
text-generation-inference
Instructions to use zkaedi/solidity-vuln-auditor-7b with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use zkaedi/solidity-vuln-auditor-7b with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("zkaedi/solidity-vuln-auditor-7b") model = PeftModel.from_pretrained(base_model, "zkaedi/solidity-vuln-auditor-7b") - Transformers
How to use zkaedi/solidity-vuln-auditor-7b with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="zkaedi/solidity-vuln-auditor-7b") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("zkaedi/solidity-vuln-auditor-7b") model = AutoModelForCausalLM.from_pretrained("zkaedi/solidity-vuln-auditor-7b") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use zkaedi/solidity-vuln-auditor-7b with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "zkaedi/solidity-vuln-auditor-7b" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zkaedi/solidity-vuln-auditor-7b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/zkaedi/solidity-vuln-auditor-7b
- SGLang
How to use zkaedi/solidity-vuln-auditor-7b with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "zkaedi/solidity-vuln-auditor-7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zkaedi/solidity-vuln-auditor-7b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "zkaedi/solidity-vuln-auditor-7b" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "zkaedi/solidity-vuln-auditor-7b", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Studio
How to use zkaedi/solidity-vuln-auditor-7b with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for zkaedi/solidity-vuln-auditor-7b to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for zkaedi/solidity-vuln-auditor-7b to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for zkaedi/solidity-vuln-auditor-7b to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="zkaedi/solidity-vuln-auditor-7b", max_seq_length=2048, ) - Docker Model Runner
How to use zkaedi/solidity-vuln-auditor-7b with Docker Model Runner:
docker model run hf.co/zkaedi/solidity-vuln-auditor-7b
Fix: restore LoRA adapter
Browse files- README.md +210 -3
- adapter_config.json +1 -1
- optimizer.pt +3 -0
- rng_state.pth +3 -0
- scheduler.pt +3 -0
- tokenizer_config.json +1 -1
- trainer_state.json +49 -0
- training_args.bin +3 -0
README.md
CHANGED
|
@@ -1,4 +1,211 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: zkaedi/solidity-vuln-auditor-7b
|
| 3 |
+
library_name: peft
|
| 4 |
+
pipeline_tag: text-generation
|
| 5 |
+
tags:
|
| 6 |
+
- base_model:adapter:zkaedi/solidity-vuln-auditor-7b
|
| 7 |
+
- dpo
|
| 8 |
+
- lora
|
| 9 |
+
- sft
|
| 10 |
+
- transformers
|
| 11 |
+
- trl
|
| 12 |
+
- unsloth
|
| 13 |
+
---
|
| 14 |
|
| 15 |
+
# Model Card for Model ID
|
| 16 |
+
|
| 17 |
+
<!-- Provide a quick summary of what the model is/does. -->
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
|
| 21 |
+
## Model Details
|
| 22 |
+
|
| 23 |
+
### Model Description
|
| 24 |
+
|
| 25 |
+
<!-- Provide a longer summary of what this model is. -->
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
- **Developed by:** [More Information Needed]
|
| 30 |
+
- **Funded by [optional]:** [More Information Needed]
|
| 31 |
+
- **Shared by [optional]:** [More Information Needed]
|
| 32 |
+
- **Model type:** [More Information Needed]
|
| 33 |
+
- **Language(s) (NLP):** [More Information Needed]
|
| 34 |
+
- **License:** [More Information Needed]
|
| 35 |
+
- **Finetuned from model [optional]:** [More Information Needed]
|
| 36 |
+
|
| 37 |
+
### Model Sources [optional]
|
| 38 |
+
|
| 39 |
+
<!-- Provide the basic links for the model. -->
|
| 40 |
+
|
| 41 |
+
- **Repository:** [More Information Needed]
|
| 42 |
+
- **Paper [optional]:** [More Information Needed]
|
| 43 |
+
- **Demo [optional]:** [More Information Needed]
|
| 44 |
+
|
| 45 |
+
## Uses
|
| 46 |
+
|
| 47 |
+
<!-- Address questions around how the model is intended to be used, including the foreseeable users of the model and those affected by the model. -->
|
| 48 |
+
|
| 49 |
+
### Direct Use
|
| 50 |
+
|
| 51 |
+
<!-- This section is for the model use without fine-tuning or plugging into a larger ecosystem/app. -->
|
| 52 |
+
|
| 53 |
+
[More Information Needed]
|
| 54 |
+
|
| 55 |
+
### Downstream Use [optional]
|
| 56 |
+
|
| 57 |
+
<!-- This section is for the model use when fine-tuned for a task, or when plugged into a larger ecosystem/app -->
|
| 58 |
+
|
| 59 |
+
[More Information Needed]
|
| 60 |
+
|
| 61 |
+
### Out-of-Scope Use
|
| 62 |
+
|
| 63 |
+
<!-- This section addresses misuse, malicious use, and uses that the model will not work well for. -->
|
| 64 |
+
|
| 65 |
+
[More Information Needed]
|
| 66 |
+
|
| 67 |
+
## Bias, Risks, and Limitations
|
| 68 |
+
|
| 69 |
+
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
|
| 70 |
+
|
| 71 |
+
[More Information Needed]
|
| 72 |
+
|
| 73 |
+
### Recommendations
|
| 74 |
+
|
| 75 |
+
<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
|
| 76 |
+
|
| 77 |
+
Users (both direct and downstream) should be made aware of the risks, biases and limitations of the model. More information needed for further recommendations.
|
| 78 |
+
|
| 79 |
+
## How to Get Started with the Model
|
| 80 |
+
|
| 81 |
+
Use the code below to get started with the model.
|
| 82 |
+
|
| 83 |
+
[More Information Needed]
|
| 84 |
+
|
| 85 |
+
## Training Details
|
| 86 |
+
|
| 87 |
+
### Training Data
|
| 88 |
+
|
| 89 |
+
<!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
|
| 90 |
+
|
| 91 |
+
[More Information Needed]
|
| 92 |
+
|
| 93 |
+
### Training Procedure
|
| 94 |
+
|
| 95 |
+
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
|
| 96 |
+
|
| 97 |
+
#### Preprocessing [optional]
|
| 98 |
+
|
| 99 |
+
[More Information Needed]
|
| 100 |
+
|
| 101 |
+
|
| 102 |
+
#### Training Hyperparameters
|
| 103 |
+
|
| 104 |
+
- **Training regime:** [More Information Needed] <!--fp32, fp16 mixed precision, bf16 mixed precision, bf16 non-mixed precision, fp16 non-mixed precision, fp8 mixed precision -->
|
| 105 |
+
|
| 106 |
+
#### Speeds, Sizes, Times [optional]
|
| 107 |
+
|
| 108 |
+
<!-- This section provides information about throughput, start/end time, checkpoint size if relevant, etc. -->
|
| 109 |
+
|
| 110 |
+
[More Information Needed]
|
| 111 |
+
|
| 112 |
+
## Evaluation
|
| 113 |
+
|
| 114 |
+
<!-- This section describes the evaluation protocols and provides the results. -->
|
| 115 |
+
|
| 116 |
+
### Testing Data, Factors & Metrics
|
| 117 |
+
|
| 118 |
+
#### Testing Data
|
| 119 |
+
|
| 120 |
+
<!-- This should link to a Dataset Card if possible. -->
|
| 121 |
+
|
| 122 |
+
[More Information Needed]
|
| 123 |
+
|
| 124 |
+
#### Factors
|
| 125 |
+
|
| 126 |
+
<!-- These are the things the evaluation is disaggregating by, e.g., subpopulations or domains. -->
|
| 127 |
+
|
| 128 |
+
[More Information Needed]
|
| 129 |
+
|
| 130 |
+
#### Metrics
|
| 131 |
+
|
| 132 |
+
<!-- These are the evaluation metrics being used, ideally with a description of why. -->
|
| 133 |
+
|
| 134 |
+
[More Information Needed]
|
| 135 |
+
|
| 136 |
+
### Results
|
| 137 |
+
|
| 138 |
+
[More Information Needed]
|
| 139 |
+
|
| 140 |
+
#### Summary
|
| 141 |
+
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
## Model Examination [optional]
|
| 145 |
+
|
| 146 |
+
<!-- Relevant interpretability work for the model goes here -->
|
| 147 |
+
|
| 148 |
+
[More Information Needed]
|
| 149 |
+
|
| 150 |
+
## Environmental Impact
|
| 151 |
+
|
| 152 |
+
<!-- Total emissions (in grams of CO2eq) and additional considerations, such as electricity usage, go here. Edit the suggested text below accordingly -->
|
| 153 |
+
|
| 154 |
+
Carbon emissions can be estimated using the [Machine Learning Impact calculator](https://mlco2.github.io/impact#compute) presented in [Lacoste et al. (2019)](https://arxiv.org/abs/1910.09700).
|
| 155 |
+
|
| 156 |
+
- **Hardware Type:** [More Information Needed]
|
| 157 |
+
- **Hours used:** [More Information Needed]
|
| 158 |
+
- **Cloud Provider:** [More Information Needed]
|
| 159 |
+
- **Compute Region:** [More Information Needed]
|
| 160 |
+
- **Carbon Emitted:** [More Information Needed]
|
| 161 |
+
|
| 162 |
+
## Technical Specifications [optional]
|
| 163 |
+
|
| 164 |
+
### Model Architecture and Objective
|
| 165 |
+
|
| 166 |
+
[More Information Needed]
|
| 167 |
+
|
| 168 |
+
### Compute Infrastructure
|
| 169 |
+
|
| 170 |
+
[More Information Needed]
|
| 171 |
+
|
| 172 |
+
#### Hardware
|
| 173 |
+
|
| 174 |
+
[More Information Needed]
|
| 175 |
+
|
| 176 |
+
#### Software
|
| 177 |
+
|
| 178 |
+
[More Information Needed]
|
| 179 |
+
|
| 180 |
+
## Citation [optional]
|
| 181 |
+
|
| 182 |
+
<!-- If there is a paper or blog post introducing the model, the APA and Bibtex information for that should go in this section. -->
|
| 183 |
+
|
| 184 |
+
**BibTeX:**
|
| 185 |
+
|
| 186 |
+
[More Information Needed]
|
| 187 |
+
|
| 188 |
+
**APA:**
|
| 189 |
+
|
| 190 |
+
[More Information Needed]
|
| 191 |
+
|
| 192 |
+
## Glossary [optional]
|
| 193 |
+
|
| 194 |
+
<!-- If relevant, include terms and calculations in this section that can help readers understand the model or model card. -->
|
| 195 |
+
|
| 196 |
+
[More Information Needed]
|
| 197 |
+
|
| 198 |
+
## More Information [optional]
|
| 199 |
+
|
| 200 |
+
[More Information Needed]
|
| 201 |
+
|
| 202 |
+
## Model Card Authors [optional]
|
| 203 |
+
|
| 204 |
+
[More Information Needed]
|
| 205 |
+
|
| 206 |
+
## Model Card Contact
|
| 207 |
+
|
| 208 |
+
[More Information Needed]
|
| 209 |
+
### Framework versions
|
| 210 |
+
|
| 211 |
+
- PEFT 0.18.1
|
adapter_config.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
| 7 |
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 8 |
"unsloth_fixed": true
|
| 9 |
},
|
| 10 |
-
"base_model_name_or_path": "
|
| 11 |
"bias": "none",
|
| 12 |
"corda_config": null,
|
| 13 |
"ensure_weight_tying": false,
|
|
|
|
| 7 |
"parent_library": "transformers.models.qwen2.modeling_qwen2",
|
| 8 |
"unsloth_fixed": true
|
| 9 |
},
|
| 10 |
+
"base_model_name_or_path": "zkaedi/solidity-vuln-auditor-7b",
|
| 11 |
"bias": "none",
|
| 12 |
"corda_config": null,
|
| 13 |
"ensure_weight_tying": false,
|
optimizer.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76038d4d534fb7e59d46aba3b758fbcb1a900803aa2dd782588616044d8509b5
|
| 3 |
+
size 328472773
|
rng_state.pth
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1d565802a8e26c4e8a31328752b7a7fdc186d9401aa008e65697d0ad8c22e33
|
| 3 |
+
size 14645
|
scheduler.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5b49bbdd9d35223775ca5ebdef22fdfc78ad30bbb2307019c0612756029c0e92
|
| 3 |
+
size 1465
|
tokenizer_config.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
| 23 |
"is_local": false,
|
| 24 |
"model_max_length": 32768,
|
| 25 |
"pad_token": "<|PAD_TOKEN|>",
|
| 26 |
-
"padding_side": "
|
| 27 |
"split_special_tokens": false,
|
| 28 |
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
"unk_token": null
|
|
|
|
| 23 |
"is_local": false,
|
| 24 |
"model_max_length": 32768,
|
| 25 |
"pad_token": "<|PAD_TOKEN|>",
|
| 26 |
+
"padding_side": "right",
|
| 27 |
"split_special_tokens": false,
|
| 28 |
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
"unk_token": null
|
trainer_state.json
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"best_global_step": null,
|
| 3 |
+
"best_metric": null,
|
| 4 |
+
"best_model_checkpoint": null,
|
| 5 |
+
"epoch": 1.0,
|
| 6 |
+
"eval_steps": 500,
|
| 7 |
+
"global_step": 7,
|
| 8 |
+
"is_hyper_param_search": false,
|
| 9 |
+
"is_local_process_zero": true,
|
| 10 |
+
"is_world_process_zero": true,
|
| 11 |
+
"log_history": [
|
| 12 |
+
{
|
| 13 |
+
"epoch": 0.7407407407407407,
|
| 14 |
+
"grad_norm": 0.04011101648211479,
|
| 15 |
+
"learning_rate": 2.5e-05,
|
| 16 |
+
"logits/chosen": -2.2092621326446533,
|
| 17 |
+
"logits/rejected": -2.130314588546753,
|
| 18 |
+
"logps/chosen": -91.30327606201172,
|
| 19 |
+
"logps/rejected": -112.94978332519531,
|
| 20 |
+
"loss": 0.1511394739151001,
|
| 21 |
+
"rewards/accuracies": 0.800000011920929,
|
| 22 |
+
"rewards/chosen": 105.67192077636719,
|
| 23 |
+
"rewards/margins": 57.834259033203125,
|
| 24 |
+
"rewards/rejected": 47.83766555786133,
|
| 25 |
+
"step": 5
|
| 26 |
+
}
|
| 27 |
+
],
|
| 28 |
+
"logging_steps": 5,
|
| 29 |
+
"max_steps": 7,
|
| 30 |
+
"num_input_tokens_seen": 0,
|
| 31 |
+
"num_train_epochs": 1,
|
| 32 |
+
"save_steps": 50,
|
| 33 |
+
"stateful_callbacks": {
|
| 34 |
+
"TrainerControl": {
|
| 35 |
+
"args": {
|
| 36 |
+
"should_epoch_stop": false,
|
| 37 |
+
"should_evaluate": false,
|
| 38 |
+
"should_log": false,
|
| 39 |
+
"should_save": true,
|
| 40 |
+
"should_training_stop": true
|
| 41 |
+
},
|
| 42 |
+
"attributes": {}
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"total_flos": 0.0,
|
| 46 |
+
"train_batch_size": 4,
|
| 47 |
+
"trial_name": null,
|
| 48 |
+
"trial_params": null
|
| 49 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1244786ac12580f29d33cf8b1756a7103ccab90e52e144b88934fa4539156196
|
| 3 |
+
size 6289
|