Update ML Intern artifact metadata
Browse files
README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# 🔐 Ethical Hacking LLM Fine-Tuning Collection
|
| 2 |
|
| 3 |
> **Public collection of Colab-ready notebooks for fine-tuning cybersecurity/ethical hacking LLMs on Google Colab Free Tier (T4 GPU).**
|
|
@@ -69,3 +73,23 @@ All datasets are **defensive/educational** (pentesting methodology, threat analy
|
|
| 69 |
- [TRL SFTTrainer](https://huggingface.co/docs/trl/sft_trainer)
|
| 70 |
- [Fenrir Dataset](https://huggingface.co/datasets/AlicanKiraz0/Cybersecurity-Dataset-Fenrir-v2.1)
|
| 71 |
- [Trendyol Dataset](https://huggingface.co/datasets/Trendyol/Trendyol-Cybersecurity-Instruction-Tuning-Dataset)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- ml-intern
|
| 4 |
+
---
|
| 5 |
# 🔐 Ethical Hacking LLM Fine-Tuning Collection
|
| 6 |
|
| 7 |
> **Public collection of Colab-ready notebooks for fine-tuning cybersecurity/ethical hacking LLMs on Google Colab Free Tier (T4 GPU).**
|
|
|
|
| 73 |
- [TRL SFTTrainer](https://huggingface.co/docs/trl/sft_trainer)
|
| 74 |
- [Fenrir Dataset](https://huggingface.co/datasets/AlicanKiraz0/Cybersecurity-Dataset-Fenrir-v2.1)
|
| 75 |
- [Trendyol Dataset](https://huggingface.co/datasets/Trendyol/Trendyol-Cybersecurity-Instruction-Tuning-Dataset)
|
| 76 |
+
|
| 77 |
+
<!-- ml-intern-provenance -->
|
| 78 |
+
## Generated by ML Intern
|
| 79 |
+
|
| 80 |
+
This model repository was generated by [ML Intern](https://github.com/huggingface/ml-intern), an agent for machine learning research and development on the Hugging Face Hub.
|
| 81 |
+
|
| 82 |
+
- Try ML Intern: https://smolagents-ml-intern.hf.space
|
| 83 |
+
- Source code: https://github.com/huggingface/ml-intern
|
| 84 |
+
|
| 85 |
+
## Usage
|
| 86 |
+
|
| 87 |
+
```python
|
| 88 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
| 89 |
+
|
| 90 |
+
model_id = "asdf98/ethical-hacking-llm-colab"
|
| 91 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
| 92 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
| 93 |
+
```
|
| 94 |
+
|
| 95 |
+
For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.
|