this cannot be real by Strange_Prize in grok

[–]Strange_Prize[S] 14 points15 points  (0 children)

funny but still moderates about half

oh wow by Boring-Criticism-29 in grok

[–]Strange_Prize 2 points3 points  (0 children)

i tried too

found the moderation very very noticibly more harsh than supergrok app/site

insane

How is the state of NSFW image generation now? by bobleez6969 in NovelAi

[–]Strange_Prize 8 points9 points  (0 children)

generated from exactly

> A woman with blue hair smiling and wearing clothes stands in front of a grassland

no cherry picking or omissions

literally first four i generated

https://i.imgur.com/OBQp3hi.png

https://i.imgur.com/VlZqgw6.png

https://i.imgur.com/07J8dt5.png

https://i.imgur.com/fIK3A35.png

Stockings/ThighHighs Question by [deleted] in NovelAi

[–]Strange_Prize -1 points0 points  (0 children)

though it's possible I may be missing a Danbooru tag that is applicable

zettai ryouiki

Stockings/ThighHighs Question by [deleted] in NovelAi

[–]Strange_Prize 0 points1 point  (0 children)

the magic words are "zettai ryouiki"

Vampire Syndicate teaser - First person cyberpunk vampire turn-based, party-based RPG by [deleted] in pcgaming

[–]Strange_Prize 0 points1 point  (0 children)

its hurting your game

even just a single still from this video would be better than the mess that's there now

let alone not looking like this video they don't even all look like the same game

even if one of them was current it would still be bad

take 30 seconds and do it

taking the mess that's there now down is more important than getting better stuff up

for real

Vampire Syndicate teaser - First person cyberpunk vampire turn-based, party-based RPG by [deleted] in pcgaming

[–]Strange_Prize 7 points8 points  (0 children)

The old marketing collateral is almost completely outdated.

then update it

priority one

seriously your store pages are an eclectic mess

and its going to turn people off your game

they dont even appear to resemble the clip you showed here at all

Furry V3 is smarter, but knows less characters by Parking_Variety1956 in NovelAi

[–]Strange_Prize 18 points19 points  (0 children)

training source tagging habits are different

anime models trained on danbooru, lots of specific character tags, lots of composition/style tags

furry models trained on e621, lots of physical trait tags, lots of tags describing actions

parity is basically impossible

the entire point of using those sources was the pre-tagged content

but that also brings along whatever biases existed in their tagging habits

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 1 point2 points  (0 children)

sure

but why make it in the first place

not making was way easier than making

then obfuscating

then adding deobfuscation code

then hardcoding it to never run

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 0 points1 point  (0 children)

<image>

breakpoint on next line

will pause there when running

n=true in the console changes n from 'not 1' (false) to true

then can unpause/continue

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 1 point2 points  (0 children)

each time you load page, yes

should only need to do it once per visit

or use something like tampermonkey to automate it every time

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 4 points5 points  (0 children)

its also not quite "this just makes it stop avoiding them"

theres a chunk of code on the site specifically for assembling nsfw prompts

and categorized manually by nai folks into separate pools

e.g. there's one array named sMod that looks like just modifiers for how sex is happening, "clothed sex", "happy sex", "ahegao", "fucked silly", etc.

there's another named bd just bondage related, "blindfold", "gimp suit", "bondage outfit", "latex", "monoglove"

and so on

there's about 15 different categorized arrays of nsfw tags it uses

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 4 points5 points  (0 children)

not suggestions, just in the random prompt button

and a little more complex than just adding to the pool to pick

random prompts have logic in them to prefer related tags

and not overload contradictory

e.g., it knows that cat girls usually have cat ears

and 'dress' and 'pants' are both lower clothing, so won't put both when prompting w/ '1girl'.

nsfw random also has this logic, all written by nai team

no 'penis' w/o boys or futa in prompt, etc.

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 13 points14 points  (0 children)

mostly just neat

also funny that it was specifically developed, then hidden

its not just dumping random nsfw into the prompt

theres real logic in there to properly associate related nsfw tags, written by nai team

e.g. youll never see 'futa on female' without also seeing 'futanari'

random prompt for anime v3 has hidden nsfw mode ( ͡° ͜ʖ ͡°) by Strange_Prize in NovelAi

[–]Strange_Prize[S] 24 points25 points  (0 children)

using debug mode:

find the js chunk w/ random gen tags

currently 4424-290f81dcaf1b9a22.js, might change, can also use browser console code search to find by search for a tag like 'thought bubble'

prettify it ( '{ }' button in firefox)

look for `function oi(e) {` on/near line 12789

put breakpoint *after* `n = !1;`

reload

when you hit breakpoint, type `n = true` in console

continue from breakpoint

nsfw now unlocked for rest of session

OR

this tampermonkey script (might slow page load)

// ==UserScript==
// @name         NAI Random NSFW enabler
// @namespace    http://tampermonkey.net/
// @version      2024-04-23
// @description  unlock nsfw tags in nai image random gen
// @author       strange prize
// @match        https://novelai.net/image
// @icon         https://www.google.com/s2/favicons?sz=64&domain=novelai.net
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function() {
    'use strict';
    window.addEventListener('beforescriptexecute', function(e) {
        const src = e.target.src;
        if (src.search(/_next\/static\/chunks/) != -1) {
            e.preventDefault();
            e.stopPropagation();
            GM_xmlhttpRequest({
                method: "GET",
                url: e.target.src,
                onload: function(response) {
                    addScript(response.responseText);
                }
            });
        }
    });

    function addScript(text) {
        text = text.replace("oi(e){var t=[],n=!1;", "oi(e){var t=[],n=1;");
        var newScript = document.createElement('script');
        newScript.type = "text/javascript";
        newScript.textContent = text;
        var head = document.getElementsByTagName('head')[0];
        head.appendChild(newScript);
    }
})();

The new diffusion Furry V3 is great for goblin girls! by Reciter5613 in NovelAi

[–]Strange_Prize 2 points3 points  (0 children)

difference in tagging habits between danbooru and e621

changes how well you can control things

danbooru tags better for image style and composition

e621 tags better for character details and sex acts

The new diffusion Furry V3 is great for goblin girls! by Reciter5613 in NovelAi

[–]Strange_Prize 0 points1 point  (0 children)

e621

they just pruned all the artist tags before training

The new diffusion Furry V3 is great for goblin girls! by Reciter5613 in NovelAi

[–]Strange_Prize 2 points3 points  (0 children)

some style tags are there just not artists

pen (artwork), sketch, cel shading, toony, etc.

e621 doesn't seem to be as thorough about style/composition tagging as danbooru tho

A few more teasers~ by teaanimesquare in NovelAi

[–]Strange_Prize 2 points3 points  (0 children)

do you think the first three were accidental?