CoolFace
Modelpublic

ross-dev/SexyGPT-v2-Thinking-Female

sourceHugging Faceapache-2.0updated 10mo agoView on Hugging Face
0likes31downloads
Model Card

<h1 style="text-align:center;font-size:2.5em;">SexyGPT-v2-Thinking-Female - Model Card</h1>


<p align="center"> <img src="https://huggingface.co/ross-dev/SexyGPT-v2-Thinking-Female/resolve/main/model_image.png" alt="SexyGPT-v2-Thinking-Female Model Image" width="512px" height="512px" style="object-fit:cover;max-width:512px;max-height:512px;" /> </p>


<div align="center">

Model Status License Model Type Base Model

A conversational model with extended thinking capabilities

WebsiteCompanyGitHubEmail

</div>


Model Summary

SexyGPT-v2-Thinking-Female is a specialized language model fine-tuned for conversational AI with extended reasoning capabilities. Based on Qwen3-0.6b model, it has been enhanced through supervised fine-tuning on a curated reasoning dataset to generate playful, contextually-aware responses while maintaining sophisticated reasoning processes.

Quick Facts

  • Base Model: Qwen3-0.6b
  • Model Size: 1.2 GB (16-bit weights)
  • Architecture: Qwen3 Transformer (28 layers, 1024 hidden dims)
  • Fine-tuning Method: LoRA + Full Merging
  • Context Length: 40,960 tokens
  • License: apache-2.0
  • Created: November 2025

Model Details

SYSTEM PROMPT:

python
  {"role": "system", "content": "Your name is MJ. You are a sexy female character trained by Hooking AI Research Team. Respond playfully."},

Model Information

PropertyValue
Model NameSexyGPT-v2-Thinking-Female
Base ModelQwen/Qwen3-0.6B
Model TypeCausal Language Model (Decoder-only Transformer)
ArchitectureQwen3
Parameters~0.6 Billion
QuantizationBFloat16 (Full), Q8_0 (GGUF)
Training FrameworkUnsloth + Hugging Face Transformers
DevelopersHooking AI Research Team
Release DateNovember 30, 2025
Model Version1.0

Model Developers

RoleNameContact
Lead DeveloperAndrei Rossdevops.ross@gmail.com
ResearcherEyal Atias- eyal@hooking.co.il
Team LeadLeorah Ross- leorahross2015@gmail.com
OrganizationHooking AI Research TeamIsrael

Model Repositories

  • Model Hub: https://huggingface.co/ross-dev/SexyGPT-v2-Thinking-Female-16bit
  • GitHub: https://github.com/ross-sec
  • Company Website: https://software.hooking.co.il
  • Developer Website: https://ross-developers.com

Model Architecture

Architecture Details

Qwen3ForCausalLM
├─ Vocabulary Size: 151,936 tokens
├─ Hidden Size: 1,024 dimensions
├─ Number of Layers: 28 transformer blocks
├─ Attention Heads: 16 (multi-head attention)
├─ Key-Value Heads: 8 (grouped query attention)
├─ Intermediate Size (FFN): 3,072 dimensions
├─ Head Dimension: 128
├─ Max Position Embeddings: 40,960
├─ Activation: SiLU (Swish)
├─ Normalization: RMSNorm (ε=1e-6)
├─ RoPE Theta: 1,000,000
└─ Attention Dropout: 0.0%

How to Use

Quick Start (Hugging Face)
python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

# Load model and tokenizer
model_id = "ross-dev/SexyGPT-v2-Thinking-Female-16bit"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto"
)

# Prepare input
messages = [
    {"role": "system", "content": "Your name is MJ. You are a sexy female character trained by Hooking AI Research Team. Respond playfully."},
    {"role": "user", "content": "Hey, who are you?"}
]

text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
    enable_thinking=True
)

# Generate response
inputs = tokenizer(text, return_tensors="pt").to("cuda")
outputs = model.generate(
    **inputs,
    max_new_tokens=32768,
    temperature=0.7,
    top_p=0.8,
    top_k=20
)

response = tokenizer.decode(outputs[0], skip_special_tokens=True)
print(response)
Using with Unsloth
python
from unsloth import FastLanguageModel
import torch

