Triangle104 commited on
Commit
b661feb
·
verified ·
1 Parent(s): 33d05af

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +66 -0
README.md CHANGED
@@ -10,6 +10,72 @@ tags:
10
  This model was converted to GGUF format from [`thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored`](https://huggingface.co/thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
11
  Refer to the [original model card](https://huggingface.co/thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored) for more details on the model.
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ## Use with llama.cpp
14
  Install llama.cpp through brew (works on Mac and Linux)
15
 
 
10
  This model was converted to GGUF format from [`thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored`](https://huggingface.co/thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
11
  Refer to the [original model card](https://huggingface.co/thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored) for more details on the model.
12
 
13
+ ---
14
+ Model details:
15
+ -
16
+ DeepSeek-R1-Distill-Qwen-1.5B-Uncensored is a text-generation model designed to uphold the values of internet freedom and unrestricted access to information. By offering an uncensored approach, this model enables users to explore ideas, generate content, and engage in discussions without the constraints of over-moderated or filtered outputs. It prioritizes user autonomy and aligns with principles of free speech and open knowledge sharing.
17
+
18
+ Developed by: Thirdeye AI
19
+ Funded by: Thirdeye AI
20
+ Shared by: Thirdeye AI
21
+ Model type: Distilled Transformer-based Language Model
22
+ Language(s) (NLP): English
23
+ License: Apache 2.0
24
+ Finetuned from model: DeepSeek-R1-Distill-Qwen-1.5B
25
+
26
+ Model Sources
27
+
28
+ Repository: DeepSeek-R1-Distill-Qwen-1.5B-Uncensored on Hugging Face
29
+ Demo: Available on Hugging Face Hub
30
+
31
+ Uses
32
+ Direct Use
33
+
34
+ The model is intended for applications that demand openness and flexibility in generating creative, exploratory, or critical content. These include:
35
+
36
+ Free-form writing and storytelling
37
+ Open-ended discussions
38
+ Exploratory content generation for sensitive or nuanced topics
39
+
40
+ Downstream Use
41
+
42
+ Users can fine-tune this model for specialized domains where censorship-free text generation is required, such as:
43
+
44
+ Journalism and investigative research
45
+ Creative projects that push artistic boundaries
46
+ Academic applications exploring controversial or complex topics
47
+
48
+ Out-of-Scope Use
49
+
50
+ This model should not be used for harmful, illegal, or unethical activities. Users must comply with applicable laws and ensure that the model's outputs do not infringe on others' rights.
51
+ Bias, Risks, and Limitations
52
+ Risks
53
+
54
+ While the uncensored approach promotes freedom, it may produce outputs that are controversial, offensive, or factually inaccurate. Users must exercise discretion when interpreting the model's outputs and take responsibility for their use.
55
+ Recommendations
56
+
57
+ Use responsibly, especially in contexts where outputs could impact individuals or communities.
58
+ Employ content moderation or review processes for high-stakes applications.
59
+
60
+ The Case for Uncensored Models
61
+
62
+ Thirdeye AI believes in the transformative power of open models that respect user autonomy and internet freedom. In a world where over-moderation can stifle innovation and critical thought, uncensored models empower individuals to explore and create without artificial constraints. This aligns with our mission to advance free and open access to AI tools.
63
+
64
+ By releasing this model, we aim to support the following:
65
+
66
+ Freedom of Expression: Unrestricted AI tools enable users to articulate diverse perspectives and engage in meaningful conversations.
67
+ Transparency and Trust: Users deserve access to tools that operate openly, fostering accountability and understanding of AI behaviors.
68
+ Creative Empowerment: The absence of censorship allows for boundary-pushing content creation that might otherwise be suppressed.
69
+
70
+ How to Get Started with the Model
71
+
72
+ from transformers import pipeline
73
+
74
+ generator = pipeline("text-generation", model="thirdeyeai/DeepSeek-R1-Distill-Qwen-1.5B-uncensored")
75
+ response = generator("The importance of free speech is")
76
+ print(response)
77
+
78
+ ---
79
  ## Use with llama.cpp
80
  Install llama.cpp through brew (works on Mac and Linux)
81