Qwen3.6 35b a3b Particle System
Posted by quantyverse@reddit | LocalLLaMA | View on Reddit | 7 comments
Started testing Qwen3.6 35b a3b. I let it code a particle System with my Pi Agent. It just made one little ValueError but I was impressed how fast it got it right. Which task are you giving it or what should I let it code next ?
I know that Qwen3.6 27b is out there but for my opinion it is to slow.
nullrecord@reddit
Try this prompt - I wasn't very successful with it on either opus3.5 nor 3.6. Took a lot of back and forth to get 3.5 to produce something actually working:
design and create a 3d file browser which will run in chrome browser. You can use any library you choose, but the result should be a single html file. It should provide a scifi movie style navigation through folders from the local disk. The user should be able to specify the starting folder and 3 different visualization styles (The Matrix, Unicorn Forest, Neon Retrowave) on the main screen. Navigation through folders should be first person FPS style with WASD controls, plus a key binding to go back up one level. The user should see folders and subfolders as a network or maze structure, and individual files as objects in space. Bonus points if file types and extensions are visualized as different objects with a semantically intuitive shape, and if their size, and the size of the subfolders, is calculated with the file size of the files in subfolders. For each floating object representing a file or folder, have floating text showing the file name, size and type of file. Ideally different types would also have simple textures depicting the type of file, like a text file icon for text files.
dannydeetran@reddit
This is what I got from your prompt
Qwopus3.6 27b q8
quantyverse@reddit (OP)
Really Nice ! Do you use Qwopus3.6 a lot ? How does it compare to qwen3.6 ?
dannydeetran@reddit
Thanks! It’s my main local model now for 27b. I tested all the fine tunes at q8 on a barbershop website spec and qwopus 3.6 was the only one that one shot it to perfection flawlessly.
nullrecord@reddit
Cool! I can only run q4 and there’s obviously a massive difference to q8!
Gregory-Wolf@reddit
Hackers (1995)? :)
ai_guy_nerd@reddit
Particle systems are a great start. To really push the logic, try a small 2D physics engine or a cellular automata simulation like Game of Life with a few custom rules. Those usually reveal if a model can maintain a consistent state across multiple functions without hallucinating variable names.
For something more practical, a CLI tool that parses local logs and generates a summary based on specific error patterns is a good test of its ability to handle real-world messy data.
If the model is as fast as you say, it might be worth trying a multi-file refactor where it has to move logic from one module to another while maintaining all the imports. That's where most 'fast' models usually trip up.