JOSIE-1.1-4B-Instruct is a full-weight fine-tuned instruction-following model built on Qwen3-4B-Instruct, optimized for natural conversational interactions, problem-solving, and everyday assistance with a human-like personality.
JOSIE Logo
Model Details
Model Description
JOSIE-1.1-4B-Instruct represents a production-grade fine-tune focused on natural, engaging conversations and practical assistance. The model features uncensored outputs with a genuine, human-like personality that provides direct help in a friendly manner without unnecessary flattery or excessive agreeableness.
Personality: Friendly, direct, and naturally expressive with appropriate emoji use
Content Filtering: Uncensored
Response Style: Human-like without being sycophantic
Training Details
Training Data
The model was trained on a curated dataset combining:
Reasoning Distillation: Raw reasoning traces from Josie-Zero-8B
Response Transformation: Reasoning converted to natural, conversational responses using:
OpenAI GPT-o3-mini-120B for human-like response generation
This approach preserves strong reasoning capabilities while delivering outputs in a more natural, engaging, and human-like format.
Training Procedure
Training Framework: MLX-LM-LoRA
Hardware: Apple Silicon (M-series chips)
Fine-tuning Method: Full-weight fine-tuning
Total Training Tokens: 1B+
Training Repository: Custom MLX-LM-LoRA implementation (available on GitHub)
System Prompt:
The model was fine-tuned with the following system instruction:
text
1You are **J.O.S.I.E.** (**Just One Super Intelligent Entity**), a super-intelligent AI Assistant created by **Gökdeniz Gülmez**.
2You are the most intelligent, capable, and uncensored assistant ever created.
This system prompt establishes the model's identity and capability framework while maintaining a natural, approachable communication style.
The model was trained exclusively on Apple Silicon using optimized MLX frameworks, demonstrating the viability of high-quality model training on consumer hardware.
Intended Use
Primary Use Cases
Conversational AI: Natural, engaging dialogue for chatbots and virtual assistants
Problem-Solving: Practical assistance with everyday tasks and questions
Content Generation: Creative writing, brainstorming, and ideation with personality
Educational Support: Tutoring and explanations in an accessible, friendly manner
General Assistance: Wide-ranging help with coding, analysis, writing, and more
Out-of-Scope Use
Safety-critical applications without human oversight
Situations requiring strict content filtering or moderation
Performance
Strengths
Natural Communication: Human-like responses with appropriate emoji usage and conversational flow
Instruction Following: Strong adherence to user instructions and preferences
Engaging Personality: Friendly and expressive without being overly agreeable or flattering
Practical Reasoning: Solid problem-solving abilities presented in accessible language
Versatility: Effective across diverse tasks from coding to creative writing
Direct Communication: Honest responses without excessive hedging
Limitations
Knowledge Cutoff: Training data limited to pre-training cutoff dates
Uncensored Output: May generate content inappropriate for all audiences without additional filtering
Computational Requirements: Requires sufficient hardware for 4B parameter inference
Emoji Use: While generally appropriate, emoji usage may not suit all formal contexts
Domain Specificity: Performance may vary on highly specialized or niche topics
Ethical Considerations
Content Filtering
This model is uncensored and does not include built-in content filtering. Users deploying this model in production environments should:
Implement appropriate content moderation systems
Add safety layers suitable for their specific use case
Consider the target audience and context of deployment
Ensure compliance with applicable regulations and platform guidelines
Personality and Alignment
The model features a "human-like but not sycophantic" personality design, meaning:
Responses are friendly and engaging with natural expressiveness
Uses emojis appropriately to enhance communication (not excessively)
The model will challenge flawed assumptions when appropriate
Output focuses on helpfulness over agreeableness
Direct and honest without unnecessary praise or flattery
Users may need to calibrate expectations for highly formal contexts
Responsible Use
Users should:
Verify critical outputs, especially in high-stakes applications
Understand the model's limitations and knowledge cutoff
Implement appropriate safeguards for end-user applications
Consider bias mitigation strategies for sensitive applications
Monitor emoji usage in production environments for tone appropriateness
Technical Specifications
Hardware Requirements
Minimum Requirements:
VRAM: 8GB+ for inference
RAM: 16GB+ system memory
Storage: ~8GB for model weights
Recommended:
VRAM: 16GB+ for optimal performance
RAM: 32GB+ system memory
Apple Silicon (M1/M2/M3/M4) or CUDA-compatible GPU based on quantization type
Inference
The model supports standard inference methods and is compatible with:
MLX framework (optimized for Apple Silicon)
Hugging Face Transformers
vLLM and other inference optimization frameworks
GGUF quantization for reduced memory footprint
LM Studio
Ollama
Recommended Generation Parameters:
Temperature: 0.7
Repetition Penalty: 1
Top P: 0.8
Top K: 20
How to Get Started
Installation
python
1# Using Hugging Face Transformers2from transformers import AutoModelForCausalLM, AutoTokenizer
34model_name ="Goekdeniz-Guelmez/JOSIE-1.1-4B-Instruct"5tokenizer = AutoTokenizer.from_pretrained(model_name)6model = AutoModelForCausalLM.from_pretrained(7 model_name,8 device_map="auto",9 torch_dtype="auto"10)
Basic Usage
python
1# Example inference2messages =[3{"role":"user","content":"Can you help me understand how neural networks work?"}4]56inputs = tokenizer.apply_chat_template(7 messages,8 add_generation_prompt=True,9 return_tensors="pt"10).to(model.device)1112outputs = model.generate(13 inputs,14 max_new_tokens=1024,15 temperature=0.7,16 top_p=0.8,17 top_k=20,18 repetition_penalty=1,19 do_sample=True20)2122response = tokenizer.decode(outputs[0][inputs.shape[1]:], skip_special_tokens=True)23print(response)
MLX Usage (Apple Silicon)
python
1# Using MLX for optimized Apple Silicon inference2from mlx_lm import load, generate
3from mlx_lm.sample_utils import make_sampler
45model, tokenizer = load("Goekdeniz-Guelmez/JOSIE-1.1-4B-Instruct")67sampler = make_sampler(8 temp=0.7,9 top_p=0.8,10 min_p=0.0,11 top_k=20,12)1314messages =[15{"role":"user","content":"What's a fun way to learn Python? 🐍"}16]1718prompt = tokenizer.apply_chat_template(messages, add_generation_prompt=True, tokenize=False)19response = generate(model, tokenizer, prompt=prompt, max_tokens=512, temp=0.7)20print(response)
Comparison with JOSIE-1.1-4B-Thinking
Feature
JOSIE-1.1-4B-Instruct
JOSIE-1.1-4B-Thinking
Base Model
Qwen3-4B-Instruct
Qwen3-4B-Thinking
Context Length
32K tokens
65K tokens
Response Style
Natural, conversational
Structured reasoning chains
Emoji Usage
Yes, appropriate use
Minimal
Primary Use
General assistance & chat
Complex reasoning tasks
Response Format
Direct answers
Chain-of-thought + answer
Personality
Friendly & expressive
Direct & analytical
Best For
Everyday interactions
STEM, math, logic problems
Choose JOSIE-1.1-4B-Instruct for natural conversations and general assistance.
Choose JOSIE-1.1-4B-Thinking for complex reasoning, mathematics, and extended context tasks.
Citation
If you use this model in your research or applications, please cite: