fbnhnsl commited on
Commit
1e9d85d
·
verified ·
1 Parent(s): 5eac73c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -2
README.md CHANGED
@@ -14,11 +14,12 @@ tags:
14
  license: cc-by-4.0
15
  ---
16
 
17
- This is a finetuned deepseek-coder-1.3b-base model for automatic code completion of Solidity code. The model was finetuned with QLoRA and an FIM transformed and Slither audited dataset. The corresponding dataset can be found at fbnhnsl/FIM_Solidity_Dataset on Hugging Face.
 
18
 
19
  Example usage:
20
  ```python
21
- # Load the finetuned model
22
  from transformers import AutoTokenizer, AutoModelForCausalLM
23
  from peft import PeftModel
24
  import torch
 
14
  license: cc-by-4.0
15
  ---
16
 
17
+ This is a fine-tuned deepseek-coder-1.3b-base model for automatic completion of Solidity code. The model was fine-tuned using the Parameter Efficient Fine-tuning (PEFT) method
18
+ Quantized Low Rank Adaptation (QLoRA) and a Fill-in-the-Middle (FIM) transformed and Slither audited dataset.
19
 
20
  Example usage:
21
  ```python
22
+ # Load the fine-tuned model
23
  from transformers import AutoTokenizer, AutoModelForCausalLM
24
  from peft import PeftModel
25
  import torch