alexgusevski commited on
Commit
981766f
·
verified ·
1 Parent(s): 7f3317a

Upload README.md with huggingface_hub

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