asdf98 commited on
Commit
9531efa
·
verified ·
1 Parent(s): 059a7fd

Update ML Intern artifact metadata

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  # 🔐 Ethical Hacking LLM Collection — Google Colab Free Tier (T4)
2
 
3
  A curated collection of **production-ready Colab notebooks** for fine-tuning state-of-the-art small LLMs on **defensive cybersecurity / ethical hacking** tasks using **Google Colab Free Tier (T4, 16GB VRAM)**.
@@ -131,3 +135,23 @@ asdf98/ethical-hacking-llm-colab/
131
  ---
132
 
133
  *Built with ❤️ for the cybersecurity community. Use responsibly.*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - ml-intern
4
+ ---
5
  # 🔐 Ethical Hacking LLM Collection — Google Colab Free Tier (T4)
6
 
7
  A curated collection of **production-ready Colab notebooks** for fine-tuning state-of-the-art small LLMs on **defensive cybersecurity / ethical hacking** tasks using **Google Colab Free Tier (T4, 16GB VRAM)**.
 
135
  ---
136
 
137
  *Built with ❤️ for the cybersecurity community. Use responsibly.*
138
+
139
+ <!-- ml-intern-provenance -->
140
+ ## Generated by ML Intern
141
+
142
+ 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.
143
+
144
+ - Try ML Intern: https://smolagents-ml-intern.hf.space
145
+ - Source code: https://github.com/huggingface/ml-intern
146
+
147
+ ## Usage
148
+
149
+ ```python
150
+ from transformers import AutoModelForCausalLM, AutoTokenizer
151
+
152
+ model_id = "asdf98/ethical-hacking-llm-colab"
153
+ tokenizer = AutoTokenizer.from_pretrained(model_id)
154
+ model = AutoModelForCausalLM.from_pretrained(model_id)
155
+ ```
156
+
157
+ For non-causal architectures, replace `AutoModelForCausalLM` with the appropriate `AutoModel` class.