Instructions to use PeterAdel/CyberBrain_Model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use PeterAdel/CyberBrain_Model with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("PeterAdel/CyberBrain_Model", dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Unsloth Studio
How to use PeterAdel/CyberBrain_Model 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 PeterAdel/CyberBrain_Model 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 PeterAdel/CyberBrain_Model to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for PeterAdel/CyberBrain_Model to start chatting
Load model with FastModel
pip install unsloth from unsloth import FastModel model, tokenizer = FastModel.from_pretrained( model_name="PeterAdel/CyberBrain_Model", max_seq_length=2048, )
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,23 +1,26 @@
|
|
| 1 |
-
---
|
| 2 |
-
base_model: unsloth/deepseek-r1-distill-qwen-14b-unsloth-bnb-4bit
|
| 3 |
-
tags:
|
| 4 |
-
- text-generation-inference
|
| 5 |
-
- transformers
|
| 6 |
-
- unsloth
|
| 7 |
-
- qwen2
|
| 8 |
-
- trl
|
| 9 |
-
- ai
|
| 10 |
-
- finetune
|
| 11 |
-
license: apache-2.0
|
| 12 |
-
language:
|
| 13 |
-
- en
|
| 14 |
-
---
|
| 15 |
|
| 16 |
|
| 17 |
# CyberBrain_Model
|
| 18 |
<p align="center">
|
| 19 |
<img src="https://capsule-render.vercel.app/api?type=waving&height=120&color=244b6c&text=Cyper%20Brain§ion=header&textBg=false&animation=twinkling&fontColor=a5241b&strokeWidth=0&rotate=0&reversal=false" style="width:100%;">
|
| 20 |
</p>
|
|
|
|
|
|
|
|
|
|
| 21 |
CyberBrain_Model is an advanced AI project designed for fine-tuning the model `unsloth/DeepSeek-R1-Distill-Qwen-14B` specifically for cyber security tasks. This repository provides tools and scripts for training and fine-tuning large language models efficiently using minimal hardware resources. The goal is to adapt the model for ethical cyber security applications, making it efficient even on devices with limited computational power, whether you have a low-end CPU or a GPU with limited VRAM.
|
| 22 |
|
| 23 |
In this project, we use technical content extracted from various cyber security sources as our primary training data. The raw text is processed into instruction-response pairs tailored for fine-tuning the model on cyber security scenarios. You can access the training data [here](./DataSet).
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: unsloth/deepseek-r1-distill-qwen-14b-unsloth-bnb-4bit
|
| 3 |
+
tags:
|
| 4 |
+
- text-generation-inference
|
| 5 |
+
- transformers
|
| 6 |
+
- unsloth
|
| 7 |
+
- qwen2
|
| 8 |
+
- trl
|
| 9 |
+
- ai
|
| 10 |
+
- finetune
|
| 11 |
+
license: apache-2.0
|
| 12 |
+
language:
|
| 13 |
+
- en
|
| 14 |
+
---
|
| 15 |
|
| 16 |
|
| 17 |
# CyberBrain_Model
|
| 18 |
<p align="center">
|
| 19 |
<img src="https://capsule-render.vercel.app/api?type=waving&height=120&color=244b6c&text=Cyper%20Brain§ion=header&textBg=false&animation=twinkling&fontColor=a5241b&strokeWidth=0&rotate=0&reversal=false" style="width:100%;">
|
| 20 |
</p>
|
| 21 |
+
|
| 22 |
+
**[GitHub_Project_link](https://github.com/YourUsername/CyberBrain_Model.git)**
|
| 23 |
+
|
| 24 |
CyberBrain_Model is an advanced AI project designed for fine-tuning the model `unsloth/DeepSeek-R1-Distill-Qwen-14B` specifically for cyber security tasks. This repository provides tools and scripts for training and fine-tuning large language models efficiently using minimal hardware resources. The goal is to adapt the model for ethical cyber security applications, making it efficient even on devices with limited computational power, whether you have a low-end CPU or a GPU with limited VRAM.
|
| 25 |
|
| 26 |
In this project, we use technical content extracted from various cyber security sources as our primary training data. The raw text is processed into instruction-response pairs tailored for fine-tuning the model on cyber security scenarios. You can access the training data [here](./DataSet).
|