jackasda211233 commited on
Commit
7c37a98
Β·
verified Β·
1 Parent(s): 9319c37

Trim repeated README sections and keep top-level summary

Browse files
Files changed (1) hide show
  1. README.md +13 -53
README.md CHANGED
@@ -5,7 +5,6 @@ base_model:
5
  - Qwen/Qwen3.5-27B
6
  - dnhkng/RYS-Qwen3.5-27B-FP8-XL
7
  tags:
8
- - qwen3_5
9
  - qwen3.5
10
  - uncensored
11
  - RYS
@@ -56,16 +55,20 @@ This model is designed as a **coding agent model** for use with Claude Code, Ope
56
  >
57
  > **The author is not responsible for how this model is used.** Any actions taken are solely the responsibility of the user. Use in accordance with applicable laws and ethical standards.
58
 
59
- ## Model Overview
60
 
61
- | Property | Value |
62
- |----------|-------|
63
- | **Architecture** | Qwen3.5 (Hybrid SSM β€” Gated DeltaNet + Full Attention) |
64
- | **Total Layers** | 72 (64 base + 8 duplicated via RYS) |
65
- | **Parameters** | ~29.8B |
66
- | **RYS Config** | (26,34) β€” dnhkng's validated Pareto-optimal XL configuration |
67
- | **Context Length** | 262,144 tokens |
68
- | **Thinking Mode** | Yes (DeepSeek-style `<think>...</think>`) |
 
 
 
 
69
 
70
  ## Available Files
71
 
@@ -215,14 +218,6 @@ llama-server \
215
  --min-p 0.0 --repeat-penalty 1.0
216
  ```
217
 
218
- **Current params:**
219
- - temp `0.7`
220
- - top-p `0.95`
221
- - top-k `20`
222
- - min-p `0.0`
223
- - repeat-penalty `1.0`
224
- - cache-ram `30720`
225
-
226
  For contexts above ~160k, consider switching the KV cache to F32:
227
  - `--cache-type-k f32 --cache-type-v f32`
228
 
@@ -254,20 +249,6 @@ Layers 42–71: HauhauCS Uncensored weights (30 layers)
254
  - **[dnhkng/RYS](https://github.com/dnhkng/RYS)** β€” Method & research ([Blog](https://dnhkng.github.io/posts/rys-ii/))
255
  - **[ikawrakow/ik_llama.cpp](https://github.com/ikawrakow/ik_llama.cpp)** β€” Quantization tooling
256
 
257
- ## Live Test: AI Radar Project (One-Shot)
258
-
259
- The model autonomously built a complete AI/ML news aggregator:
260
- - **26KB FastAPI backend** with 4 live API integrations (GitHub, Reddit, HuggingFace, ArXiv)
261
- - **25KB dark-theme SPA frontend** (881 lines, search, filters, cards, bookmarks)
262
- - **SQLite database** with 175 items persisted from live API fetches
263
- - **Setup & test scripts** β€” venv, deps, 9 endpoint tests
264
- - **Self-corrected** 3 tool format errors autonomously
265
- - **Zero loops** across ~70k token generation at 256k context
266
-
267
- Tested via [claw-code](https://github.com/ultraworkers/claw-code) agent framework (required patching `reasoning_content` support for OpenAI-compatible streaming β€” see our fork).
268
-
269
- Testing environment: [OpenCode](https://github.com/opencode-ai/opencode) on Arch Linux with root access. Primary runtime testing used ik-llama.cpp with the build info below and the current recommended parameters from this README.
270
-
271
  ## Tested Runtimes / Builds
272
 
273
  Primary validation for this release used **ik-llama.cpp**, mainly because its **graph split** is a major performance boost on multi-GPU systems compared to standard layer split.
@@ -299,27 +280,6 @@ The new `RYS-Qwen3.5-27B-Uncensored-Splice-IQ4_NL-llama.cpp-compatible.gguf` was
299
  | CUDA | ON |
300
  | Flash Attention | ON |
301
 
302
- Quantization command used:
303
-
304
- ```bash
305
- llama-quantize \
306
- --imatrix /home/benbi/Desktop/RYS-uncensored-experiment/splice_custom.imatrix \
307
- /home/benbi/qwen35_uncensored_rys/Qwen3.5-27B-Uncensored-RYS-Splice-BF16.gguf \
308
- /home/benbi/qwen35_uncensored_rys/Qwen3.5-27B-Uncensored-RYS-Splice-IQ4_NL-mainline.gguf \
309
- IQ4_NL
310
- ```
311
-
312
- Compatibility validation used:
313
-
314
- - `-c 262144`
315
- - `--cache-type-k f32 --cache-type-v f32`
316
-
317
- Verification prompts returned correct final outputs:
318
-
319
- - `0.05`
320
- - `5050`
321
- - `RYS 3-2-2 FP32 verification passed.`
322
-
323
  In either runtime, **use the latest available compile/build when testing**.
324
 
325
  ## Vision Compatibility
 
5
  - Qwen/Qwen3.5-27B
6
  - dnhkng/RYS-Qwen3.5-27B-FP8-XL
7
  tags:
 
8
  - qwen3.5
9
  - uncensored
10
  - RYS
 
55
  >
56
  > **The author is not responsible for how this model is used.** Any actions taken are solely the responsibility of the user. Use in accordance with applicable laws and ethical standards.
57
 
58
+ ## Representative Live Test
59
 
60
+ The model autonomously built a complete AI/ML news aggregator:
61
+
62
+ - **26KB FastAPI backend** with 4 live API integrations (GitHub, Reddit, HuggingFace, ArXiv)
63
+ - **25KB dark-theme SPA frontend** (881 lines, search, filters, cards, bookmarks)
64
+ - **SQLite database** with 175 items persisted from live API fetches
65
+ - **Setup & test scripts** β€” venv, deps, 9 endpoint tests
66
+ - **Self-corrected** 3 tool format errors autonomously
67
+ - **Zero loops** across ~70k token generation at 256k context
68
+
69
+ Tested via [claw-code](https://github.com/ultraworkers/claw-code) agent framework (required patching `reasoning_content` support for OpenAI-compatible streaming β€” see our fork).
70
+
71
+ Testing environment: [OpenCode](https://github.com/opencode-ai/opencode) on Arch Linux with root access. Primary runtime testing used ik-llama.cpp with the build info below and the current recommended parameters from this README.
72
 
73
  ## Available Files
74
 
 
218
  --min-p 0.0 --repeat-penalty 1.0
219
  ```
220
 
 
 
 
 
 
 
 
 
221
  For contexts above ~160k, consider switching the KV cache to F32:
222
  - `--cache-type-k f32 --cache-type-v f32`
223
 
 
249
  - **[dnhkng/RYS](https://github.com/dnhkng/RYS)** β€” Method & research ([Blog](https://dnhkng.github.io/posts/rys-ii/))
250
  - **[ikawrakow/ik_llama.cpp](https://github.com/ikawrakow/ik_llama.cpp)** β€” Quantization tooling
251
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  ## Tested Runtimes / Builds
253
 
254
  Primary validation for this release used **ik-llama.cpp**, mainly because its **graph split** is a major performance boost on multi-GPU systems compared to standard layer split.
 
280
  | CUDA | ON |
281
  | Flash Attention | ON |
282
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
283
  In either runtime, **use the latest available compile/build when testing**.
284
 
285
  ## Vision Compatibility