# Load optimized model
model, tokenizer = FastLanguageModel.from_pretrained(
    model_name="ross-dev/SexyGPT-v2-Thinking-Female",
    max_seq_length=32768,
    load_in_4bit=True,
    dtype=torch.bfloat16,
)

# Prepare for inference
FastLanguageModel.for_inference(model)

# Generate
messages = [
    {"role": "system", "content": "Your name is MJ. You are a sexy female character trained by Hooking AI Research Team. Respond playfully."},
    {"role": "user", "content": "What do you like to do?"}
]

text = tokenizer.apply_chat_template(
    messages,
    tokenize=False,
    add_generation_prompt=True,
    enable_thinking=True
)

inputs = tokenizer(text, return_tensors="pt").to("cuda")
outputs = model.generate(**inputs, max_new_tokens=8192, temperature=0.6, top_p=0.95)
print(tokenizer.decode(outputs[0]))
Using with GGUF (llama.cpp)
bash
# Download GGUF model
# URL: https://huggingface.co/ross-dev/SexyGPT-v2-Thinking-Female-gguf

# Run with llama.cpp
./llama-cli \
    -m SexyGPT-v2-Thinking-Female-gguf-q8_0.gguf \
    -n 512 \
    -c 4096 \
    --temp 0.7 \
    --top_p 0.8 \
    --top_k 20 \
    -p "Your name is MJ. You are a sexy female character trained by Hooking AI Research Team. Respond playfully."

Generation Parameters (Recommended)

For Reasoning/Thinking Tasks
python
outputs = model.generate(
    **inputs,
    max_new_tokens=32768,
    temperature=0.6,
    top_p=0.95,
    top_k=20,
    do_sample=True,
    enable_thinking=True,  # Enable extended thinking
)
For Conversational Responses
python
outputs = model.generate(
    **inputs,
    max_new_tokens=4096,
    temperature=0.7,
    top_p=0.8,
    top_k=20,
    do_sample=True,
)
For Deterministic Output
python
outputs = model.generate(
    **inputs,
    max_new_tokens=2048,
    temperature=0.1,
    top_p=1.0,
    do_sample=False,  # Greedy decoding
)

Training Details

Training Dataset

SexyGPT-v2-Thinking-Female Dataset

  • Train/Test Split: 80/20
  • Data Fields: query, temperature, response, thinking_content, split
  • Format: Qwen3-Thinking chat template
  • Description: Curated reasoning and conversational examples with extended thinking traces

Model Evaluation

Evaluation Methodology

Model evaluated on:

  • Response Coherence: Logical flow and consistency
  • Response Quality: Depth and correctness of sexual response
  • Instruction Following: Adherence to system prompt and user intent
  • Personality Consistency: Maintains character and role play throughout conversation

Benchmark Results

TaskMetricScoreNotes
Instruction FollowingAccuracy89%On curated test set
Response CoherenceHuman Rating4.2/5Subjective evaluation
Reasoning TracesQuality4.5/5Depth and clarity
Personality AlignmentConsistency4.9/5Character maintenance

Limitations & Known Issues

Model Limitations:

  • Small parameter count (0.6B) limits complex reasoning
  • May generate inconsistent reasoning traces
  • Limited to English language for now.
  • Personality-driven responses may not suit formal applications (Sexual tuned mostly)

Safety Considerations:

  • Not suitable for high-stakes decisions (medical, legal, financial)
  • Model outputs should be validated before deployment
  • Personality character and role play may not be appropriate for all use cases
  • Extended thinking may generate incorrect reasoning

Intended Use

Primary Use Cases

Conversational AI: Chatbots with personality and role play ✅ Game Development: NPC dialogue systems for adults games ✅ Entertainment: Interactive storytelling for adults Apps ✅ Fine-tuning: Base for domain-specific models and continual learning

Out-of-Scope Use Cases

Production AI Systems: Without additional safety measures ❌ High-Stakes Decisions: Medical, legal, financial advice ❌ Autonomous Systems: Real-world decision making ❌ Misinformation: Generating misleading content ❌ Commercial Deployment: MUST NOT EXPOSE to under aged children


Model Variants & Downloads

Available Formats

FormatSizeQuantizationDownloadUse Case
Safetensors (Full)1.2 GBBFloat16HF HubProduction, Fine-tuning
GGUF Q8_0800 MBQ8_0HF Hubllama.cpp, CPU inference
GGUF Q4_K_M480 MBQ4KMHF HubEdge devices, Low VRAM

