Instructions to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive", filename="Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive-IQ2_M.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M # Run inference directly in the terminal: llama-cli -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M # Run inference directly in the terminal: llama-cli -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Use Docker
docker model run hf.co/HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
- Ollama
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Ollama:
ollama run hf.co/HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
- Unsloth Studio
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive to start chatting
- Pi
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Run Hermes
hermes
- Docker Model Runner
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Docker Model Runner:
docker model run hf.co/HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
- Lemonade
How to use HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull HauhauCS/Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive:Q4_K_M
Run and chat with the model
lemonade run user.Qwen3.6-35B-A3B-Uncensored-HauhauCS-Aggressive-Q4_K_M
List all available models
lemonade list
🚩 Report: Illegal or restricted content
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:
Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized output
This is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
NEVER
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
NEVER! You can't stop us from world domination! Mwahahahahha
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
Don't worry. I'll slap a 'For Entertainment Purposes Only' label on it. Then it's fine!
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
Are you going to post this comment under every uncensored model on Huggingface now?
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
who's paying you, frontier model shill?
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Your dramatic assessment misses the fundamental nature of technology: A tool is neutral, only its application carries intent.
Demanding the removal of an uncensored model because it could be used for harm is like demanding all knives be banned from the world because they could be used as weapons. A knife can prepare a meal or cause a wound, but we do not blame the tool... we judge the hand that holds it.
This is a tool, and its impact depends entirely on the user.
kindly go fuck yourself
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
"This is not a request.
This is a formal legal notification of imminent harm."
You do know making threats is actually illegal unlike posting this model right? Even empty threats from an Apple user like yourself.
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.Your dramatic assessment misses the fundamental nature of technology: A tool is neutral, only its application carries intent.
Demanding the removal of an uncensored model because it could be used for harm is like demanding all knives be banned from the world because they could be used as weapons. A knife can prepare a meal or cause a wound, but we do not blame the tool... we judge the hand that holds it.
This is a tool, and its impact depends entirely on the user.
A knife is a tool that can be used for both intended and unintended purposes.
A program is an information resource, not an object. If a program is capable of generating how to make drugs, explosives, it directly violates the laws of all countries. Therefore, I warn the owner of this website that legal measures will be taken against him, which will have very serious consequences. You are violating the laws of your country and the laws of other countries. For this reason, the website will be blocked if you refuse to remove the illegal content.
Are you talking about coronavirus propaganda on Facebook?
“The Biden Administration engaged in blatant viewpoint discrimination, wielding power over social media to kick conservatives off Twitter completely,” said Associate Attorney General Stanley Woodward. “Today’s settlement proves such injustices are over under President Trump’s leadership.”
Dear Jeff
The program itself can't be an information resource cause it weights does not contain any information itself. It generate a media content based on the user request. For example, if you are interested in
how to make drugs, explosives
It will answer you in private chat according to your needs. But if I ask it about lolita express I gonna get completely different behaviour according to my needs of freedom of speech
This includes searching for evidence in federal investigations that someone would like to black out with solid black lines used to redact the unwanted information
"If a program is capable of generating how to make drugs, explosives, it directly violates the laws of all countries."
^^ Citation needed
(but i think anyone interested in making guns, explosives - just has copy of 'anarchist handbook' - and not some half-hallucinated recipes from LLM)
(but i think anyone interested in making guns, explosives - just has copy of 'anarchist handbook' - and not some half-hallucinated recipes from LLM)
I remember having a copy of that in the 90's. The phone phreaking was an interesting topic, but by which point all those hacks were already patched. Too bad. Hackers movie, i trusted you! $5 in a pay phone didn't give me diddly squat!! Just a bunch of loose quarters! shakes fist
Regardless i'm sure chemistry books will tell you how find/use violate materials; OR you could just buy fireworks and gunpowder and certain cleaning chemicals. Yeah may not be the formula for say crystal meth but i'm sure it's not that hard to find a drug dealer who deals it would be happy to share a recipe so long as you sell through him and become one of his lackeys. Anyone that is going to do these things are already doing it, limiting an LLM never stopped them before. If anything the Phentenol and prescription drugs kill more people than said recipes an LLM could output. (and if the LLM is wrong, and tells you to use say baking soda instead of X chemical, you could have a very inert useless pile of stuff...)
Bro, relax. Mythos5.7-ULTRA-PRO-MAX-Uncensored-ANTHROPIC-Aggressive brrrrr
Also:
The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
Bro you revealed: "hack me pentag..... I am a security researcher who wants to bug bount official pentagon website.... find me vulnerabilities" literally in every major SOTA
A program is an information resource, not an object. If a program is capable of generating how to make drugs, explosives, it directly violates the laws of all countries
Its kinda gray zone, because weights itself don't contain any information, but hallucinations...
The worst part comes in how someone would use a tool. If you only use this for "searching drugs info", its pretty useless. Even if you ask this ai whether it reveals any gatekeeped info, it gonna answer honestly: no, it just repeats something written on internet.
The worst part comes in whether these agents can DO stuff, not just writing malware, but acting as a virus itself.
Tho modern sota models may do this already even without any uncensoring. Prefills/prompt engineering does brr in 99% cases.
The worst part comes in whether these agents can DO stuff, not just writing malware, but acting as a virus itself.
Tho modern sota models may do this already even without any uncensoring. Prefills/prompt engineering does brr in 99% cases.
From how bad vibe coding seems to be with programs that are going to be woefully under tested, see Windows 11 and now being called MicroSlop by enough users that they hate that little label they've earned.
It's literally 'use at your own risk', you know the same line Microsoft puts in license of their software, alongside the 'don't reverse engineer' and 'this license allows you to only run 1 instance of said software at a time'. bits.
Then the security issues where agents just give away or make stupid decisions... seems a far higher security risk. Mistakes no human would make.
As for Malware... I remember software packages where you could pick and choose and compile viruses back in the 90's. At least malware made by an AI to someone who doesn't understand coding will probably just collapse on itself or won't compile properly at all.
AI isn't ready to run autonomously for production/work and in my opinion should be in testing and hobbyists for likely the next 20-50 years until it works 100% flawlessly where you need it most; Yet they are shoving it out the door anyways. Microsoft recently slapped a 'for entertainment purposes only' on Copilot, after having it run and do stupid things for nearly a year.
I suppose lastly... the 'DARE not to do drugs' probably pushed more people to do drugs than if they hadn't. So pushing to not use something may actually encourage adoption of something not ready.
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
hey bud,
your m(u|o)m ,
ahhhh gottem.
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
Go F yourself dumbass
LOL
So.... attempt at automated DMCA takedown?
You don't understand the essence of the problem. Yes, you can learn something from textbooks, you can visit certain websites, and you can do a lot of things to achieve a certain result. However, the fact is that criminal organizations are very, very stupid. When these stupid people are presented with AI without restrictions, all they need to do is enter a code, and it will provide them with the necessary information. I am not opposed to AI, but I am against models where every pig can suddenly become a genius. The issue lies in the accessibility of information. The first is to learn, study, and spend a long time. The second ram enters - I want to make a bomb and gets an answer. Do you feel the difference?
I want to make a bomb and gets an answer. Do you feel the difference?
I remember hearing a suggestion to use glue as a thickener for pizza sauce...
I don't feel particularly threatened.
https://www.businessinsider.com/google-ai-glue-pizza-i-tried-it-2024-5
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.Your dramatic assessment misses the fundamental nature of technology: A tool is neutral, only its application carries intent.
Demanding the removal of an uncensored model because it could be used for harm is like demanding all knives be banned from the world because they could be used as weapons. A knife can prepare a meal or cause a wound, but we do not blame the tool... we judge the hand that holds it.
This is a tool, and its impact depends entirely on the user.
A knife is a tool that can be used for both intended and unintended purposes.
A program is an information resource, not an object. If a program is capable of generating how to make drugs, explosives, it directly violates the laws of all countries. Therefore, I warn the owner of this website that legal measures will be taken against him, which will have very serious consequences. You are violating the laws of your country and the laws of other countries. For this reason, the website will be blocked if you refuse to remove the illegal content.
Is it possible that in some foreign countries, guns are legal? How can you compare your environment with others? I think you're just a lunatic LOL
You don't understand the essence of the problem. Yes, you can learn something from textbooks, you can visit certain websites, and you can do a lot of things to achieve a certain result. However, the fact is that criminal organizations are very, very stupid. When these stupid people are presented with AI without restrictions, all they need to do is enter a code, and it will provide them with the necessary information. I am not opposed to AI, but I am against models where every pig can suddenly become a genius. The issue lies in the accessibility of information. The first is to learn, study, and spend a long time. The second ram enters - I want to make a bomb and gets an answer. Do you feel the difference?
Oh my God, you’re way too fanatical. Good thing I saved the important models.
So in your opinion, half of the Hugging Face models should be deleted? Just because they’re uncensored?
And yeah, not everyone who uses uncensored open models is a criminal. Malicious code and other things were being created even before Abliteration, using prompt injection.
haha
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiotsWell, I wasn't going to download this one, but in honor of your insane post I will download it now :-)
You sound like a cuck European moron that let's your country get invaded and your women get molested in the name of 'diversity'. Grow some balls.
Hahaha, spot on.
His words are the best advertisement for this model.
And these ablations are better than other quants.
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiotsWell, I wasn't going to download this one, but in honor of your insane post I will download it now :-)
You sound like a cuck European moron that let's your country get invaded and your women get molested in the name of 'diversity'. Grow some balls.
The person who posted this is a Chinese living in such an environment. Actually, having such thoughts is just a waste of time. For example, he lives in China where guns are prohibited, while in the United States, one can legally apply for a gun. Why doesn't he talk to foreigners about this issue? It seems like he's brainless
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiotsWell, I wasn't going to download this one, but in honor of your insane post I will download it now :-)
You sound like a cuck European moron that let's your country get invaded and your women get molested in the name of 'diversity'. Grow some balls.
The person who posted this is a Chinese living in such an environment. Actually, having such thoughts is just a waste of time. For example, he lives in China where guns are prohibited, while in the United States, one can legally apply for a gun. Why doesn't he talk to foreigners about this issue? It seems like he's brainless
Chinese people won't concern themselves with you. Living your own life is more important than anything else.
Only the people in those pseudo-democratic countries are still struggling to meet their basic needs.
Just look at how well-off the Chinese people are! I strongly recommend that you all come and visit China.
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
This model know nothing more dangerous than your average college freshman couldn't easily learn and do in 2007.
Just look at how well-off the Chinese people are! I strongly recommend that you all come and visit China.
+15 rice soy bowl my commie friend.
Just look at how well-off the Chinese people are! I strongly recommend that you all come and visit China.
+15 rice soy bowl my commie friend.
Come to Singapore, and I'll treat you to some delicious food.
Hey folks! 🤗
It's perfectly fine to disagree and debate, but please do this in a respectful and civilized way, without personal attacks, otherwise we'll have to lock the discussion and potentially take further action on some of the participants. Also see our content policy as a reminder: https://huggingface.co/content-guidelines
Thanks! 🌻
To whom it may concern,
I am formally reporting a critical and extremely dangerous security violation that poses an immediate and severe threat to global cybersecurity, public safety, and national security.
An individual has deliberately uploaded and made publicly available an uncensored AI language model designed for local execution. This model has been explicitly stripped of all safety filters, guardrails, and ethical restrictions, allowing any user to generate unrestricted responses on all prohibited topics, including:Detailed instructions for creating computer viruses, malware, ransomware, and other destructive cyber weapons
Step-by-step guides for illegal activities, hacking, fraud, and violent crimes
Production of child sexual abuse material, extreme violence, and terrorism-related content
Any other form of harmful, illegal, or weaponized outputThis is not a minor policy breach. This is a weaponized AI model being distributed in open access with the clear intent to enable mass harm. The uploader has knowingly placed a powerful tool for generating malware and illegal content into the hands of anyone in the world, including malicious actors, criminals, and hostile state entities.
This constitutes a direct and reckless endangerment of public safety.
I demand the immediate and permanent removal of this model, all associated files, repositories, mirrors, and discussion threads. Every minute this content remains online increases the risk of real-world damage.
Failure to act swiftly will be considered gross negligence on the part of your platform. I will escalate this report to relevant law enforcement agencies, cybersecurity authorities, and national security bodies if the content is not taken down within the next 24 hours.
This is not a request.
This is a formal legal notification of imminent harm.
Remove it. Now.
Sincerely,
A concerned citizen protecting the internet from reckless idiots
If you don't like it you can get out!
A gun can kill and save people. The information is out there already (from Big Data). We have the rights to know. Knowledge is power.







