alexgusevski commited on
Commit
ec833c7
·
verified ·
1 Parent(s): 3ec2ee9

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +76 -0
README.md ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ base_model: DavidAU/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus
4
+ datasets:
5
+ - TeichAI/claude-4.5-opus-high-reasoning-250x
6
+ language:
7
+ - en
8
+ - fr
9
+ - de
10
+ - es
11
+ - it
12
+ - pt
13
+ - ru
14
+ - zh
15
+ - ja
16
+ tags:
17
+ - uncensored
18
+ - heretic
19
+ - abliterated
20
+ - finetune
21
+ - creative
22
+ - creative writing
23
+ - fiction writing
24
+ - plot generation
25
+ - sub-plot generation
26
+ - story generation
27
+ - scene continue
28
+ - storytelling
29
+ - fiction story
30
+ - science fiction
31
+ - romance
32
+ - all genres
33
+ - story
34
+ - writing
35
+ - vivid prose
36
+ - vivid writing
37
+ - fiction
38
+ - roleplaying
39
+ - bfloat16
40
+ - swearing
41
+ - rp
42
+ - mistral nemo
43
+ - nemo
44
+ - horror
45
+ - unsloth
46
+ - context 128k-256k
47
+ - mlx
48
+ - mlx-my-repo
49
+ pipeline_tag: text-generation
50
+ ---
51
+
52
+ # alexgusevski/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus-mlx-2Bit
53
+
54
+ The Model [alexgusevski/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus-mlx-2Bit](https://huggingface.co/alexgusevski/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus-mlx-2Bit) was converted to MLX format from [DavidAU/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus](https://huggingface.co/DavidAU/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus) using mlx-lm version **0.29.1**.
55
+
56
+ ## Use with mlx
57
+
58
+ ```bash
59
+ pip install mlx-lm
60
+ ```
61
+
62
+ ```python
63
+ from mlx_lm import load, generate
64
+
65
+ model, tokenizer = load("alexgusevski/Mistral-Nemo-Inst-2407-12B-Thinking-Uncensored-HERETIC-HI-Claude-Opus-mlx-2Bit")
66
+
67
+ prompt="hello"
68
+
69
+ if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
70
+ messages = [{"role": "user", "content": prompt}]
71
+ prompt = tokenizer.apply_chat_template(
72
+ messages, tokenize=False, add_generation_prompt=True
73
+ )
74
+
75
+ response = generate(model, tokenizer, prompt=prompt, verbose=True)
76
+ ```