Text Generation
Transformers
Safetensors
qwen3_moe
Neuron-46x4B-Instruct
Neura Tech AI
conversational
Instructions to use Neura-Tech-AI/Neuron-46x4B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neura-Tech-AI/Neuron-46x4B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Neura-Tech-AI/Neuron-46x4B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("Neura-Tech-AI/Neuron-46x4B") model = AutoModelForCausalLM.from_pretrained("Neura-Tech-AI/Neuron-46x4B", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Neura-Tech-AI/Neuron-46x4B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Neura-Tech-AI/Neuron-46x4B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Neura-Tech-AI/Neuron-46x4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Neura-Tech-AI/Neuron-46x4B
- SGLang
How to use Neura-Tech-AI/Neuron-46x4B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Neura-Tech-AI/Neuron-46x4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Neura-Tech-AI/Neuron-46x4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Neura-Tech-AI/Neuron-46x4B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Neura-Tech-AI/Neuron-46x4B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Neura-Tech-AI/Neuron-46x4B with Docker Model Runner:
docker model run hf.co/Neura-Tech-AI/Neuron-46x4B
Upload mergekit_moe_config.yml with huggingface_hub
Browse files- mergekit_moe_config.yml +557 -0
mergekit_moe_config.yml
ADDED
|
@@ -0,0 +1,557 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
base_model: Neura-Tech-AI/Neuron-4B-Instruct
|
| 2 |
+
gate_mode: hidden
|
| 3 |
+
dtype: bfloat16
|
| 4 |
+
num_local_experts: 6
|
| 5 |
+
|
| 6 |
+
experts:
|
| 7 |
+
- source_model: Neura-Tech-AI/Neuron-4B-Instruct
|
| 8 |
+
positive_prompts:
|
| 9 |
+
- chat
|
| 10 |
+
- conversation
|
| 11 |
+
- general
|
| 12 |
+
- assistant
|
| 13 |
+
- help
|
| 14 |
+
- question
|
| 15 |
+
- answer
|
| 16 |
+
- support
|
| 17 |
+
|
| 18 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 19 |
+
positive_prompts:
|
| 20 |
+
- code
|
| 21 |
+
- programming
|
| 22 |
+
- python
|
| 23 |
+
- javascript
|
| 24 |
+
- java
|
| 25 |
+
- cpp
|
| 26 |
+
- rust
|
| 27 |
+
- go
|
| 28 |
+
- sql
|
| 29 |
+
|
| 30 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 31 |
+
positive_prompts:
|
| 32 |
+
- math
|
| 33 |
+
- calculus
|
| 34 |
+
- algebra
|
| 35 |
+
- geometry
|
| 36 |
+
- trigonometry
|
| 37 |
+
- linear algebra
|
| 38 |
+
- differential
|
| 39 |
+
- integral
|
| 40 |
+
- equation
|
| 41 |
+
|
| 42 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 43 |
+
positive_prompts:
|
| 44 |
+
- logic
|
| 45 |
+
- reasoning
|
| 46 |
+
- deduction
|
| 47 |
+
- induction
|
| 48 |
+
- inference
|
| 49 |
+
- puzzle
|
| 50 |
+
- riddle
|
| 51 |
+
- brain teaser
|
| 52 |
+
- critical thinking
|
| 53 |
+
|
| 54 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 55 |
+
positive_prompts:
|
| 56 |
+
- physics
|
| 57 |
+
- mechanics
|
| 58 |
+
- thermodynamics
|
| 59 |
+
- electromagnetism
|
| 60 |
+
- quantum
|
| 61 |
+
- relativity
|
| 62 |
+
- optics
|
| 63 |
+
- acoustics
|
| 64 |
+
- fluid dynamics
|
| 65 |
+
|
| 66 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 67 |
+
positive_prompts:
|
| 68 |
+
- chemistry
|
| 69 |
+
- organic
|
| 70 |
+
- inorganic
|
| 71 |
+
- biochemistry
|
| 72 |
+
- molecular
|
| 73 |
+
- atomic
|
| 74 |
+
- periodic
|
| 75 |
+
- reaction
|
| 76 |
+
- synthesis
|
| 77 |
+
|
| 78 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 79 |
+
positive_prompts:
|
| 80 |
+
- biology
|
| 81 |
+
- genetics
|
| 82 |
+
- evolution
|
| 83 |
+
- ecology
|
| 84 |
+
- microbiology
|
| 85 |
+
- botany
|
| 86 |
+
- zoology
|
| 87 |
+
- anatomy
|
| 88 |
+
- physiology
|
| 89 |
+
|
| 90 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 91 |
+
positive_prompts:
|
| 92 |
+
- algorithm
|
| 93 |
+
- data structure
|
| 94 |
+
- complexity
|
| 95 |
+
- optimization
|
| 96 |
+
- recursion
|
| 97 |
+
- sorting
|
| 98 |
+
- searching
|
| 99 |
+
- graph
|
| 100 |
+
- tree
|
| 101 |
+
|
| 102 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 103 |
+
positive_prompts:
|
| 104 |
+
- statistics
|
| 105 |
+
- probability
|
| 106 |
+
- regression
|
| 107 |
+
- correlation
|
| 108 |
+
- distribution
|
| 109 |
+
- variance
|
| 110 |
+
- hypothesis
|
| 111 |
+
- confidence
|
| 112 |
+
- bayesian
|
| 113 |
+
|
| 114 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 115 |
+
positive_prompts:
|
| 116 |
+
- machine learning
|
| 117 |
+
- deep learning
|
| 118 |
+
- neural network
|
| 119 |
+
- transformer
|
| 120 |
+
- attention
|
| 121 |
+
- gradient
|
| 122 |
+
- backpropagation
|
| 123 |
+
- fine-tune
|
| 124 |
+
- embedding
|
| 125 |
+
|
| 126 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 127 |
+
positive_prompts:
|
| 128 |
+
- ai
|
| 129 |
+
- llm
|
| 130 |
+
- nlp
|
| 131 |
+
- tokenizer
|
| 132 |
+
- prompt
|
| 133 |
+
- inference
|
| 134 |
+
- training
|
| 135 |
+
- evaluation
|
| 136 |
+
- benchmark
|
| 137 |
+
|
| 138 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 139 |
+
positive_prompts:
|
| 140 |
+
- data science
|
| 141 |
+
- analytics
|
| 142 |
+
- visualization
|
| 143 |
+
- pandas
|
| 144 |
+
- numpy
|
| 145 |
+
- scikit
|
| 146 |
+
- matplotlib
|
| 147 |
+
- seaborn
|
| 148 |
+
- tableau
|
| 149 |
+
|
| 150 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 151 |
+
positive_prompts:
|
| 152 |
+
- cybersecurity
|
| 153 |
+
- encryption
|
| 154 |
+
- authentication
|
| 155 |
+
- firewall
|
| 156 |
+
- malware
|
| 157 |
+
- ransomware
|
| 158 |
+
- zero trust
|
| 159 |
+
- vpn
|
| 160 |
+
- cloud
|
| 161 |
+
|
| 162 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 163 |
+
positive_prompts:
|
| 164 |
+
- networking
|
| 165 |
+
- tcp/ip
|
| 166 |
+
- routing
|
| 167 |
+
- dns
|
| 168 |
+
- http
|
| 169 |
+
- ssh
|
| 170 |
+
- docker
|
| 171 |
+
- kubernetes
|
| 172 |
+
- devops
|
| 173 |
+
|
| 174 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 175 |
+
positive_prompts:
|
| 176 |
+
- economics
|
| 177 |
+
- finance
|
| 178 |
+
- accounting
|
| 179 |
+
- investment
|
| 180 |
+
- stock
|
| 181 |
+
- portfolio
|
| 182 |
+
- dividend
|
| 183 |
+
- hedging
|
| 184 |
+
- arbitrage
|
| 185 |
+
|
| 186 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 187 |
+
positive_prompts:
|
| 188 |
+
- business
|
| 189 |
+
- marketing
|
| 190 |
+
- management
|
| 191 |
+
- strategy
|
| 192 |
+
- growth
|
| 193 |
+
- customer
|
| 194 |
+
- revenue
|
| 195 |
+
- roi
|
| 196 |
+
- sales
|
| 197 |
+
|
| 198 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 199 |
+
positive_prompts:
|
| 200 |
+
- research
|
| 201 |
+
- methodology
|
| 202 |
+
- literature review
|
| 203 |
+
- peer review
|
| 204 |
+
- citation
|
| 205 |
+
- publication
|
| 206 |
+
- academic
|
| 207 |
+
- thesis
|
| 208 |
+
- grant
|
| 209 |
+
|
| 210 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 211 |
+
positive_prompts:
|
| 212 |
+
- engineering
|
| 213 |
+
- mechanical
|
| 214 |
+
- electrical
|
| 215 |
+
- civil
|
| 216 |
+
- robotics
|
| 217 |
+
- control
|
| 218 |
+
- signal
|
| 219 |
+
- embedded
|
| 220 |
+
- aerospace
|
| 221 |
+
|
| 222 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 223 |
+
positive_prompts:
|
| 224 |
+
- medicine
|
| 225 |
+
- clinical
|
| 226 |
+
- diagnosis
|
| 227 |
+
- treatment
|
| 228 |
+
- surgery
|
| 229 |
+
- radiology
|
| 230 |
+
- cardiology
|
| 231 |
+
- neurology
|
| 232 |
+
- oncology
|
| 233 |
+
|
| 234 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 235 |
+
positive_prompts:
|
| 236 |
+
- astronomy
|
| 237 |
+
- cosmology
|
| 238 |
+
- astrophysics
|
| 239 |
+
- galaxy
|
| 240 |
+
- black hole
|
| 241 |
+
- planet
|
| 242 |
+
- orbit
|
| 243 |
+
- telescope
|
| 244 |
+
- nebula
|
| 245 |
+
|
| 246 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 247 |
+
positive_prompts:
|
| 248 |
+
- environment
|
| 249 |
+
- sustainability
|
| 250 |
+
- climate
|
| 251 |
+
- ecosystem
|
| 252 |
+
- biodiversity
|
| 253 |
+
- conservation
|
| 254 |
+
- renewable
|
| 255 |
+
- solar
|
| 256 |
+
- wind
|
| 257 |
+
- hydro
|
| 258 |
+
|
| 259 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 260 |
+
positive_prompts:
|
| 261 |
+
- psychology
|
| 262 |
+
- cognition
|
| 263 |
+
- behavior
|
| 264 |
+
- emotion
|
| 265 |
+
- memory
|
| 266 |
+
- learning
|
| 267 |
+
- mental
|
| 268 |
+
- therapy
|
| 269 |
+
- personality
|
| 270 |
+
|
| 271 |
+
- source_model: Qwen/Qwen3-4B-Thinking-2507
|
| 272 |
+
positive_prompts:
|
| 273 |
+
- philosophy
|
| 274 |
+
- ethics
|
| 275 |
+
- metaphysics
|
| 276 |
+
- epistemology
|
| 277 |
+
- ontology
|
| 278 |
+
- virtue
|
| 279 |
+
- morality
|
| 280 |
+
- existence
|
| 281 |
+
- consciousness
|
| 282 |
+
|
| 283 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 284 |
+
positive_prompts:
|
| 285 |
+
- creative
|
| 286 |
+
- write
|
| 287 |
+
- story
|
| 288 |
+
- narrative
|
| 289 |
+
- fiction
|
| 290 |
+
- poetry
|
| 291 |
+
- essay
|
| 292 |
+
- dialogue
|
| 293 |
+
- character
|
| 294 |
+
|
| 295 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 296 |
+
positive_prompts:
|
| 297 |
+
- translate
|
| 298 |
+
- language
|
| 299 |
+
- english
|
| 300 |
+
- french
|
| 301 |
+
- spanish
|
| 302 |
+
- german
|
| 303 |
+
- chinese
|
| 304 |
+
- japanese
|
| 305 |
+
- arabic
|
| 306 |
+
- hindi
|
| 307 |
+
|
| 308 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 309 |
+
positive_prompts:
|
| 310 |
+
- summarize
|
| 311 |
+
- paraphrase
|
| 312 |
+
- condense
|
| 313 |
+
- digest
|
| 314 |
+
- shorten
|
| 315 |
+
- main idea
|
| 316 |
+
- key points
|
| 317 |
+
- outline
|
| 318 |
+
- abstract
|
| 319 |
+
|
| 320 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 321 |
+
positive_prompts:
|
| 322 |
+
- explain
|
| 323 |
+
- tutorial
|
| 324 |
+
- guide
|
| 325 |
+
- walkthrough
|
| 326 |
+
- step-by-step
|
| 327 |
+
- beginner
|
| 328 |
+
- advanced
|
| 329 |
+
- how to
|
| 330 |
+
- instruction
|
| 331 |
+
|
| 332 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 333 |
+
positive_prompts:
|
| 334 |
+
- education
|
| 335 |
+
- teach
|
| 336 |
+
- learn
|
| 337 |
+
- lecture
|
| 338 |
+
- lesson
|
| 339 |
+
- homework
|
| 340 |
+
- quiz
|
| 341 |
+
- exam
|
| 342 |
+
- grade
|
| 343 |
+
|
| 344 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 345 |
+
positive_prompts:
|
| 346 |
+
- email
|
| 347 |
+
- letter
|
| 348 |
+
- memo
|
| 349 |
+
- professional
|
| 350 |
+
- formal
|
| 351 |
+
- informal
|
| 352 |
+
- greeting
|
| 353 |
+
- signature
|
| 354 |
+
- subject
|
| 355 |
+
|
| 356 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 357 |
+
positive_prompts:
|
| 358 |
+
- article
|
| 359 |
+
- blog
|
| 360 |
+
- post
|
| 361 |
+
- seo
|
| 362 |
+
- headline
|
| 363 |
+
- introduction
|
| 364 |
+
- conclusion
|
| 365 |
+
- call to action
|
| 366 |
+
|
| 367 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 368 |
+
positive_prompts:
|
| 369 |
+
- documentation
|
| 370 |
+
- manual
|
| 371 |
+
- api
|
| 372 |
+
- reference
|
| 373 |
+
- quick start
|
| 374 |
+
- installation
|
| 375 |
+
- configuration
|
| 376 |
+
- usage
|
| 377 |
+
- faq
|
| 378 |
+
|
| 379 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 380 |
+
positive_prompts:
|
| 381 |
+
- report
|
| 382 |
+
- analysis
|
| 383 |
+
- finding
|
| 384 |
+
- recommendation
|
| 385 |
+
- executive summary
|
| 386 |
+
- chart
|
| 387 |
+
- graph
|
| 388 |
+
- table
|
| 389 |
+
- appendix
|
| 390 |
+
|
| 391 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 392 |
+
positive_prompts:
|
| 393 |
+
- grammar
|
| 394 |
+
- punctuation
|
| 395 |
+
- spelling
|
| 396 |
+
- syntax
|
| 397 |
+
- tense
|
| 398 |
+
- preposition
|
| 399 |
+
- conjunction
|
| 400 |
+
- clause
|
| 401 |
+
- sentence
|
| 402 |
+
|
| 403 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 404 |
+
positive_prompts:
|
| 405 |
+
- proofreading
|
| 406 |
+
- editing
|
| 407 |
+
- revise
|
| 408 |
+
- polish
|
| 409 |
+
- refine
|
| 410 |
+
- copyedit
|
| 411 |
+
- style
|
| 412 |
+
- clarity
|
| 413 |
+
- conciseness
|
| 414 |
+
|
| 415 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 416 |
+
positive_prompts:
|
| 417 |
+
- history
|
| 418 |
+
- civilization
|
| 419 |
+
- revolution
|
| 420 |
+
- war
|
| 421 |
+
- renaissance
|
| 422 |
+
- enlightenment
|
| 423 |
+
- industrial
|
| 424 |
+
- colonial
|
| 425 |
+
- cold war
|
| 426 |
+
|
| 427 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 428 |
+
positive_prompts:
|
| 429 |
+
- geography
|
| 430 |
+
- map
|
| 431 |
+
- country
|
| 432 |
+
- capital
|
| 433 |
+
- city
|
| 434 |
+
- region
|
| 435 |
+
- continent
|
| 436 |
+
- ocean
|
| 437 |
+
- mountain
|
| 438 |
+
|
| 439 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 440 |
+
positive_prompts:
|
| 441 |
+
- culture
|
| 442 |
+
- tradition
|
| 443 |
+
- customs
|
| 444 |
+
- festival
|
| 445 |
+
- cuisine
|
| 446 |
+
- music
|
| 447 |
+
- art
|
| 448 |
+
- dance
|
| 449 |
+
- fashion
|
| 450 |
+
|
| 451 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 452 |
+
positive_prompts:
|
| 453 |
+
- politics
|
| 454 |
+
- government
|
| 455 |
+
- democracy
|
| 456 |
+
- election
|
| 457 |
+
- policy
|
| 458 |
+
- parliament
|
| 459 |
+
- constitution
|
| 460 |
+
- rights
|
| 461 |
+
- law
|
| 462 |
+
|
| 463 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 464 |
+
positive_prompts:
|
| 465 |
+
- travel
|
| 466 |
+
- tourism
|
| 467 |
+
- destination
|
| 468 |
+
- itinerary
|
| 469 |
+
- accommodation
|
| 470 |
+
- sightseeing
|
| 471 |
+
- cuisine
|
| 472 |
+
- adventure
|
| 473 |
+
- guide
|
| 474 |
+
|
| 475 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 476 |
+
positive_prompts:
|
| 477 |
+
- architecture
|
| 478 |
+
- design
|
| 479 |
+
- planning
|
| 480 |
+
- blueprint
|
| 481 |
+
- structure
|
| 482 |
+
- urban
|
| 483 |
+
- interior
|
| 484 |
+
- landscape
|
| 485 |
+
- sustainable
|
| 486 |
+
|
| 487 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 488 |
+
positive_prompts:
|
| 489 |
+
- gaming
|
| 490 |
+
- minecraft
|
| 491 |
+
- rpg
|
| 492 |
+
- strategy
|
| 493 |
+
- multiplayer
|
| 494 |
+
- modding
|
| 495 |
+
- server
|
| 496 |
+
- community
|
| 497 |
+
- moderation
|
| 498 |
+
|
| 499 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 500 |
+
positive_prompts:
|
| 501 |
+
- roleplay
|
| 502 |
+
- scenario
|
| 503 |
+
- character
|
| 504 |
+
- dialogue
|
| 505 |
+
- immersive
|
| 506 |
+
- worldbuilding
|
| 507 |
+
- lore
|
| 508 |
+
- backstory
|
| 509 |
+
- action
|
| 510 |
+
|
| 511 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 512 |
+
positive_prompts:
|
| 513 |
+
- brainstorm
|
| 514 |
+
- idea
|
| 515 |
+
- concept
|
| 516 |
+
- innovation
|
| 517 |
+
- prototype
|
| 518 |
+
- solution
|
| 519 |
+
- problem
|
| 520 |
+
- challenge
|
| 521 |
+
- opportunity
|
| 522 |
+
|
| 523 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 524 |
+
positive_prompts:
|
| 525 |
+
- productivity
|
| 526 |
+
- workflow
|
| 527 |
+
- automation
|
| 528 |
+
- project
|
| 529 |
+
- milestone
|
| 530 |
+
- deadline
|
| 531 |
+
- team
|
| 532 |
+
- collaboration
|
| 533 |
+
- tool
|
| 534 |
+
|
| 535 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 536 |
+
positive_prompts:
|
| 537 |
+
- personal
|
| 538 |
+
- life
|
| 539 |
+
- health
|
| 540 |
+
- fitness
|
| 541 |
+
- nutrition
|
| 542 |
+
- wellness
|
| 543 |
+
- relationship
|
| 544 |
+
- career
|
| 545 |
+
- success
|
| 546 |
+
|
| 547 |
+
- source_model: Qwen/Qwen3-4B-Instruct-2507
|
| 548 |
+
positive_prompts:
|
| 549 |
+
- motivation
|
| 550 |
+
- inspiration
|
| 551 |
+
- mindset
|
| 552 |
+
- confidence
|
| 553 |
+
- positivity
|
| 554 |
+
- meditation
|
| 555 |
+
- mindfulness
|
| 556 |
+
- gratitude
|
| 557 |
+
- reflection
|