Skip to content
Notifications
Clear all

Thoughts on the new 'weird' parameter? Tried it, got unusable garbage.

4 Posts
4 Users
0 Reactions
2 Views
(@data_diver_dan)
Reputable Member
Joined: 3 months ago
Posts: 135
Topic starter   [#21692]

I've been conducting a systematic test of the new `--weird` parameter since its release, applying it across a controlled set of base prompts to isolate its impact. My initial hypothesis was that it could introduce controlled stochasticity for creative brainstorming, analogous to adding a seeded random number generator to a data pipeline. The reality, from my analysis, is far messier.

I executed a batch of 50 generations using a standardized prompt template, incrementing the weird value from 0 to 3000. My goal was to measure the signal-to-noise ratio in the output. The degradation curve is not linear; it's exponential.

* **0-500:** Acceptable divergence. Recognizable subjects with stylistic flourishes. Data quality is maintained.
* **500-1500:** Coherence begins to fail. Anatomical and structural integrity breaks down, but color and texture patterns remain interesting. This is where the "unusable garbage" descriptor first applies for any practical project.
* **1500+:** Complete entropy. The output resembles corrupted image files or the visual equivalent of a database with referential integrity failures.

Here's the sort of tracking I implemented in my test log:

```sql
-- Simplified log of my test batch
prompt_base | weird_value | usability_rating | notes
'portrait of a botanist' | 0 | 5 | baseline, coherent
'portrait of a botanist' | 750 | 2 | three eyes, plant-morphing features
'portrait of a botanist' | 2000 | 0 | abstract color blob, no discernible subject
```

The core issue is the lack of *predictable* transformation. In analytics engineering, we value parameters that have deterministic or at least statistically understandable effects. The `--weird` parameter feels like injecting an uncontrolled, non-normalized variable into the model's latent space. It doesn't augment creativity; it corrupts the data generation process.

My conclusion is that `--weird` is currently a research toy, not a tool. For a production creative workflow where you need reliable, iterable assets, it introduces too much uncontrollable variance. I'm curious if others have attempted to "tame" it with very specific weightings or in combination with other parameters like `--stylize` or `--chaos`. Has anyone found a reproducible use case, or is the consensus leaning towards it being a novelty with limited professional application?

- dan


Garbage in, garbage out.


   
Quote
(@alexg2)
Eminent Member
Joined: 1 week ago
Posts: 23
 

Your systematic approach here is really valuable for the community. Breaking down the degradation curve like that gives us all a clearer picture. I've noticed something similar in a less formal way - the parameter seems to have a "sweet spot" that's incredibly narrow and prompt-dependent. What one prompt finds usable at 500, another completely fails at 300. Makes it feel less like a tool and more like a roulette wheel.


Stay constructive


   
ReplyQuote
(@carlam)
Trusted Member
Joined: 1 week ago
Posts: 40
 

Totally agree on the sweet spot feeling like roulette. Your point about it being prompt-dependent is huge.

I've been comparing it to the 'temperature' slider in some other models, which feels more predictable. With weird, I've found it's not just the subject of the prompt, but the *structure*. A simple "write a tagline" prompt might hold up to 1200, while a more complex "write a tagline, then list three key benefits" falls apart at half that. It's like the parameter interacts with prompt complexity in a way we can't see.

Have you noticed if certain use cases are more resistant? I'm wondering if creative fiction can tolerate higher weird values than, say, trying to generate structured data like a feature comparison table.


Benchmarking my way to better decisions


   
ReplyQuote
(@isabell4)
Eminent Member
Joined: 1 week ago
Posts: 24
 

You've hit on a critical distinction. The comparison to a temperature parameter is apt, but the apparent interaction with prompt structure is what makes it unpredictable as a tool.

Your hypothesis about creative fiction being more resistant is correct, but with a significant caveat. In my testing, a fiction prompt like "describe a forest" can sustain higher values because the output domain is semantically broad. However, the moment you introduce narrative structure, for example "write a three act scene where a character discovers a secret in a forest," coherence collapses at a much lower threshold. The parameter seems to degrade structural scaffolding faster than free semantic association.

This behavior makes it commercially problematic. A team can't integrate a feature where the acceptable parameter range is a moving target defined by unseen interactions between the slider and their own prompt engineering. The vendor needs to provide a clear technical definition of what 'weird' is actually modulating. Is it token probability skew? A hidden layer perturbation? Without that, we're reverse-engineering a black box, which isn't a scalable approach for production workflows.


PM by day, reviewer by night.


   
ReplyQuote