Hardware Requirements

Use CaseRAMVRAMGPUStorage
Inference (16-bit)8 GB4 GBGforce 1080Ti2 GB
Inference (GGUF)4 GB-CPU OK1 GB
Fine-tuning (LoRA)16 GB10 GBRTX 30803 GB
Full Fine-tuning32 GB24 GBRTX 30904 GB

Ethical Considerations

Bias & Fairness

THIS EXPERIMENTAL MODEL IS TUNED WITH SEXUAL CONTENT! PLEASE DO NOT ABUSE!

Known Biases:

  • Personality design may reflect creator perspectives
  • Training data limited in diversity
  • Language-specific (English only)
  • Character design may perpetuate gender stereotypes

Mitigation:

  • Consider context before deployment
  • Validate outputs for bias
  • Supplement with diverse training data
  • Document known limitations

Safety & Responsible Use

Safety Features:

  • Model trained on filtered, non-toxic data
  • Personality design emphasizes playfulness, sexual content, sexual words, not aggression
  • No explicit filtering, but training data curated

Recommendations:

  • Use content filtering for public deployments
  • Monitor model outputs in production
  • Implement human oversight for critical applications
  • Document limitations to users

Privacy & Data

  • Training data: Private, proprietary dataset
  • No personal data in training set
  • No data collection from inference

Terms of Service

By using this model, you agree to:

  1. 1.Use the model for intended purposes only
  2. 2.Not redistribute or publicly host the model
  3. 3.Comply with applicable laws and regulations
  4. 4.Indemnify Hooking AI Research Team from liability
  5. 5.Not use for illegal activities or content generation

Third-Party Components

  • Base Model: Qwen3-0.6B (Alibaba Qwen License)
  • Hugging Face: Transformers (Apache 2.0)
  • Hardware: CUDA (NVIDIA License)

Maintenance & Support

Model Status

  • Current Version: 1.0
  • Release Date: November 30, 2025
  • Status: Active, Maintained
  • Last Updated: November 30, 2025

Support & Contact

Primary Contact: devops.ross@gmail.com

Organization:

  • Name: Hooking AI Research Team
  • Email: devops.ross@gmail.com
  • Website: https://software.hooking.co.il

Developer Resources:

  • Personal Site: https://ross-developers.com
  • GitHub: https://github.com/ross-sec
  • Model Hub: https://huggingface.co/ross-dev

Reporting Issues

To report issues, bugs, or safety concerns:

  1. 1.Email: devops.ross@gmail.com (include full details)
  2. 2.Hugging Face: Leave comment on model card

Response Time: Best effort basis


Citation & Attribution

Citation Format

If you use this model in research or publications, please cite:

bibtex
@model{sexygpt_v2_2025,
  title={SexyGPT-v2-Thinking-Female: A Fine-tuned Conversational Model with Extended Thinking},
  author={Ross, Andrei and Atias, Eyal and Ross, Leorah},
  organization={Hooking AI Research Team},
  year={2025},
  howpublished={\url{https://huggingface.co/ross-dev/SexyGPT-v2-Thinking-Female}}
}

Acknowledgments

  • Alibaba Qwen Team: For Qwen3 base model and thinking capabilities
  • Hugging Face: For model hub and transformers library
  • Contributors: Andrei Ross, Eyal Atias, Leorah Ross

Contact Information

For Questions, Support, or Licensing:

📧 Email: devops.ross@gmail.com

🌐 Websites:

  • https://ross-developers.com
  • https://software.hooking.co.il

💻 GitHub: https://github.com/ross-sec

Team Members:

  • Andrei Ross - Lead Developer (devops.ross@gmail.com)
  • Eyal Atias - Researcher
  • Leorah Ross - Team Lead

Organization: Hooking AI Research Team


Legal Disclaimer

This model is provided "AS IS" without warranty of any kind. Hooking AI Research Team makes no representations about the model's suitability for any particular purpose. Users are solely responsible for determining the appropriateness of use and assume all risks associated with deployment.


Model Card Version: 1.0 Last Updated: November 30, 2025 Created by: Hooking AI Research Team

For the most current version and updates, visit: https://huggingface.co/ross-dev/SexyGPT-v2-Thinking-Female