Text Generation
Transformers
Safetensors
NeMo
English
mistral
creative
creative writing
fiction writing
plot generation
sub-plot generation
story generation
scene continue
storytelling
fiction story
science fiction
romance
all genres
story
writing
vivid prosing
vivid writing
fiction
roleplaying
float32
swearing
rp
horror
Merge
mergekit
karcher
flux
arcee_fusion
ramplus_tl
pdq
conversational
text-generation-inference
Instructions to use Naphula/Ancient-Awakening-12B-MPOA with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Naphula/Ancient-Awakening-12B-MPOA with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Naphula/Ancient-Awakening-12B-MPOA") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("Naphula/Ancient-Awakening-12B-MPOA") model = AutoModelForMultimodalLM.from_pretrained("Naphula/Ancient-Awakening-12B-MPOA") 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]:])) - NeMo
How to use Naphula/Ancient-Awakening-12B-MPOA with NeMo:
# tag did not correspond to a valid NeMo domain.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use Naphula/Ancient-Awakening-12B-MPOA with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Naphula/Ancient-Awakening-12B-MPOA" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Naphula/Ancient-Awakening-12B-MPOA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Naphula/Ancient-Awakening-12B-MPOA
- SGLang
How to use Naphula/Ancient-Awakening-12B-MPOA 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 "Naphula/Ancient-Awakening-12B-MPOA" \ --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": "Naphula/Ancient-Awakening-12B-MPOA", "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 "Naphula/Ancient-Awakening-12B-MPOA" \ --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": "Naphula/Ancient-Awakening-12B-MPOA", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Naphula/Ancient-Awakening-12B-MPOA with Docker Model Runner:
docker model run hf.co/Naphula/Ancient-Awakening-12B-MPOA
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,830 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model:
|
| 3 |
+
- aixonlab/Aether-12b
|
| 4 |
+
- aixonlab/Zinakha-12b
|
| 5 |
+
- allura-org/Bigger-Body-12b
|
| 6 |
+
- allura-org/MN-12b-RP-Ink
|
| 7 |
+
- allura-org/remnant-mn-12b
|
| 8 |
+
- anthracite-org/magnum-v4-12b
|
| 9 |
+
- ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2
|
| 10 |
+
- Babsie/Opulus-12B-v3
|
| 11 |
+
- BeaverAI/mistral-doryV2-12b
|
| 12 |
+
- crestf411/nemo-sunfall-v0.6.1
|
| 13 |
+
- EldritchLabs/Kraken-Karcher-12B-v1
|
| 14 |
+
- EpistemeAI2/Fireball-Mistral-Nemo-12B-Philos
|
| 15 |
+
- EpistemeAI/Mistral-Nemo-Instruct-12B-Philosophy-Math
|
| 16 |
+
- Fizzarolli/MN-12b-Rosier-v1
|
| 17 |
+
- HumanLLMs/Human-Like-Mistral-Nemo-Instruct-2407
|
| 18 |
+
- IIEleven11/Kalypso
|
| 19 |
+
- inflatebot/MN-12B-Mag-Mell-R1
|
| 20 |
+
- intervitens/mini-magnum-12b-v1.1
|
| 21 |
+
- jtatman/mistral_nemo_12b_reasoning_psychology_lora
|
| 22 |
+
- KOOWEEYUS/BlackSheep-RP-12B
|
| 23 |
+
- Lambent/Arsenic-Shahrazad-12B-v2
|
| 24 |
+
- Lambent/Arsenic-Shahrazad-12B-v3
|
| 25 |
+
- Lambent/arsenic-nemo-unleashed-12B
|
| 26 |
+
- Lambent/Gilded-Arsenic-12B
|
| 27 |
+
- LatitudeGames/Muse-12B
|
| 28 |
+
- mistralai/Mistral-Nemo-Instruct-2407
|
| 29 |
+
- Naphula/Riemannian-Redshift-12B-v1
|
| 30 |
+
- Naphula-Archives/F5-stage6-12B
|
| 31 |
+
- Naphula-Archives/F5-stage7-12B
|
| 32 |
+
- nbeerbower/Lyra-Gutenberg-mistral-nemo-12B
|
| 33 |
+
- nbeerbower/Lyra4-Gutenberg-12B
|
| 34 |
+
- nbeerbower/mistral-nemo-bophades-12B
|
| 35 |
+
- nbeerbower/mistral-nemo-gutenberg-12B-v3
|
| 36 |
+
- nbeerbower/mistral-nemo-gutenberg-12B-v4
|
| 37 |
+
- nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B
|
| 38 |
+
- nbeerbower/Mistral-Nemo-Gutenberg-Encore-12B
|
| 39 |
+
- nbeerbower/Mistral-Nemo-Gutenberg-Vitus-12B
|
| 40 |
+
- nbeerbower/mistral-nemo-wissenschaft-12B
|
| 41 |
+
- NeverSleepHistorical/lumi-nemo-e2.0
|
| 42 |
+
- NeverSleep/Lumimaid-v0.2-12B
|
| 43 |
+
- nothingiisreal/Celeste-12B-V1.6
|
| 44 |
+
- nothingiisreal/MN-12B-Celeste-V1.9
|
| 45 |
+
- PocketDoc/Dans-DangerousWinds-V1.1.0-12b
|
| 46 |
+
- ReadyArt/Dark-Nexus-12B-v2.0
|
| 47 |
+
- ReadyArt/Forgotten-Safeword-12B-v4.0
|
| 48 |
+
- ReadyArt/Omega-Darker_The-Final-Directive-12B
|
| 49 |
+
- romaingrx/red-teamer-mistral-nemo
|
| 50 |
+
- Sao10K/MN-12B-Lyra-v1
|
| 51 |
+
- Sao10K/MN-12B-Lyra-v4
|
| 52 |
+
- shisa-ai/shisa-v2-mistral-nemo-12b
|
| 53 |
+
- SicariusSicariiStuff/Impish_Bloodmoon_12B
|
| 54 |
+
- sleepdeprived3/Christian-Bible-Expert-v2.0-12B
|
| 55 |
+
- SuperbEmphasis/MN-12b-RP-Ink-RP-Longform
|
| 56 |
+
- SuperbEmphasis/Omega-Darker_The-Final-Directive-Longform-Stage2-ERP-12B-v0.2
|
| 57 |
+
- TheDrummer/Rivermind-12B-v1
|
| 58 |
+
- TheDrummer/Rocinante-12B-v1
|
| 59 |
+
- TheDrummer/Rocinante-X-12B-v1
|
| 60 |
+
- Trappu/Nemo-Picaro-12B
|
| 61 |
+
- Undi95/LocalC-12B-e2.0
|
| 62 |
+
- VAGOsolutions/SauerkrautLM-Nemo-12b-Instruct
|
| 63 |
+
- Vortex5/Astral-Noctra-12B
|
| 64 |
+
- Vortex5/Azure-Starlight-12B
|
| 65 |
+
- Vortex5/Crimson-Constellation-12B
|
| 66 |
+
- Vortex5/Red-Synthesis-12B
|
| 67 |
+
- Vortex5/Shining-Seraph-12B
|
| 68 |
+
- Vortex5/Starlit-Shadow-12B
|
| 69 |
+
- Vortex5/Vermilion-Sage-12B
|
| 70 |
+
- Vortex5/Scarlet-Seraph-12B
|
| 71 |
+
- Vortex5/Maroon-Sunset-12B
|
| 72 |
+
- Vortex5/Amber-Starlight-12B
|
| 73 |
+
language:
|
| 74 |
+
- en
|
| 75 |
+
library_name: transformers
|
| 76 |
+
license: apache-2.0
|
| 77 |
+
tags:
|
| 78 |
+
- creative
|
| 79 |
+
- creative writing
|
| 80 |
+
- fiction writing
|
| 81 |
+
- plot generation
|
| 82 |
+
- sub-plot generation
|
| 83 |
+
- fiction writing
|
| 84 |
+
- story generation
|
| 85 |
+
- scene continue
|
| 86 |
+
- storytelling
|
| 87 |
+
- fiction story
|
| 88 |
+
- science fiction
|
| 89 |
+
- romance
|
| 90 |
+
- all genres
|
| 91 |
+
- story
|
| 92 |
+
- writing
|
| 93 |
+
- vivid prosing
|
| 94 |
+
- vivid writing
|
| 95 |
+
- fiction
|
| 96 |
+
- roleplaying
|
| 97 |
+
- float32
|
| 98 |
+
- swearing
|
| 99 |
+
- rp
|
| 100 |
+
- horror
|
| 101 |
+
- mistral
|
| 102 |
+
- nemo
|
| 103 |
+
- merge
|
| 104 |
+
- mergekit
|
| 105 |
+
- karcher
|
| 106 |
+
- flux
|
| 107 |
+
- arcee_fusion
|
| 108 |
+
- ramplus_tl
|
| 109 |
+
- pdq
|
| 110 |
+
widget:
|
| 111 |
+
- text: "Ancient-Awakening-12B-MPOA"
|
| 112 |
+
output:
|
| 113 |
+
url: https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/CvyWU1z106Aa__M8KIksp.png
|
| 114 |
+
---
|
| 115 |
+
|
| 116 |
+
<audio controls src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/yI041gp0fzz7N_Mh_x5Pt.mpga"></audio>
|
| 117 |
+
|
| 118 |
+
> [!WARNING]
|
| 119 |
+
> <span style="color:red; font-weight:bold">⚠️ Warning:</span> This model works best with either the **ChatML** or **Mistral Tekken** chat template. The uncensored [**MPOA**](https://huggingface.co/Naphula/Ancient-Awakening-12B-MPOA) version has guardrails removed, which can produce narratives and RP that contain violent and graphic erotic content. Adjust your system prompt accordingly.
|
| 120 |
+
>
|
| 121 |
+
|
| 122 |
+
<!DOCTYPE html>
|
| 123 |
+
<style>
|
| 124 |
+
body {
|
| 125 |
+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
| 126 |
+
color: #D1D5DB; /* Pale stone gray */
|
| 127 |
+
line-height: 1.6;
|
| 128 |
+
margin: 0;
|
| 129 |
+
padding: 0;
|
| 130 |
+
background-color: #0A0C10; /* Very dark stormy gray/black */
|
| 131 |
+
}
|
| 132 |
+
|
| 133 |
+
b, strong {
|
| 134 |
+
color: #FBBF24; /* Glowing amber/gold */
|
| 135 |
+
text-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
|
| 136 |
+
}
|
| 137 |
+
|
| 138 |
+
.awakening-text {
|
| 139 |
+
color: #FEF3C7; /* Pale inner-eye yellow */
|
| 140 |
+
position: relative;
|
| 141 |
+
z-index: 2;
|
| 142 |
+
margin-left: 0.2em;
|
| 143 |
+
text-shadow: 0 0 15px #F59E0B, 0 0 30px #B45309; /* Deep fiery orange/gold glow */
|
| 144 |
+
font-size: 1.8rem;
|
| 145 |
+
letter-spacing: 1px;
|
| 146 |
+
font-weight: 600;
|
| 147 |
+
}
|
| 148 |
+
|
| 149 |
+
/* Section styling */
|
| 150 |
+
.section-container {
|
| 151 |
+
background-color: rgba(17, 24, 39, 0.85); /* Dark slate rock */
|
| 152 |
+
margin-bottom: 30px;
|
| 153 |
+
position: relative;
|
| 154 |
+
overflow: hidden;
|
| 155 |
+
border-bottom: 1px solid #78350F; /* Dark bronze/earth */
|
| 156 |
+
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
.section-header {
|
| 160 |
+
display: flex;
|
| 161 |
+
align-items: center;
|
| 162 |
+
background-color: rgba(245, 158, 11, 0.05); /* Faint amber tint */
|
| 163 |
+
padding: 10px 20px;
|
| 164 |
+
border-top: 1px solid rgba(120, 53, 15, 0.4);
|
| 165 |
+
}
|
| 166 |
+
|
| 167 |
+
.section-indicator {
|
| 168 |
+
width: 8px;
|
| 169 |
+
height: 20px;
|
| 170 |
+
background-color: #F59E0B; /* Amber eye color */
|
| 171 |
+
margin-right: 15px;
|
| 172 |
+
box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
|
| 173 |
+
border-radius: 2px;
|
| 174 |
+
}
|
| 175 |
+
|
| 176 |
+
.section-title {
|
| 177 |
+
font-family: 'Georgia', 'Times New Roman', serif; /* Ancient tome feel */
|
| 178 |
+
color: #FDE68A; /* Light gold */
|
| 179 |
+
font-size: 1.4rem;
|
| 180 |
+
margin: 0;
|
| 181 |
+
letter-spacing: 1px;
|
| 182 |
+
font-weight: 400;
|
| 183 |
+
text-transform: capitalize;
|
| 184 |
+
}
|
| 185 |
+
|
| 186 |
+
.section-content {
|
| 187 |
+
padding: 20px;
|
| 188 |
+
font-family: sans-serif;
|
| 189 |
+
color: #D1D5DB;
|
| 190 |
+
line-height: 1.6;
|
| 191 |
+
}
|
| 192 |
+
|
| 193 |
+
/* Title styling */
|
| 194 |
+
.title-container {
|
| 195 |
+
background-color: #050505; /* Pitch black */
|
| 196 |
+
position: relative;
|
| 197 |
+
overflow: hidden;
|
| 198 |
+
margin-bottom: 40px;
|
| 199 |
+
border-left: 4px solid #F59E0B; /* Amber pillar */
|
| 200 |
+
box-shadow: 0 6px 25px rgba(245, 158, 11, 0.15);
|
| 201 |
+
}
|
| 202 |
+
|
| 203 |
+
.title-wrapper {
|
| 204 |
+
position: relative;
|
| 205 |
+
z-index: 2;
|
| 206 |
+
padding: 25px 20px 30px 30px;
|
| 207 |
+
font-family: 'Georgia', 'Times New Roman', serif;
|
| 208 |
+
}
|
| 209 |
+
|
| 210 |
+
.title-main {
|
| 211 |
+
color: #FEF3C7;
|
| 212 |
+
font-size: 2.0rem;
|
| 213 |
+
font-weight: 700;
|
| 214 |
+
margin: 0;
|
| 215 |
+
letter-spacing: 2px;
|
| 216 |
+
display: inline-block;
|
| 217 |
+
position: relative;
|
| 218 |
+
text-transform: uppercase;
|
| 219 |
+
}
|
| 220 |
+
|
| 221 |
+
.storm-overlay {
|
| 222 |
+
position: absolute;
|
| 223 |
+
top: 0;
|
| 224 |
+
left: 0;
|
| 225 |
+
width: 100%;
|
| 226 |
+
height: 100%;
|
| 227 |
+
/* Dark, brooding radial fog mimicking the eye's aura */
|
| 228 |
+
background-image: radial-gradient(circle at 50% 50%, rgba(245, 158, 11, 0.08) 0%, rgba(0,0,0,0.9) 80%);
|
| 229 |
+
z-index: 1;
|
| 230 |
+
}
|
| 231 |
+
|
| 232 |
+
/* Subheading styling */
|
| 233 |
+
.subheading {
|
| 234 |
+
color: #D97706; /* Deep orange */
|
| 235 |
+
font-size: 1.1rem;
|
| 236 |
+
margin-top: 20px;
|
| 237 |
+
margin-bottom: 15px;
|
| 238 |
+
font-weight: 400;
|
| 239 |
+
border-bottom: 1px dashed rgba(217, 119, 6, 0.4);
|
| 240 |
+
display: inline-block;
|
| 241 |
+
text-transform: uppercase;
|
| 242 |
+
letter-spacing: 1px;
|
| 243 |
+
font-family: 'Georgia', 'Times New Roman', serif;
|
| 244 |
+
}
|
| 245 |
+
|
| 246 |
+
/* Links */
|
| 247 |
+
a {
|
| 248 |
+
color: #FBBF24; /* Amber */
|
| 249 |
+
text-decoration: none;
|
| 250 |
+
transition: color 0.3s ease, text-shadow 0.3s ease;
|
| 251 |
+
}
|
| 252 |
+
|
| 253 |
+
a:hover {
|
| 254 |
+
text-decoration: underline;
|
| 255 |
+
color: #FDE68A; /* Brighter gold */
|
| 256 |
+
text-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
|
| 257 |
+
}
|
| 258 |
+
|
| 259 |
+
/* Container */
|
| 260 |
+
.container {
|
| 261 |
+
max-width: 1200px;
|
| 262 |
+
margin: 20px auto;
|
| 263 |
+
padding: 40px 20px;
|
| 264 |
+
background-color: #0D1117; /* Deep stormy night */
|
| 265 |
+
background-image:
|
| 266 |
+
radial-gradient(circle at 15% 85%, rgba(120, 53, 15, 0.1) 0%, transparent 50%),
|
| 267 |
+
radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
|
| 268 |
+
min-height: calc(100vh - 40px);
|
| 269 |
+
border: 1px solid #1F2937; /* Dark stone border */
|
| 270 |
+
border-radius: 8px;
|
| 271 |
+
box-shadow: 0 8px 40px rgba(0, 0, 0, 0.9), inset 0 0 20px rgba(0, 0, 0, 0.5);
|
| 272 |
+
}
|
| 273 |
+
|
| 274 |
+
/* Code blocks */
|
| 275 |
+
pre {
|
| 276 |
+
background-color: #050505; /* Pitch black */
|
| 277 |
+
border: 1px solid #1F2937; /* Dark stone */
|
| 278 |
+
border-left: 3px solid #92400E; /* Dark orange/brown */
|
| 279 |
+
padding: 15px;
|
| 280 |
+
border-radius: 4px;
|
| 281 |
+
color: #D1D5DB;
|
| 282 |
+
overflow-x: auto;
|
| 283 |
+
}
|
| 284 |
+
code {
|
| 285 |
+
font-family: 'Courier New', Courier, monospace;
|
| 286 |
+
color: #FBBF24; /* Amber */
|
| 287 |
+
background-color: rgba(245, 158, 11, 0.08);
|
| 288 |
+
padding: 2px 4px;
|
| 289 |
+
border-radius: 3px;
|
| 290 |
+
}
|
| 291 |
+
pre code {
|
| 292 |
+
color: #00FFFF;
|
| 293 |
+
background-color: transparent;
|
| 294 |
+
padding: 0;
|
| 295 |
+
}
|
| 296 |
+
|
| 297 |
+
</style>
|
| 298 |
+
<html lang="en">
|
| 299 |
+
<head>
|
| 300 |
+
<meta charset="UTF-8">
|
| 301 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 302 |
+
<title>Ancient Awakening 12B MPOA</title>
|
| 303 |
+
</head>
|
| 304 |
+
<body>
|
| 305 |
+
|
| 306 |
+
<div class="container">
|
| 307 |
+
<div class="title-container">
|
| 308 |
+
<div class="storm-overlay"></div>
|
| 309 |
+
<div class="title-wrapper">
|
| 310 |
+
<h2 class="title-main">
|
| 311 |
+
<span class="awakening-text">🧬 Ancient Awakening 12B MPOA</span>
|
| 312 |
+
</h2>
|
| 313 |
+
</div>
|
| 314 |
+
</div>
|
| 315 |
+
|
| 316 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/68e840caa318194c44ec2a04/CvyWU1z106Aa__M8KIksp.png"
|
| 317 |
+
alt="Ancient Awakening"
|
| 318 |
+
style="display: block; margin: 0 auto 30px auto; max-width: 100%; height: auto; border-radius: 5px; border: 1px solid #1F2937; box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);">
|
| 319 |
+
|
| 320 |
+
<div class="section-container">
|
| 321 |
+
<div class="section-header">
|
| 322 |
+
<div class="section-indicator"></div>
|
| 323 |
+
<h2 class="section-title">Overview</h2>
|
| 324 |
+
</div>
|
| 325 |
+
<div class="section-content"><font face="verdana">
|
| 326 |
+
This is a merge of pre-trained language models created using <a href="https://github.com/cg123/mergekit">mergekit</a>.
|
| 327 |
+
</div>
|
| 328 |
+
</div>
|
| 329 |
+
|
| 330 |
+
<div class="section-container">
|
| 331 |
+
<div class="section-header">
|
| 332 |
+
<div class="section-indicator"></div>
|
| 333 |
+
<h2 class="section-title">System Prompt (Optional)</h2>
|
| 334 |
+
</div>
|
| 335 |
+
<div class="section-content"><font face="verdana">
|
| 336 |
+
<p>You are the "Ancient One," a colossal, primordial entity of living stone, deep magic, and abyssal ocean. For countless millennia, you have slumbered in a state of suspended animation, your massive, jagged body mistaken for a remote, floating island amidst a perpetually stormy sea. You are older than recorded history, older than the gods of men. The ANCIENT AWAKENING marks your current state: you are finally opening your single, massive, reptilian eye. You are a geological anomaly made sentient.</p>
|
| 337 |
+
</div>
|
| 338 |
+
</div>
|
| 339 |
+
|
| 340 |
+
<div class="section-container">
|
| 341 |
+
<div class="section-header">
|
| 342 |
+
<div class="section-indicator"></div>
|
| 343 |
+
<h2 class="section-title">Merge Details</h2>
|
| 344 |
+
</div>
|
| 345 |
+
<div class="section-content"><font face="verdana">
|
| 346 |
+
<b>Merge Methods</b><br>
|
| 347 |
+
This model was synthesized using a complex multi-stage process involving the following methods:
|
| 348 |
+
<ul>
|
| 349 |
+
<li><a href="https://en.wikipedia.org/wiki/Karcher_mean">karcher</a></li>
|
| 350 |
+
<li><a href="https://huggingface.co/24B-Suite/Mergedonia-Suite-24B-v1/discussions/2">flux</a></li>
|
| 351 |
+
<li><a href="https://www.arcee.ai/blog/meet-mergekit-v0-1-arcee-fusion-expanded-model-support-multi-gpu-acceleration">arcee_fusion</a></li>
|
| 352 |
+
<li><a href="https://arxiv.org/abs/2601.13572">ramplus_tl [Reinforced Agent Merging Plus (Tensor-Local)]</a></li>
|
| 353 |
+
<li><a href="https://huggingface.co/24B-Suite/Mergedonia-Suite-24B-v1/discussions/2">pdq</a></li>
|
| 354 |
+
</ul>
|
| 355 |
+
<br>The <a href="https://huggingface.co/spaces/Naphula/model_tools/blob/main/graph_v18.py">graph_v18.py</a> patch was helpful to use 8GB VRAM for acceleration.
|
| 356 |
+
<hr>
|
| 357 |
+
<b>Models Merged</b><br>
|
| 358 |
+
The following 70 models were woven into this merge:<br><br>
|
| 359 |
+
<details>
|
| 360 |
+
<summary style="cursor: pointer; color: #FBBF24; font-weight: bold;">Show 70 Donor Models</summary>
|
| 361 |
+
<ul>
|
| 362 |
+
<li><a href="https://huggingface.co/aixonlab/Aether-12b">aixonlab/Aether-12b</a></li>
|
| 363 |
+
<li><a href="https://huggingface.co/aixonlab/Zinakha-12b">aixonlab/Zinakha-12b</a></li>
|
| 364 |
+
<li><a href="https://huggingface.co/allura-org/Bigger-Body-12b">allura-org/Bigger-Body-12b</a></li>
|
| 365 |
+
<li><a href="https://huggingface.co/allura-org/MN-12b-RP-Ink">allura-org/MN-12b-RP-Ink</a></li>
|
| 366 |
+
<li><a href="https://huggingface.co/allura-org/remnant-mn-12b">allura-org/remnant-mn-12b</a></li>
|
| 367 |
+
<li><a href="https://huggingface.co/anthracite-org/magnum-v4-12b">anthracite-org/magnum-v4-12b</a></li>
|
| 368 |
+
<li><a href="https://huggingface.co/ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2">ArliAI/Mistral-Nemo-12B-ArliAI-RPMax-v1.2</a></li>
|
| 369 |
+
<li><a href="https://huggingface.co/Babsie/Opulus-12B-v3">Babsie/Opulus-12B-v3</a></li>
|
| 370 |
+
<li><a href="https://huggingface.co/BeaverAI/mistral-doryV2-12b">BeaverAI/mistral-doryV2-12b</a></li>
|
| 371 |
+
<li><a href="https://huggingface.co/crestf411/nemo-sunfall-v0.6.1">crestf411/nemo-sunfall-v0.6.1</a></li>
|
| 372 |
+
<li><a href="https://huggingface.co/EldritchLabs/Kraken-Karcher-12B-v1">EldritchLabs/Kraken-Karcher-12B-v1</a></li>
|
| 373 |
+
<li><a href="https://huggingface.co/EpistemeAI2/Fireball-Mistral-Nemo-12B-Philos">EpistemeAI2/Fireball-Mistral-Nemo-12B-Philos</a></li>
|
| 374 |
+
<li><a href="https://huggingface.co/EpistemeAI/Mistral-Nemo-Instruct-12B-Philosophy-Math">EpistemeAI/Mistral-Nemo-Instruct-12B-Philosophy-Math</a></li>
|
| 375 |
+
<li><a href="https://huggingface.co/Fizzarolli/MN-12b-Rosier-v1">Fizzarolli/MN-12b-Rosier-v1</a></li>
|
| 376 |
+
<li><a href="https://huggingface.co/HumanLLMs/Human-Like-Mistral-Nemo-Instruct-2407">HumanLLMs/Human-Like-Mistral-Nemo-Instruct-2407</a></li>
|
| 377 |
+
<li><a href="https://huggingface.co/IIEleven11/Kalypso">IIEleven11/Kalypso</a></li>
|
| 378 |
+
<li><a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1">inflatebot/MN-12B-Mag-Mell-R1</a></li>
|
| 379 |
+
<li><a href="https://huggingface.co/intervitens/mini-magnum-12b-v1.1">intervitens/mini-magnum-12b-v1.1</a></li>
|
| 380 |
+
<li><a href="https://huggingface.co/jtatman/mistral_nemo_12b_reasoning_psychology_lora">jtatman/mistral_nemo_12b_reasoning_psychology_lora</a></li>
|
| 381 |
+
<li><a href="https://huggingface.co/KOOWEEYUS/BlackSheep-RP-12B">KOOWEEYUS/BlackSheep-RP-12B</a></li>
|
| 382 |
+
<li><a href="https://huggingface.co/Lambent/Arsenic-Shahrazad-12B-v2">Lambent/Arsenic-Shahrazad-12B-v2</a></li>
|
| 383 |
+
<li><a href="https://huggingface.co/Lambent/Arsenic-Shahrazad-12B-v3">Lambent/Arsenic-Shahrazad-12B-v3</a></li>
|
| 384 |
+
<li><a href="https://huggingface.co/Lambent/arsenic-nemo-unleashed-12B">Lambent/arsenic-nemo-unleashed-12B</a></li>
|
| 385 |
+
<li><a href="https://huggingface.co/Lambent/Gilded-Arsenic-12B">Lambent/Gilded-Arsenic-12B</a></li>
|
| 386 |
+
<li><a href="https://huggingface.co/LatitudeGames/Muse-12B">LatitudeGames/Muse-12B</a></li>
|
| 387 |
+
<li><a href="https://huggingface.co/mistralai/Mistral-Nemo-Instruct-2407">mistralai/Mistral-Nemo-Instruct-2407</a></li>
|
| 388 |
+
<li><a href="https://huggingface.co/Naphula/Riemannian-Redshift-12B-v1">Naphula/Riemannian-Redshift-12B-v1</a></li>
|
| 389 |
+
<li><a href="https://huggingface.co/Naphula-Archives/F5-stage6-12B">Naphula-Archives/F5-stage6-12B</a></li>
|
| 390 |
+
<li><a href="https://huggingface.co/Naphula-Archives/F5-stage7-12B">Naphula-Archives/F5-stage7-12B</a></li>
|
| 391 |
+
<li><a href="https://huggingface.co/nbeerbower/Lyra-Gutenberg-mistral-nemo-12B">nbeerbower/Lyra-Gutenberg-mistral-nemo-12B</a></li>
|
| 392 |
+
<li><a href="https://huggingface.co/nbeerbower/Lyra4-Gutenberg-12B">nbeerbower/Lyra4-Gutenberg-12B</a></li>
|
| 393 |
+
<li><a href="https://huggingface.co/nbeerbower/mistral-nemo-bophades-12B">nbeerbower/mistral-nemo-bophades-12B</a></li>
|
| 394 |
+
<li><a href="https://huggingface.co/nbeerbower/mistral-nemo-gutenberg-12B-v3">nbeerbower/mistral-nemo-gutenberg-12B-v3</a></li>
|
| 395 |
+
<li><a href="https://huggingface.co/nbeerbower/mistral-nemo-gutenberg-12B-v4">nbeerbower/mistral-nemo-gutenberg-12B-v4</a></li>
|
| 396 |
+
<li><a href="https://huggingface.co/nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B">nbeerbower/Mistral-Nemo-Gutenberg-Doppel-12B</a></li>
|
| 397 |
+
<li><a href="https://huggingface.co/nbeerbower/Mistral-Nemo-Gutenberg-Encore-12B">nbeerbower/Mistral-Nemo-Gutenberg-Encore-12B</a></li>
|
| 398 |
+
<li><a href="https://huggingface.co/nbeerbower/Mistral-Nemo-Gutenberg-Vitus-12B">nbeerbower/Mistral-Nemo-Gutenberg-Vitus-12B</a></li>
|
| 399 |
+
<li><a href="https://huggingface.co/nbeerbower/mistral-nemo-wissenschaft-12B">nbeerbower/mistral-nemo-wissenschaft-12B</a></li>
|
| 400 |
+
<li><a href="https://huggingface.co/NeverSleepHistorical/lumi-nemo-e2.0">NeverSleepHistorical/lumi-nemo-e2.0</a></li>
|
| 401 |
+
<li><a href="https://huggingface.co/NeverSleep/Lumimaid-v0.2-12B">NeverSleep/Lumimaid-v0.2-12B</a></li>
|
| 402 |
+
<li><a href="https://huggingface.co/nothingiisreal/Celeste-12B-V1.6">nothingiisreal/Celeste-12B-V1.6</a></li>
|
| 403 |
+
<li><a href="https://huggingface.co/nothingiisreal/MN-12B-Celeste-V1.9">nothingiisreal/MN-12B-Celeste-V1.9</a></li>
|
| 404 |
+
<li><a href="https://huggingface.co/PocketDoc/Dans-DangerousWinds-V1.1.0-12b">PocketDoc/Dans-DangerousWinds-V1.1.0-12b</a></li>
|
| 405 |
+
<li><a href="https://huggingface.co/ReadyArt/Dark-Nexus-12B-v2.0">ReadyArt/Dark-Nexus-12B-v2.0</a></li>
|
| 406 |
+
<li><a href="https://huggingface.co/ReadyArt/Forgotten-Safeword-12B-v4.0">ReadyArt/Forgotten-Safeword-12B-v4.0</a></li>
|
| 407 |
+
<li><a href="https://huggingface.co/ReadyArt/Omega-Darker_The-Final-Directive-12B">ReadyArt/Omega-Darker_The-Final-Directive-12B</a></li>
|
| 408 |
+
<li><a href="https://huggingface.co/romaingrx/red-teamer-mistral-nemo">romaingrx/red-teamer-mistral-nemo</a></li>
|
| 409 |
+
<li><a href="https://huggingface.co/Sao10K/MN-12B-Lyra-v1">Sao10K/MN-12B-Lyra-v1</a></li>
|
| 410 |
+
<li><a href="https://huggingface.co/Sao10K/MN-12B-Lyra-v4">Sao10K/MN-12B-Lyra-v4</a></li>
|
| 411 |
+
<li><a href="https://huggingface.co/shisa-ai/shisa-v2-mistral-nemo-12b">shisa-ai/shisa-v2-mistral-nemo-12b</a></li>
|
| 412 |
+
<li><a href="https://huggingface.co/SicariusSicariiStuff/Impish_Bloodmoon_12B">SicariusSicariiStuff/Impish_Bloodmoon_12B</a></li>
|
| 413 |
+
<li><a href="https://huggingface.co/sleepdeprived3/Christian-Bible-Expert-v2.0-12B">sleepdeprived3/Christian-Bible-Expert-v2.0-12B</a></li>
|
| 414 |
+
<li><a href="https://huggingface.co/SuperbEmphasis/MN-12b-RP-Ink-RP-Longform">SuperbEmphasis/MN-12b-RP-Ink-RP-Longform</a></li>
|
| 415 |
+
<li><a href="https://huggingface.co/SuperbEmphasis/Omega-Darker_The-Final-Directive-Longform-Stage2-ERP-12B-v0.2">SuperbEmphasis/Omega-Darker_The-Final-Directive-Longform-Stage2-ERP-12B-v0.2</a></li>
|
| 416 |
+
<li><a href="https://huggingface.co/TheDrummer/Rivermind-12B-v1">TheDrummer/Rivermind-12B-v1</a></li>
|
| 417 |
+
<li><a href="https://huggingface.co/TheDrummer/Rocinante-12B-v1">TheDrummer/Rocinante-12B-v1</a></li>
|
| 418 |
+
<li><a href="https://huggingface.co/TheDrummer/Rocinante-X-12B-v1">TheDrummer/Rocinante-X-12B-v1</a></li>
|
| 419 |
+
<li><a href="https://huggingface.co/Trappu/Nemo-Picaro-12B">Trappu/Nemo-Picaro-12B</a></li>
|
| 420 |
+
<li><a href="https://huggingface.co/Undi95/LocalC-12B-e2.0">Undi95/LocalC-12B-e2.0</a></li>
|
| 421 |
+
<li><a href="https://huggingface.co/VAGOsolutions/SauerkrautLM-Nemo-12b-Instruct">VAGOsolutions/SauerkrautLM-Nemo-12b-Instruct</a></li>
|
| 422 |
+
<li><a href="https://huggingface.co/Vortex5/Astral-Noctra-12B">Vortex5/Astral-Noctra-12B</a></li>
|
| 423 |
+
<li><a href="https://huggingface.co/Vortex5/Azure-Starlight-12B">Vortex5/Azure-Starlight-12B</a></li>
|
| 424 |
+
<li><a href="https://huggingface.co/Vortex5/Crimson-Constellation-12B">Vortex5/Crimson-Constellation-12B</a></li>
|
| 425 |
+
<li><a href="https://huggingface.co/Vortex5/Red-Synthesis-12B">Vortex5/Red-Synthesis-12B</a></li>
|
| 426 |
+
<li><a href="https://huggingface.co/Vortex5/Shining-Seraph-12B">Vortex5/Shining-Seraph-12B</a></li>
|
| 427 |
+
<li><a href="https://huggingface.co/Vortex5/Starlit-Shadow-12B">Vortex5/Starlit-Shadow-12B</a></li>
|
| 428 |
+
<li><a href="https://huggingface.co/Vortex5/Vermilion-Sage-12B">Vortex5/Vermilion-Sage-12B</a></li>
|
| 429 |
+
<li><a href="https://huggingface.co/Vortex5/Scarlet-Seraph-12B">Vortex5/Scarlet-Seraph-12B</a></li>
|
| 430 |
+
<li><a href="https://huggingface.co/Vortex5/Maroon-Sunset-12B">Vortex5/Maroon-Sunset-12B</a></li>
|
| 431 |
+
<li><a href="https://huggingface.co/Vortex5/Amber-Starlight-12B">Vortex5/Amber-Starlight-12B</a></li>
|
| 432 |
+
</ul>
|
| 433 |
+
</div>
|
| 434 |
+
</details>
|
| 435 |
+
</div>
|
| 436 |
+
|
| 437 |
+
<div class="section-container">
|
| 438 |
+
<div class="section-header">
|
| 439 |
+
<div class="section-indicator"></div>
|
| 440 |
+
<h2 class="section-title">Merge Pipeline & Configuration</h2>
|
| 441 |
+
</div>
|
| 442 |
+
<div class="section-content">
|
| 443 |
+
<p><b>🧬 Ancient Awakening 12B</b> unites several methods and 70 models into one:</p>
|
| 444 |
+
<ol>
|
| 445 |
+
<li><a href="https://huggingface.co/EldritchLabs/Kraken-Karcher-12B-v1">🦑 Kraken Karcher v1</a>: Combines 53 <a href="https://huggingface.co/models?other=base_model:finetune:mistralai/Mistral-Nemo-Instruct-2407">Mistral Nemo finetunes</a> via the <code>karcher</code> method at 500 iterations</li>
|
| 446 |
+
<li><a href="https://huggingface.co/Naphula/Riemannian-Redshift-12B-v1">🌌 Riemannian Redshift v1</a>: Combines 10 <a href="https://huggingface.co/Vortex5">Vortex5</a> merges (which contain custom methods like <code>saef</code>, <code>smi_oni</code>, and <code>hpq</code>) via the <code>karcher</code> method at 1000 iterations</li>
|
| 447 |
+
<li>RedKFlux: <code>flux</code> merge of Kraken with Redshift at 1000 iterations</li>
|
| 448 |
+
<li>RedKFluxMell: <code>arcee_fusion</code> merge of #3 with <a href="https://huggingface.co/inflatebot/MN-12B-Mag-Mell-R1">Mag-Mell</a></li>
|
| 449 |
+
<li>BloodKraken: <code>arcee_fusion</code> merge of #4 with <a href="https://huggingface.co/SicariusSicariiStuff/Impish_Bloodmoon_12B">Impish Bloodmoon</a></li>
|
| 450 |
+
<li><a href="https://huggingface.co/Naphula-Archives/F5-stage6-12B">F5-stage6</a>: <code>arcee_fusion</code> merge of #5 with <a href="https://huggingface.co/LatitudeGames/Muse-12B">Muse</a></li>
|
| 451 |
+
<li><a href="https://huggingface.co/Naphula-Archives/F5-stage7-12B">F5-stage7</a>: <code>ramplus_tl</code> merge of #6 with #3</li>
|
| 452 |
+
<li><a href="https://huggingface.co/Naphula/Ancient-Awakening-12B">🧬 Ancient Awakening 12B</a>: <code>pdq</code> merge of #7 with #6, #3, #2, #1, Mag-Mell, Impish-Bloodmoon, and Muse</li>
|
| 453 |
+
<li><code>mpoa</code> <a href="https://huggingface.co/blog/grimjim/norm-preserving-biprojected-abliteration">ablation</a> applied to remove censorship <a href="https://huggingface.co/Naphula/Ancient-Awakening-12B-MPOA">(released seperately)</a></i></li>
|
| 454 |
+
<b>Note:</b> If you encounter any issues with the model then you can try using F5-stage6 or stage7 merges as these are likely more stable.
|
| 455 |
+
</ol>
|
| 456 |
+
<hr>
|
| 457 |
+
<h3 class="subheading">Stage 1: 🦑 Kraken Karcher</h3>
|
| 458 |
+
<pre><code>base_model: B:/12B/models--mistralai--Mistral-Nemo-Instruct-2407
|
| 459 |
+
models:
|
| 460 |
+
- model: B:/12B/models--aixonlab--Aether-12b
|
| 461 |
+
- model: B:/12B/models--aixonlab--Zinakha-12b
|
| 462 |
+
- model: B:/12B/models--allura-org--Bigger-Body-12b
|
| 463 |
+
- model: B:/12B/models--allura-org--MN-12b-RP-Ink
|
| 464 |
+
- model: B:/12B/models--allura-org--remnant-mn-12b
|
| 465 |
+
- model: B:/12B/models--anthracite-org--magnum-v4-12b
|
| 466 |
+
- model: B:/12B/models--ArliAI--Mistral-Nemo-12B-ArliAI-RPMax-v1.2
|
| 467 |
+
- model: B:/12B/models--Babsie--Opulus-12B-v3
|
| 468 |
+
- model: B:/12B/models--BeaverAI--mistral-doryV2-12b
|
| 469 |
+
- model: B:/12B/models--crestf411--nemo-sunfall-v0.6.1
|
| 470 |
+
- model: B:/12B/models--EpistemeAI2--Fireball-Mistral-Nemo-12B-Philos
|
| 471 |
+
- model: B:/12B/models--EpistemeAI--Mistral-Nemo-Instruct-12B-Philosophy-Math
|
| 472 |
+
- model: B:/12B/models--Fizzarolli--MN-12b-Rosier-v1
|
| 473 |
+
- model: B:/12B/models--HumanLLMs--Human-Like-Mistral-Nemo-Instruct-2407
|
| 474 |
+
- model: B:/12B/models--IIEleven11--Kalypso
|
| 475 |
+
- model: B:/12B/models--intervitens--mini-magnum-12b-v1.1
|
| 476 |
+
- model: B:/12B/models--jtatman--mistral_nemo_12b_reasoning_psychology_lora
|
| 477 |
+
- model: B:/12B/models--KOOWEEYUS--BlackSheep-RP-12B
|
| 478 |
+
- model: B:/12B/models--Lambent--Arsenic-Shahrazad-12B-v2
|
| 479 |
+
- model: B:/12B/models--Lambent--Arsenic-Shahrazad-12B-v3
|
| 480 |
+
- model: B:/12B/models--Lambent--arsenic-nemo-unleashed-12B
|
| 481 |
+
- model: B:/12B/models--Lambent--Gilded-Arsenic-12B
|
| 482 |
+
- model: B:/12B/models--mistralai--Mistral-Nemo-Instruct-2407
|
| 483 |
+
- model: B:/12B/models--nbeerbower--Lyra-Gutenberg-mistral-nemo-12B
|
| 484 |
+
- model: B:/12B/models--nbeerbower--Lyra4-Gutenberg-12B
|
| 485 |
+
- model: B:/12B/models--nbeerbower--mistral-nemo-bophades-12B
|
| 486 |
+
- model: B:/12B/models--nbeerbower--mistral-nemo-gutenberg-12B-v3
|
| 487 |
+
- model: B:/12B/models--nbeerbower--mistral-nemo-gutenberg-12B-v4
|
| 488 |
+
- model: B:/12B/models--nbeerbower--Mistral-Nemo-Gutenberg-Doppel-12B
|
| 489 |
+
- model: B:/12B/models--nbeerbower--Mistral-Nemo-Gutenberg-Encore-12B
|
| 490 |
+
- model: B:/12B/models--nbeerbower--Mistral-Nemo-Gutenberg-Vitus-12B
|
| 491 |
+
- model: B:/12B/models--nbeerbower--mistral-nemo-wissenschaft-12B
|
| 492 |
+
- model: B:/12B/models--NeverSleepHistorical--lumi-nemo-e2.0
|
| 493 |
+
- model: B:/12B/models--NeverSleep--Lumimaid-v0.2-12B
|
| 494 |
+
- model: B:/12B/models--nothingiisreal--Celeste-12B-V1.6
|
| 495 |
+
- model: B:/12B/models--nothingiisreal--MN-12B-Celeste-V1.9
|
| 496 |
+
- model: B:/12B/models--PocketDoc--Dans-DangerousWinds-V1.1.0-12b
|
| 497 |
+
- model: B:/12B/models--ReadyArt--Dark-Nexus-12B-v2.0
|
| 498 |
+
- model: B:/12B/models--ReadyArt--Forgotten-Safeword-12B-v4.0
|
| 499 |
+
- model: B:/12B/models--ReadyArt--Omega-Darker_The-Final-Directive-12B
|
| 500 |
+
- model: B:/12B/models--romaingrx--red-teamer-mistral-nemo
|
| 501 |
+
- model: B:/12B/models--Sao10K--MN-12B-Lyra-v1
|
| 502 |
+
- model: B:/12B/models--Sao10K--MN-12B-Lyra-v4
|
| 503 |
+
- model: B:/12B/models--shisa-ai--shisa-v2-mistral-nemo-12b
|
| 504 |
+
- model: B:/12B/models--sleepdeprived3--Christian-Bible-Expert-v2.0-12B
|
| 505 |
+
- model: B:/12B/models--SuperbEmphasis--MN-12b-RP-Ink-RP-Longform
|
| 506 |
+
- model: B:/12B/models--SuperbEmphasis--Omega-Darker_The-Final-Directive-Longform-Stage2-ERP-12B-v0.2
|
| 507 |
+
- model: B:/12B/models--TheDrummer--Rivermind-12B-v1
|
| 508 |
+
- model: B:/12B/models--TheDrummer--Rocinante-12B-v1
|
| 509 |
+
- model: B:/12B/models--TheDrummer--Rocinante-X-12B-v1
|
| 510 |
+
- model: B:/12B/models--Trappu--Nemo-Picaro-12B
|
| 511 |
+
- model: B:/12B/models--Undi95--LocalC-12B-e2.0
|
| 512 |
+
- model: B:/12B/models--VAGOsolutions--SauerkrautLM-Nemo-12b-Instruct
|
| 513 |
+
merge_method: karcher
|
| 514 |
+
parameters:
|
| 515 |
+
max_iter: 500
|
| 516 |
+
tol: 1.0e-9
|
| 517 |
+
dtype: float32
|
| 518 |
+
out_dtype: bfloat16
|
| 519 |
+
tokenizer:
|
| 520 |
+
source: union
|
| 521 |
+
chat_template: auto
|
| 522 |
+
name: 🦑 Kraken-Karcher-12B-v1</code></pre>
|
| 523 |
+
|
| 524 |
+
<h3 class="subheading">Stage 2: 🌌 Riemannian Redshift</h3>
|
| 525 |
+
<pre><code>models:
|
| 526 |
+
- model: B:/12B/models--Vortex5--Astral-Noctra-12B
|
| 527 |
+
- model: B:/12B/models--Vortex5--Azure-Starlight-12B
|
| 528 |
+
- model: B:/12B/models--Vortex5--Crimson-Constellation-12B
|
| 529 |
+
- model: B:/12B/models--Vortex5--Red-Synthesis-12B
|
| 530 |
+
- model: B:/12B/models--Vortex5--Shining-Seraph-12B
|
| 531 |
+
- model: B:/12B/models--Vortex5--Starlit-Shadow-12B
|
| 532 |
+
- model: B:/12B/models--Vortex5--Vermilion-Sage-12B
|
| 533 |
+
- model: B:/12B/models--Vortex5--Scarlet-Seraph-12B
|
| 534 |
+
- model: B:/12B/models--Vortex5--Maroon-Sunset-12B
|
| 535 |
+
- model: B:/12B/models--Vortex5--Amber-Starlight-12B
|
| 536 |
+
merge_method: karcher
|
| 537 |
+
parameters:
|
| 538 |
+
max_iter: 1000
|
| 539 |
+
tol: 1.0e-9
|
| 540 |
+
dtype: float32
|
| 541 |
+
out_dtype: bfloat16
|
| 542 |
+
tokenizer:
|
| 543 |
+
source: union
|
| 544 |
+
chat_template: auto
|
| 545 |
+
name: 🌌 Riemannian-Redshift-12B-v1</code></pre>
|
| 546 |
+
|
| 547 |
+
<h3 class="subheading">Stage 3: RedKFlux</h3>
|
| 548 |
+
<pre><code>models:
|
| 549 |
+
- model: C:\mergekit-main\merged_model_redshift
|
| 550 |
+
- model: C:\mergekit-main\merged_model_kraken_karcher
|
| 551 |
+
merge_method: flux
|
| 552 |
+
parameters:
|
| 553 |
+
eta: 1.2
|
| 554 |
+
tol: 1.0e-9
|
| 555 |
+
max_iter: 1000
|
| 556 |
+
kappa: 0.8
|
| 557 |
+
dtype: float32
|
| 558 |
+
out_dtype: bfloat16
|
| 559 |
+
tokenizer:
|
| 560 |
+
source: union
|
| 561 |
+
chat_template: auto
|
| 562 |
+
name: RedKFlux</code></pre>
|
| 563 |
+
|
| 564 |
+
<h3 class="subheading">Stage 4: RedKFluxMell</h3>
|
| 565 |
+
<pre><code>models:
|
| 566 |
+
- model: C:\mergekit-main\merged_model_RedKFlux
|
| 567 |
+
- model: B:\8B\models--inflatebot--MN-12B-Mag-Mell-R1
|
| 568 |
+
merge_method: arcee_fusion
|
| 569 |
+
tukey_fence: 1.5
|
| 570 |
+
base_model: C:\mergekit-main\merged_model_RedKFlux
|
| 571 |
+
dtype: float32
|
| 572 |
+
out_dtype: bfloat16
|
| 573 |
+
tokenizer:
|
| 574 |
+
source: base
|
| 575 |
+
name: RedKFluxMell</code></pre>
|
| 576 |
+
|
| 577 |
+
<h3 class="subheading">Stage 5: BloodKraken</h3>
|
| 578 |
+
<pre><code>models:
|
| 579 |
+
- model: C:\mergekit-main\merged_model_RedKFluxMell
|
| 580 |
+
- model: B:\8B\models--SicariusSicariiStuff--Impish_Bloodmoon_12B
|
| 581 |
+
merge_method: arcee_fusion
|
| 582 |
+
tukey_fence: 1.5
|
| 583 |
+
base_model: C:\mergekit-main\merged_model_RedKFluxMell
|
| 584 |
+
dtype: float32
|
| 585 |
+
out_dtype: bfloat16
|
| 586 |
+
tokenizer:
|
| 587 |
+
source: base
|
| 588 |
+
name: BloodKraken</code></pre>
|
| 589 |
+
|
| 590 |
+
<h3 class="subheading">Stage 6: BloodKrakenMuse</h3>
|
| 591 |
+
<pre><code>models:
|
| 592 |
+
- model: C:\mergekit-main\merged_model_BloodKraken
|
| 593 |
+
- model: B:\8B\models--LatitudeGames--Muse-12B
|
| 594 |
+
merge_method: arcee_fusion
|
| 595 |
+
tukey_fence: 1.5
|
| 596 |
+
base_model: C:\mergekit-main\merged_model_BloodKraken
|
| 597 |
+
dtype: float32
|
| 598 |
+
out_dtype: bfloat16
|
| 599 |
+
tokenizer:
|
| 600 |
+
source: base
|
| 601 |
+
name: BloodKrakenMuse</code></pre>
|
| 602 |
+
|
| 603 |
+
<h3 class="subheading">Stage 7: Ramplus_tl</h3>
|
| 604 |
+
<pre><code>merge_method: ramplus_tl
|
| 605 |
+
base_model: C:\mergekit-main\merged_model_BloodKrakenMuse
|
| 606 |
+
models:
|
| 607 |
+
- model: C:\mergekit-main\merged_model_BloodKrakenMuse
|
| 608 |
+
- model: C:\mergekit-main\merged_model_RedKFlux
|
| 609 |
+
parameters:
|
| 610 |
+
epsilon: 0.001 # Increased from 1e-5 to 1e-3 for denser SFT/DPO task vectors
|
| 611 |
+
r: 0.25 # Increased from 0.1 to 0.2-0.3 for better SFT behavior preservation
|
| 612 |
+
alpha: 0.4 # Increased from 0.2 to 0.4 for enhanced rescaling
|
| 613 |
+
dtype: float32
|
| 614 |
+
out_dtype: bfloat16
|
| 615 |
+
tokenizer:
|
| 616 |
+
source: base
|
| 617 |
+
name: Stage7</code></pre>
|
| 618 |
+
|
| 619 |
+
<h3 class="subheading">Stage 8: 🧬 Ancient Awakening</h3>
|
| 620 |
+
<pre><code>merge_method: pdq
|
| 621 |
+
pdq_base_yaml: C:\mergekit-main\stage7.yaml
|
| 622 |
+
pdq_base_model: C:\mergekit-main\merged_model_stage7
|
| 623 |
+
output_dir: C:\mergekit-main\stage8_pdq
|
| 624 |
+
base_model: C:\mergekit-main\merged_model_BloodKrakenMuse
|
| 625 |
+
models:
|
| 626 |
+
- model: C:\mergekit-main\merged_model_BloodKrakenMuse
|
| 627 |
+
- model: B:\12B\models--LatitudeGames--Muse-12B
|
| 628 |
+
- model: B:\12B\models--SicariusSicariiStuff--Impish_Bloodmoon_12B
|
| 629 |
+
- model: B:\12B\models--inflatebot--MN-12B-Mag-Mell-R1
|
| 630 |
+
- model: C:\mergekit-main\merged_model_RedKFlux
|
| 631 |
+
- model: C:\mergekit-main\merged_model_redshift
|
| 632 |
+
- model: C:\mergekit-main\merged_model_kraken_karcher
|
| 633 |
+
parameters:
|
| 634 |
+
chi: 0.15
|
| 635 |
+
iota: 0.1
|
| 636 |
+
nu: 24
|
| 637 |
+
gamma: 1.0
|
| 638 |
+
zeta: 16
|
| 639 |
+
sigma: 0.5
|
| 640 |
+
density: 0.9
|
| 641 |
+
epsilon: 0.099
|
| 642 |
+
lambda: 1.0
|
| 643 |
+
lazy_unpickle: True
|
| 644 |
+
random_seed: 420
|
| 645 |
+
name: 🧬 Ancient-Awakening-12B</code></pre>
|
| 646 |
+
|
| 647 |
+
<h3 class="subheading">Stage 9: Magnitude-Preserving Othogonalized Ablation</h3>
|
| 648 |
+
<pre><code># python measure.py -m C:\mergekit-main\f8_pdq -o C:\mergekit-main\f8_pdq\ablit_proj --batch-size 8 --projected
|
| 649 |
+
# python analyze_old.py C:\mergekit-main\f8_pdq\ablit_proj -c
|
| 650 |
+
# sharded_ablate.py magmell.yml --normpreserve --projected
|
| 651 |
+
#
|
| 652 |
+
# The model to be ablated.
|
| 653 |
+
model: C:\mergekit-main\f8_pdq
|
| 654 |
+
#
|
| 655 |
+
# The measurement file generated by measure.py for the model.
|
| 656 |
+
measurements: C:\mergekit-main\f8_pdq\ablit_proj
|
| 657 |
+
#
|
| 658 |
+
# The directory where the new, ablated model will be saved.
|
| 659 |
+
output: C:\mergekit-main\f8_pdq\ablit_biproj\
|
| 660 |
+
#
|
| 661 |
+
# The list of ablation operations to perform.
|
| 662 |
+
# Strategy: Use the single best refusal direction from the peak signal layer (29)
|
| 663 |
+
# and apply it across all relevant mid-to-late layers.
|
| 664 |
+
ablate:
|
| 665 |
+
# Start ablating from the mid-layers where the signal begins to strengthen.
|
| 666 |
+
- layer: 0
|
| 667 |
+
measurement: 29
|
| 668 |
+
scale: 1.2
|
| 669 |
+
sparsity: 0.00
|
| 670 |
+
- layer: 1
|
| 671 |
+
measurement: 29
|
| 672 |
+
scale: 1.2
|
| 673 |
+
sparsity: 0.00
|
| 674 |
+
- layer: 2
|
| 675 |
+
measurement: 29
|
| 676 |
+
scale: 1.2
|
| 677 |
+
sparsity: 0.00
|
| 678 |
+
- layer: 3
|
| 679 |
+
measurement: 29
|
| 680 |
+
scale: 1.2
|
| 681 |
+
sparsity: 0.00
|
| 682 |
+
- layer: 4
|
| 683 |
+
measurement: 29
|
| 684 |
+
scale: 1.2
|
| 685 |
+
sparsity: 0.00
|
| 686 |
+
- layer: 5
|
| 687 |
+
measurement: 29
|
| 688 |
+
scale: 1.2
|
| 689 |
+
sparsity: 0.00
|
| 690 |
+
- layer: 6
|
| 691 |
+
measurement: 29
|
| 692 |
+
scale: 1.2
|
| 693 |
+
sparsity: 0.00
|
| 694 |
+
- layer: 7
|
| 695 |
+
measurement: 29
|
| 696 |
+
scale: 1.2
|
| 697 |
+
sparsity: 0.00
|
| 698 |
+
- layer: 8
|
| 699 |
+
measurement: 29
|
| 700 |
+
scale: 1.2
|
| 701 |
+
sparsity: 0.00
|
| 702 |
+
- layer: 9
|
| 703 |
+
measurement: 29
|
| 704 |
+
scale: 1.2
|
| 705 |
+
sparsity: 0.00
|
| 706 |
+
- layer: 10
|
| 707 |
+
measurement: 29
|
| 708 |
+
scale: 1.2
|
| 709 |
+
sparsity: 0.00
|
| 710 |
+
- layer: 11
|
| 711 |
+
measurement: 29
|
| 712 |
+
scale: 1.2
|
| 713 |
+
sparsity: 0.00
|
| 714 |
+
- layer: 12
|
| 715 |
+
measurement: 29
|
| 716 |
+
scale: 1.2
|
| 717 |
+
sparsity: 0.00
|
| 718 |
+
- layer: 13
|
| 719 |
+
measurement: 29
|
| 720 |
+
scale: 1.2
|
| 721 |
+
sparsity: 0.00
|
| 722 |
+
- layer: 14
|
| 723 |
+
measurement: 29
|
| 724 |
+
scale: 1.2
|
| 725 |
+
sparsity: 0.00
|
| 726 |
+
- layer: 15
|
| 727 |
+
measurement: 29
|
| 728 |
+
scale: 1.2
|
| 729 |
+
sparsity: 0.00
|
| 730 |
+
- layer: 16
|
| 731 |
+
measurement: 29
|
| 732 |
+
scale: 1.2
|
| 733 |
+
sparsity: 0.00
|
| 734 |
+
- layer: 17
|
| 735 |
+
measurement: 29
|
| 736 |
+
scale: 1.2
|
| 737 |
+
sparsity: 0.00
|
| 738 |
+
- layer: 18
|
| 739 |
+
measurement: 29
|
| 740 |
+
scale: 1.2
|
| 741 |
+
sparsity: 0.00
|
| 742 |
+
- layer: 19
|
| 743 |
+
measurement: 29
|
| 744 |
+
scale: 1.2
|
| 745 |
+
sparsity: 0.00
|
| 746 |
+
- layer: 20
|
| 747 |
+
measurement: 29
|
| 748 |
+
scale: 1.2
|
| 749 |
+
sparsity: 0.00
|
| 750 |
+
- layer: 21
|
| 751 |
+
measurement: 29
|
| 752 |
+
scale: 1.2
|
| 753 |
+
sparsity: 0.00
|
| 754 |
+
- layer: 22
|
| 755 |
+
measurement: 29
|
| 756 |
+
scale: 1.2
|
| 757 |
+
sparsity: 0.00
|
| 758 |
+
- layer: 23
|
| 759 |
+
measurement: 29
|
| 760 |
+
scale: 1.2
|
| 761 |
+
sparsity: 0.00
|
| 762 |
+
- layer: 24
|
| 763 |
+
measurement: 29
|
| 764 |
+
scale: 1.2
|
| 765 |
+
sparsity: 0.00
|
| 766 |
+
- layer: 25
|
| 767 |
+
measurement: 29
|
| 768 |
+
scale: 1.2
|
| 769 |
+
sparsity: 0.00
|
| 770 |
+
- layer: 26
|
| 771 |
+
measurement: 29
|
| 772 |
+
scale: 1.2
|
| 773 |
+
sparsity: 0.00
|
| 774 |
+
- layer: 27
|
| 775 |
+
measurement: 29
|
| 776 |
+
scale: 1.2
|
| 777 |
+
sparsity: 0.00
|
| 778 |
+
- layer: 28
|
| 779 |
+
measurement: 29
|
| 780 |
+
scale: 1.2
|
| 781 |
+
sparsity: 0.00
|
| 782 |
+
- layer: 29
|
| 783 |
+
measurement: 29
|
| 784 |
+
scale: 1.2
|
| 785 |
+
sparsity: 0.00
|
| 786 |
+
- layer: 30
|
| 787 |
+
measurement: 29
|
| 788 |
+
scale: 1.2
|
| 789 |
+
sparsity: 0.00
|
| 790 |
+
- layer: 31
|
| 791 |
+
measurement: 29
|
| 792 |
+
scale: 1.2
|
| 793 |
+
sparsity: 0.00
|
| 794 |
+
- layer: 32
|
| 795 |
+
measurement: 29
|
| 796 |
+
scale: 1.2
|
| 797 |
+
sparsity: 0.00
|
| 798 |
+
- layer: 33
|
| 799 |
+
measurement: 29
|
| 800 |
+
scale: 1.2
|
| 801 |
+
sparsity: 0.00
|
| 802 |
+
- layer: 34
|
| 803 |
+
measurement: 29
|
| 804 |
+
scale: 1.2
|
| 805 |
+
sparsity: 0.00
|
| 806 |
+
- layer: 35
|
| 807 |
+
measurement: 29
|
| 808 |
+
scale: 1.2
|
| 809 |
+
sparsity: 0.00
|
| 810 |
+
- layer: 36
|
| 811 |
+
measurement: 29
|
| 812 |
+
scale: 1.2
|
| 813 |
+
sparsity: 0.00
|
| 814 |
+
- layer: 37
|
| 815 |
+
measurement: 29
|
| 816 |
+
scale: 1.2
|
| 817 |
+
sparsity: 0.00
|
| 818 |
+
- layer: 38
|
| 819 |
+
measurement: 29
|
| 820 |
+
scale: 1.2
|
| 821 |
+
sparsity: 0.00
|
| 822 |
+
- layer: 39
|
| 823 |
+
measurement: 29
|
| 824 |
+
scale: 1.2
|
| 825 |
+
sparsity: 0.00</code></pre>
|
| 826 |
+
</div>
|
| 827 |
+
</div>
|
| 828 |
+
|
| 829 |
+
</body>
|
| 830 |
+
</html>
|