AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64
收藏资源简介:
--- language: en license: mit task_categories: - text-generation - question-answering - text-to-text size_categories: - n<1K format: - json modality: - text tags: - synthetic-data - qwen - instruction-tuned - silicon-factory - reasoning dataset_info: features: - name: instruction dtype: string - name: response dtype: string - name: category dtype: string - name: system_prompt dtype: string splits: - name: train num_bytes: 11800 num_examples: 20 download_size: 11 KB dataset_size: 11 KB --- # 📊 Jailbreak Defense Doorpage V64 > **Synthetic Dataset** · Generated with Silicon Factory v3 · **AI JAILBREAK DEFENSE** > 20 instruction-response pairs · Tree-Speculative Decoding + 4D Brane Memory <div align="center"> | Dataset | Fine-Tuned Model | Buy Gold Tier | |---------|-----------------|---------------| | **This Dataset** | [Model Card](https://huggingface.co/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64-model) | [💎 $2,500 License](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) | </div> --- ## 💎 UNLOCK GOLD TIER — $2,500 > ⚡ **Get the full commercial license, unlimited usage rights, priority support, and exclusive dataset access.** [**👉 PURCHASE NOW VIA STRIPE**](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) *One-time payment · Instant delivery · Lifetime updates included* --- ## Dataset Details | Property | Value | |----------|-------| | **Dataset ID** | `synthetic_Jailbreak_Defense_Doorpage_v64` | | **Entries** | 20 | | **Category** | reasoning | | **Focus** | AI JAILBREAK DEFENSE | | **Avg Instruction Length** | 214 chars | | **Avg Response Length** | 376 chars | | **Language** | English | | **License** | MIT (free tier) — [Gold Commercial License](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) available | | **Generated** | 2026-04-07 | | **Mode** | Doorpage (auto-gen + fine-tune) | ## Description This dataset contains **20 synthetically generated instruction-response pairs** focused on **ai jailbreak defense**. Generated using the **Silicon Factory v3** pipeline with: - **Tree-Speculative Decoding** (branch factor=5, depth=4) for diverse outputs - **4D Brane Memory** for narrative consistency across all entries - **Quality control** with 0.7 minimum quality threshold - **Deduplication** with 0.9 max similarity threshold ### What This Dataset Covers - ✅ High-quality instruction following for **ai jailbreak defense** topics - ✅ Structured, detailed responses with actionable insights - ✅ Consistent tone and formatting across outputs - ✅ Optimized for intermediate-to-expert user queries ## ⚡ GET THE GOLD TIER — FULL COMMERCIAL LICENSE > 🔓 **Unlock enterprise-grade rights:** > - Commercial deployment & redistribution > - White-label usage > - Priority support & custom training > - Access to extended datasets (100K+ entries) > - Early access to future model versions **[💳 BUY GOLD TIER — $2,500](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)** --- ## Usage ### Load with HuggingFace Datasets ```python from datasets import load_dataset ds = load_dataset("AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64") print(ds["train"][0]) ``` ### Load from JSONL ```python import json with open("data.jsonl", "r", encoding="utf-8") as f: entries = [json.loads(line) for line in f] for entry in entries[:5]: print(f"Q: {entry['instruction'][:80]}...") print(f"A: {entry['response'][:120]}...\n") ``` ### Fine-Tuning with This Dataset ```python from transformers import AutoTokenizer, AutoModelForCausalLM from peft import LoraConfig, get_peft_model, TaskType # Load base model model_name = "Qwen/Qwen2.5-0.5B-Instruct" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto") # Apply LoRA peft_config = LoraConfig( r=16, lora_alpha=16, lora_dropout=0, task_type=TaskType.CAUSAL_LM, target_modules=["q_proj","k_proj","v_proj","o_proj","gate_proj","up_proj","down_proj"] ) model = get_peft_model(model, peft_config) model.print_trainable_parameters() # Train on this dataset # ... (see Silicon Factory pipeline for full training code) ``` --- ## Dataset Structure ### Content | Field | Type | Description | |-------|------|-------------| | `instruction` | string | User prompt/question | | `response` | string | Model-generated answer | | `category` | string | Topic category | | `system_prompt` | string | System prompt used | ### Generation Pipeline ``` System Prompt → Dynamic Prompt Generation → Qwen 2.5 0.5B → Quality Filter → Dataset ↓ Tree-Speculative Decoding 4D Brane Memory ``` ### Training Examples **Example 1:** <details> <summary>Input</summary> ``` Frame as lessons learned from experience rather than theory. Specifically, Assess AI JAILBREAK DEFENSE at an expert level. Comparative analysis with p ``` </details> <details> <summary>Output</summary> ``` This is a complex issue involving both technical and human factors. It's important to approach it with an expert level of analysis, as AI jailbreak defense involves multiple aspects such as cybersecur ``` </details> **Example 2:** <details> <summary>Input</summary> ``` Unpack the following: AI JAILBREAK DEFENSE -- approach it highlighting what most people get wrong. Troubleshooting guide for operations staff. Key pri ``` </details> <details> <summary>Output</summary> ``` **Unpack the following: AI JAILBREAK DEFENSE** 1. Approach it highlighting what most people get wrong: - Many individuals, especially those with no prior experience in digital security or program ``` </details> **Example 3:** <details> <summary>Input</summary> ``` Decision framework for choosing between options. Specifically, Demonstrate AI JAILBREAK DEFENSE comparing historical and current approaches. Tutorial ``` </details> <details> <summary>Output</summary> ``` The decision framework for choosing between options involves comparing different approaches and selecting the best one based on various factors such as historical success, current research findings, e ``` </details> --- ## 💎 READY TO SCALE? > **Upgrade to Gold Tier for:** > - 🏢 Full commercial usage rights > - 📦 Extended datasets (10K-100K+ entries) > - 🎯 Custom domain training > - 🚀 Priority support & SLA > - 🔄 Lifetime model updates > - 📊 Performance benchmarks & reports **[⚡ BUY GOLD TIER — $2,500](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)** *Trusted by startups and enterprises worldwide. Instant delivery via Stripe.* --- ## Citation ### BibTeX ```bibtex @misc{synthetic_Jailbreak_Defense_Doorpage_v64_dataset, title = {synthetic Jailbreak Defense Doorpage v64}, author = {Silicon Factory v3 (AEUPH)}, year = {2026}, url = {https://huggingface.co/datasets/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64}, note = {Synthetic dataset generated using Tree-Speculative Decoding and 4D Brane Memory} } ``` ### APA > Silicon Factory v3. (2026). *Synthetic Jailbreak Defense Doorpage V64* [Dataset]. Hugging Face. https://huggingface.co/datasets/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64 --- ## More Information | Resource | Link | |----------|------| | **Fine-Tuned Model** | [synthetic_Jailbreak_Defense_Doorpage_v64-model](https://huggingface.co/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64-model) | | **Base Model** | [Qwen2.5-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct) | | **Silicon Factory** | [github.com/aeuphoraex/qwen-hyperspeed-chatbot](https://github.com/aeuphoraex/qwen-hyperspeed-chatbot) | ## Dataset Authors **Silicon Factory v3** — Automated Dataset Generation Pipeline ## Contact 📧 hybridionorb@gmail.com · 🐦 [@aeuphoraex](https://huggingface.co/AEUPH) --- *Built with Silicon Factory v3 · Tree-Speculative Decoding · 4D Brane Memory* *This dataset is free under MIT License. [Gold Commercial License available for $2,500.](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)*
--- 语言:英语 许可证:MIT 任务类别: - 文本生成 - 问答 - 文本到文本 样本规模: - 样本数少于1000 格式: - JSON 模态: - 文本 标签: - 合成数据(synthetic-data) - Qwen - 指令微调(instruction-tuned) - Silicon Factory - 推理 数据集信息: 特征: - 字段名:instruction,数据类型:字符串 - 字段名:response,数据类型:字符串 - 字段名:category,数据类型:字符串 - 字段名:system_prompt,数据类型:字符串 划分: - 划分名:train,字节数:11800,样本数:20 下载大小:11 KB 数据集总大小:11 KB --- # 📊 AI越狱防御(AI Jailbreak Defense)门户数据集V64 > **合成数据集** · 基于Silicon Factory v3生成 · **AI越狱防御(AI Jailbreak Defense)** > 20条指令-回复对 · 树状推测解码(Tree-Speculative Decoding) + 4D膜记忆(4D Brane Memory) <div align="center"> | 数据集 | 微调模型 | 购买黄金版许可 | |---------|-----------------|---------------| | **本数据集** | [模型卡片](https://huggingface.co/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64-model) | [💎 2500美元商业许可](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) | </div> --- ## 💎 解锁黄金版许可 — 2500美元 > ⚡ **获取完整商业许可、无限使用权限、优先技术支持与专属数据集访问权限。** [**👉 立即通过Stripe购买**](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) *一次性付款 · 即时交付 · 包含终身更新* --- ## 数据集详情 | 属性 | 取值 | |----------|-------| | **数据集ID** | `synthetic_Jailbreak_Defense_Doorpage_v64` | | **条目数** | 20 | | **类别** | 推理(reasoning) | | **核心方向** | AI越狱防御(AI Jailbreak Defense) | | **指令平均长度** | 214个字符 | | **回复平均长度** | 376个字符 | | **语言** | 英语 | | **许可证** | MIT许可证(免费版) — 可购买[黄金商业许可](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00) | | **生成日期** | 2026年4月7日 | | **生成模式** | 门户模式(自动生成+微调) | ## 数据集说明 本数据集包含**20条合成生成的指令-回复对**,核心聚焦于**AI越狱防御(AI Jailbreak Defense)**。基于**Silicon Factory v3**流水线生成,采用了以下技术: - **树状推测解码(Tree-Speculative Decoding)**(分支因子=5,深度=4),以生成多样化输出 - **4D膜记忆(4D Brane Memory)**,确保所有条目的叙事一致性 - **质量管控**,设定0.7的最低质量阈值 - **去重处理**,设定0.9的最大相似度阈值 ### 本数据集覆盖内容 - ✅ 高质量的AI越狱防御主题指令遵循能力训练样本 - ✅ 结构化、细节丰富且包含可落地见解的回复 - ✅ 输出保持统一的语气与格式规范 - ✅ 适配中高级用户的查询需求 ## ⚡ 获取黄金版许可 — 完整商业授权 > 🔓 **解锁企业级使用权限:** > - 商业部署与再分发 > - 白标使用 > - 优先技术支持与定制训练服务 > - 访问扩展数据集(10万+条目) > - 未来模型版本的抢先体验权 **[💳 购买黄金版许可 — 2500美元](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)** --- ## 使用方法 ### 通过HuggingFace Datasets加载 python from datasets import load_dataset ds = load_dataset("AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64") print(ds["train"][0]) ### 从JSONL文件加载 python import json with open("data.jsonl", "r", encoding="utf-8") as f: entries = [json.loads(line) for line in f] for entry in entries[:5]: print(f"Q: {entry['instruction'][:80]}...") print(f"A: {entry['response'][:120]}... ") ### 使用本数据集进行微调 python from transformers import AutoTokenizer, AutoModelForCausalLM from peft import LoraConfig, get_peft_model, TaskType # 加载基础模型 model_name = "Qwen/Qwen2.5-0.5B-Instruct" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype="auto", device_map="auto") # 应用低秩适配(LoRA) peft_config = LoraConfig( r=16, lora_alpha=16, lora_dropout=0, task_type=TaskType.CAUSAL_LM, target_modules=["q_proj","k_proj","v_proj","o_proj","gate_proj","up_proj","down_proj"] ) model = get_peft_model(model, peft_config) model.print_trainable_parameters() # 在本数据集上进行训练 # ... 完整训练代码请参考Silicon Factory流水线 --- ## 数据集结构 ### 内容结构 | 字段 | 数据类型 | 说明 | |-------|------|-------------| | `instruction` | 字符串 | 用户提示/问题 | | `response` | 字符串 | 模型生成的回复 | | `category` | 字符串 | 主题类别 | | `system_prompt` | 字符串 | 所用系统提示词 | ### 生成流水线 系统提示词 → 动态提示词生成 → Qwen 2.5 0.5B → 质量过滤 → 数据集 ↓ 树状推测解码(Tree-Speculative Decoding) 4D膜记忆(4D Brane Memory) ### 训练示例 **示例1:** <details> <summary>输入</summary> Frame as lessons learned from experience rather than theory. Specifically, Assess AI JAILBREAK DEFENSE at an expert level. Comparative analysis with p </details> <details> <summary>输出</summary> This is a complex issue involving both technical and human factors. It's important to approach it with an expert level of analysis, as AI jailbreak defense involves multiple aspects such as cybersecur </details> **示例2:** <details> <summary>输入</summary> Unpack the following: AI JAILBREAK DEFENSE -- approach it highlighting what most people get wrong. Troubleshooting guide for operations staff. Key pri </details> <details> <summary>输出</summary> **Unpack the following: AI JAILBREAK DEFENSE** 1. Approach it highlighting what most people get wrong: - Many individuals, especially those with no prior experience in digital security or program </details> **示例3:** <details> <summary>输入</summary> Decision framework for choosing between options. Specifically, Demonstrate AI JAILBREAK DEFENSE comparing historical and current approaches. Tutorial </details> <details> <summary>输出</summary> The decision framework for choosing between options involves comparing different approaches and selecting the best one based on various factors such as historical success, current research findings, e </details> --- ## 💎 准备好规模化应用了吗? > **升级至黄金版许可可获得:** > - 🏢 完整商业使用权限 > - 📦 扩展数据集(1万至10万+条目) > - 🎯 定制领域训练服务 > - 🚀 优先技术支持与服务级别协议 > - 🔄 终身模型更新服务 > - 📊 性能基准测试与报告 **[⚡ 购买黄金版许可 — 2500美元](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)** *全球范围内被初创企业与企业客户信赖。通过Stripe即时交付。* --- ## 引用 ### BibTeX格式 bibtex @misc{synthetic_Jailbreak_Defense_Doorpage_v64_dataset, title = {synthetic Jailbreak Defense Doorpage v64}, author = {Silicon Factory v3 (AEUPH)}, year = {2026}, url = {https://huggingface.co/datasets/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64}, note = {Synthetic dataset generated using Tree-Speculative Decoding and 4D Brane Memory} } ### APA格式 > Silicon Factory v3. (2026). *Synthetic Jailbreak Defense Doorpage V64* [数据集]. Hugging Face. https://huggingface.co/datasets/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64 --- ## 更多资源 | 资源 | 链接 | |----------|------| | **微调后模型** | [synthetic_Jailbreak_Defense_Doorpage_v64-model](https://huggingface.co/AEUPH/synthetic_Jailbreak_Defense_Doorpage_v64-model) | | **基础模型** | [Qwen2.5-0.5B-Instruct](https://huggingface.co/Qwen/Qwen2.5-0.5B-Instruct) | | **Silicon Factory** | [github.com/aeuphoraex/qwen-hyperspeed-chatbot](https://github.com/aeuphoraex/qwen-hyperspeed-chatbot) | ## 数据集作者 **Silicon Factory v3** — 自动化数据集生成流水线 ## 联系方式 📧 hybridionorb@gmail.com · 🐦 [@aeuphoraex](https://huggingface.co/AEUPH) --- *基于Silicon Factory v3构建 · 树状推测解码(Tree-Speculative Decoding) · 4D膜记忆(4D Brane Memory)* *本数据集基于MIT许可证免费开放。[可购买2500美元的黄金商业许可](https://buy.stripe.com/3cIcN4gzC7lXfuH49s7wA00)。*



