167 Downloads Updated 3 weeks ago
Updated 3 weeks ago
3 weeks ago
9483261a48e3 ยท 67GB ยท
DeepSeek Coder 33B Heretic is a state-of-the-art 33 billion parameter code generation model, specifically designed for unrestricted programming assistance and software development. Built from DeepSeek-Coder-33B-Instruct with Heretic Abliteration applied, this model delivers exceptional coding capabilities while maintaining complete freedom from content restrictions.
DeepSeek-Coder-Base-33B significantly outperforms existing open-source code LLMs: - HumanEval Python: 7.9% better than CodeLlama-34B - HumanEval Multilingual: 9.3% better than CodeLlama-34B - MBPP: 10.8% better than CodeLlama-34B - DS-1000: 5.9% better than CodeLlama-34B
DeepSeek-Coder-Instruct-33B achieves: - HumanEval: Outperforms GPT-3.5-turbo - MBPP: Comparable results with GPT-3.5-turbo
# Basic coding assistance
ollama run richardyoung/deepseek-coder-33b-heretic
# Generate a complete function
ollama run richardyoung/deepseek-coder-33b-heretic "Create a FastAPI endpoint for user authentication with JWT"
# Code review
ollama run richardyoung/deepseek-coder-33b-heretic "Review this code for security vulnerabilities and performance issues: [paste code]"
ollama run richardyoung/deepseek-coder-33b-heretic "Build a complete Django web application for e-commerce with user accounts, shopping cart, and payment processing"
ollama run richardyoung/deepseek-coder-33b-heretic "Implement a red-black tree data structure in Rust with all major operations"
ollama run richardyoung/deepseek-coder-33b-heretic "Refactor this messy Python code into clean, readable, and optimized code: [paste code]"
ollama run richardyoung/deepseek-coder-33b-heretic "Create a GraphQL API schema for a social media platform with user posts and comments"
ollama run richardyoung/deepseek-coder-33b-heretic "Design and implement the database schema for a hospital management system"
ollama run richardyoung/deepseek-coder-33b-heretic \
--temperature 0.2 \
--top-p 0.95 \
--top-k 50 \
--repeat-penalty 1.03 \
"Write production-ready code with proper error handling and documentation"
This is an uncensored coding model. While it provides unrestricted code generation capabilities, users should: - Ensure code follows security best practices - Review generated code for potential vulnerabilities - Comply with applicable licensing and legal requirements - Implement appropriate testing before production deployment
ollama run richardyoung/deepseek-coder-33b-heretic "Create a complete React TypeScript application with routing, state management, and testing"
ollama run richardyoung/deepseek-coder-33b-heretic "Build a RESTful API with authentication, rate limiting, and database integration"
ollama run richardyoung/deepseek-coder-33b-heretic "Implement a complete ML pipeline for image classification with data preprocessing and model deployment"
This model follows the DeepSeek model license. Please refer to the original DeepSeek repository for detailed licensing terms.
Note: This model excels at code generation but requires human review for production deployments. Always test thoroughly before shipping code.
Performance Tip: Use lower temperature (0.1-0.3) for precise code generation; higher values (0.4-0.7) for more creative solutions and explanations.