MaouTakumi

New Member
Aug 20, 2019
5
1
I am not sure but it feels like I'm missing something or something is bugged for me. I cannot progress with Lisa, and I have corrupted all of the PTA members except for Evelyn, but the game doesn't allow me to do anything with her. Anyone have any input?

Edit: I fixed it be resetting Justine in the shop. Thx!
 
Last edited:

NoodleJacuzzi

Active Member
Game Developer
May 20, 2019
722
1,704
Hiya! It's been a while, sorry I've been away for so long. My new game syrup town has eaten up a lot more of my time than I'd hoped it would but I've also been working on decensoring things.

My plan was to (mostly) automate it through several steps. Here's the workflow:
- Take the regular image and convert it to png, hitomi.la's image sizes are a bit bigger than the usual SDXL sizes but it works fine for uncensoring at 1200x1600.
- Use Kohya to auto-caption the images, then use a python script I wrote to inject those captions into the image's png data.
- Do a bulk img2img on all the images at 0.55 denoising with an appropriate style lora, for these ones I used a lora by ginger juju on civitai. The full image doesn't look great but we only need a small part of it.
- Overlay the original images atop the new ones and erase the mosaics.
- If there's still any decensoring or areas that don't match up to the original, I'll do another img2img pass at 0.45 denoising until it looks alright.

Here's an example of that process:
censortest1.png censortest2.png censortest3.png

If anyone wants to replicate this, such as for HU or other games, I'm using webui forge:


Using a checkpoint called autismMix:


And from there using additional models to try and match the styles of the images I've been decensoring.

You don't have permission to view the spoiler content. Log in or register now.

For the actual captioning Forge does have an extension to caption your images, but it wasn't working so I used a tool called Kohya instead and removed all the instances of "censored" from the tags it generated:


As I was working a lot of my time was eaten up trying to search for the best way for me to do this, the big time sinks have been:
- I was trying to find an adetailer model, a tool that would let me tell the AI to zoom in and only do an img2img replacement on a single part, to detect mosaic censorship areas. There isn't one, so I started looking into how to train an adetailer model myself, but no dice there either.
- I wrote some more python scripts trying to find a way to identify mosaic censored areas, crop the image around those areas, and save their positions to later inject them back onto the originals, then feather the edges
- From there I fell down a rabbit hole of trying to learn how to use machine learning to detect and erase areas of an image where a mosaic pattern of censorship is present. Unfortunately that idea went bust and my best scripts would just erase chunks of the images seemingly at random.
- I wasted some time writing a script that would try to crop the images to match the sizes SDXL usually uses

And of course inpainting would probably work overall better than doing these bulk img2img runs, but I wasn't able to make a program that would detect mosaic areas, let alone mark them for inpainting.

Finally, I also made an APK for version 32. Now that I know how to make them, provided there aren't any major issues that pop up, I'll be making APK versions for all my other games as well in the future:



Thanks for all your patience!
 

BobCarter

Active Member
Jan 28, 2018
929
703
Hiya! It's been a while, sorry I've been away for so long. My new game syrup town has eaten up a lot more of my time than I'd hoped it would but I've also been working on decensoring things.

My plan was to (mostly) automate it through several steps. Here's the workflow:
- Take the regular image and convert it to png, hitomi.la's image sizes are a bit bigger than the usual SDXL sizes but it works fine for uncensoring at 1200x1600.
- Use Kohya to auto-caption the images, then use a python script I wrote to inject those captions into the image's png data.
- Do a bulk img2img on all the images at 0.55 denoising with an appropriate style lora, for these ones I used a lora by ginger juju on civitai. The full image doesn't look great but we only need a small part of it.
- Overlay the original images atop the new ones and erase the mosaics.
- If there's still any decensoring or areas that don't match up to the original, I'll do another img2img pass at 0.45 denoising until it looks alright.

Here's an example of that process:
View attachment 3868681 View attachment 3868682 View attachment 3868683

If anyone wants to replicate this, such as for HU or other games, I'm using webui forge:


Using a checkpoint called autismMix:


And from there using additional models to try and match the styles of the images I've been decensoring.

You don't have permission to view the spoiler content. Log in or register now.

For the actual captioning Forge does have an extension to caption your images, but it wasn't working so I used a tool called Kohya instead and removed all the instances of "censored" from the tags it generated:


As I was working a lot of my time was eaten up trying to search for the best way for me to do this, the big time sinks have been:
- I was trying to find an adetailer model, a tool that would let me tell the AI to zoom in and only do an img2img replacement on a single part, to detect mosaic censorship areas. There isn't one, so I started looking into how to train an adetailer model myself, but no dice there either.
- I wrote some more python scripts trying to find a way to identify mosaic censored areas, crop the image around those areas, and save their positions to later inject them back onto the originals, then feather the edges
- From there I fell down a rabbit hole of trying to learn how to use machine learning to detect and erase areas of an image where a mosaic pattern of censorship is present. Unfortunately that idea went bust and my best scripts would just erase chunks of the images seemingly at random.
- I wasted some time writing a script that would try to crop the images to match the sizes SDXL usually uses

And of course inpainting would probably work overall better than doing these bulk img2img runs, but I wasn't able to make a program that would detect mosaic areas, let alone mark them for inpainting.

Finally, I also made an APK for version 32. Now that I know how to make them, provided there aren't any major issues that pop up, I'll be making APK versions for all my other games as well in the future:

Mega

Thanks for all your patience!
Insanely good results, makes me want to go around de-censoring every game
 
  • Like
Reactions: NoodleJacuzzi

Revy86

Member
May 19, 2017
263
26
Hiya! It's been a while, sorry I've been away for so long. My new game syrup town has eaten up a lot more of my time than I'd hoped it would but I've also been working on decensoring things.

My plan was to (mostly) automate it through several steps. Here's the workflow:
- Take the regular image and convert it to png, hitomi.la's image sizes are a bit bigger than the usual SDXL sizes but it works fine for uncensoring at 1200x1600.
- Use Kohya to auto-caption the images, then use a python script I wrote to inject those captions into the image's png data.
- Do a bulk img2img on all the images at 0.55 denoising with an appropriate style lora, for these ones I used a lora by ginger juju on civitai. The full image doesn't look great but we only need a small part of it.
- Overlay the original images atop the new ones and erase the mosaics.
- If there's still any decensoring or areas that don't match up to the original, I'll do another img2img pass at 0.45 denoising until it looks alright.

Here's an example of that process:
View attachment 3868681 View attachment 3868682 View attachment 3868683

If anyone wants to replicate this, such as for HU or other games, I'm using webui forge:


Using a checkpoint called autismMix:


And from there using additional models to try and match the styles of the images I've been decensoring.

You don't have permission to view the spoiler content. Log in or register now.

For the actual captioning Forge does have an extension to caption your images, but it wasn't working so I used a tool called Kohya instead and removed all the instances of "censored" from the tags it generated:


As I was working a lot of my time was eaten up trying to search for the best way for me to do this, the big time sinks have been:
- I was trying to find an adetailer model, a tool that would let me tell the AI to zoom in and only do an img2img replacement on a single part, to detect mosaic censorship areas. There isn't one, so I started looking into how to train an adetailer model myself, but no dice there either.
- I wrote some more python scripts trying to find a way to identify mosaic censored areas, crop the image around those areas, and save their positions to later inject them back onto the originals, then feather the edges
- From there I fell down a rabbit hole of trying to learn how to use machine learning to detect and erase areas of an image where a mosaic pattern of censorship is present. Unfortunately that idea went bust and my best scripts would just erase chunks of the images seemingly at random.
- I wasted some time writing a script that would try to crop the images to match the sizes SDXL usually uses

And of course inpainting would probably work overall better than doing these bulk img2img runs, but I wasn't able to make a program that would detect mosaic areas, let alone mark them for inpainting.

Finally, I also made an APK for version 32. Now that I know how to make them, provided there aren't any major issues that pop up, I'll be making APK versions for all my other games as well in the future:

Mega

Thanks for all your patience!
Fantastic work, the rendering of the images is wonderful :love:
 
  • Like
Reactions: NoodleJacuzzi

NoodleJacuzzi

Active Member
Game Developer
May 20, 2019
722
1,704
Hey NoodleJacuzzi , seems like your whole Patreon has been nuked. What happened?

Also, since your Patreon is no longer available, give them cheatcodes you sly bastard.
I got banned, I'm using Subscribestar now. You can find the cheats here:

I'm using neocities now to host my sites:
 
  • Like
Reactions: TheShelly

BobCarter

Active Member
Jan 28, 2018
929
703
I got banned, I'm using Subscribestar now. You can find the cheats here:

I'm using neocities now to host my sites:
They give a reason? I know patron has 1000 rules that grow by the MasterCard a gay.
 

NoodleJacuzzi

Active Member
Game Developer
May 20, 2019
722
1,704
They give a reason? I know patron has 1000 rules that grow by the MasterCard a gay.
forced hypnotism falls under sexual violence.
You would certainly think that was the case, or perhaps it could have been Rainy DayZ having beast content, but no, it was actually syrup town. My account was deleted after my first syrup town preview post, despite patreon not having any rules against 2d AI-generated content. I assume I just got an anti-ai person reviewing my case, either way I was completely ghosted after just two messages which were very generic corporate jargon.
 
  • Like
Reactions: ChopTheHead

fulcrum

Engaged Member
Feb 2, 2018
3,459
2,003
You would certainly think that was the case, or perhaps it could have been Rainy DayZ having beast content, but no, it was actually syrup town. My account was deleted after my first syrup town preview post, despite patreon not having any rules against 2d AI-generated content. I assume I just got an anti-ai person reviewing my case, either way I was completely ghosted after just two messages which were very generic corporate jargon.
if anything someone probably argued underage.
 

ssynergy

Newbie
May 29, 2020
45
20
Are there any sites or other places where i can find external characters, if there are any in this thread, can someone @ me while quoting those.
thanks in advance
 

jungleszef

New Member
Mar 15, 2023
3
3
You would certainly think that was the case, or perhaps it could have been Rainy DayZ having beast content, but no, it was actually syrup town. My account was deleted after my first syrup town preview post, despite patreon not having any rules against 2d AI-generated content. I assume I just got an anti-ai person reviewing my case, either way I was completely ghosted after just two messages which were very generic corporate jargon.
Yeah, I don't know. But I don't think it's "just anti-ai person", it's more of a department policy. I can't post links, but you can find it in "Community Guidelines" and the article discussing it is "mid year 2024 developments from the Policy Team"

22 March 2024: Works that exclusively allow access to generators, tools or software that use machine learning or AI technology to produce 18+ nudity or explicit imagery are not permitted on, and may not be funded through, Patreon.

You might argue that what you have is a *video game*, but video games are classified (defined) as *software* as well. So they can just always say that and be vague about it.

Maybe someone flagged Syrup Town as AI and then they checked Hentai University and other games and determined other policy violations.

Obviously it's the Twitch policy of vagueness, even their community guidelines regarding "furry content" can be considered vague. Also obviously they break down and do some mass-sweep for adult games.

Taffy Tales made them like 20k or even more (I don't remember, maybe even 30k? They make 20k on subscribe star) a month and they had no problem with it for years, and then they got deleted with no warning. They got ignored as well, even though they could be considered a top earning creator for them.
 

BobCarter

Active Member
Jan 28, 2018
929
703
Yeah, I don't know. But I don't think it's "just anti-ai person", it's more of a department policy. I can't post links, but you can find it in "Community Guidelines" and the article discussing it is "mid year 2024 developments from the Policy Team"

22 March 2024: Works that exclusively allow access to generators, tools or software that use machine learning or AI technology to produce 18+ nudity or explicit imagery are not permitted on, and may not be funded through, Patreon.
[...]
Obviously it's the Twitch policy of vagueness, even their community guidelines regarding "furry content" can be considered vague. Also obviously they break down and do some mass-sweep for adult games.

Taffy Tales made them like 20k or even more (I don't remember, maybe even 30k? They make 20k on subscribe star) a month and they had no problem with it for years, and then they got deleted with no warning. They got ignored as well, even though they could be considered a top earning creator for them.
It's actually fairly common for most sites to remove stuff they don't like, and/or Master Visa Card don't like.
 

NoodleJacuzzi

Active Member
Game Developer
May 20, 2019
722
1,704
Yeah, I don't know. But I don't think it's "just anti-ai person", it's more of a department policy. I can't post links, but you can find it in "Community Guidelines" and the article discussing it is "mid year 2024 developments from the Policy Team"

22 March 2024: Works that exclusively allow access to generators, tools or software that use machine learning or AI technology to produce 18+ nudity or explicit imagery are not permitted on, and may not be funded through, Patreon.

You might argue that what you have is a *video game*, but video games are classified (defined) as *software* as well. So they can just always say that and be vague about it.

Maybe someone flagged Syrup Town as AI and then they checked Hentai University and other games and determined other policy violations.

Obviously it's the Twitch policy of vagueness, even their community guidelines regarding "furry content" can be considered vague. Also obviously they break down and do some mass-sweep for adult games.

Taffy Tales made them like 20k or even more (I don't remember, maybe even 30k? They make 20k on subscribe star) a month and they had no problem with it for years, and then they got deleted with no warning. They got ignored as well, even though they could be considered a top earning creator for them.
That's extremely interesting! I was banned on march 12th, here was the official reason given:

Capture.PNG

Knowing that 10 days later they would officially ban all ai content explains why they were so vague after I sent a followup email where I explained in depth that there was no realistic AI generated content in the post, and why they ghosted me afterwards. At the time I had checked the rules thoroughly to make sure I was abiding by them.

The only AI generated content I had posted on my page at the time were some syrup town previews. Kemono party has backups of my posts so you can see for yourself if you'd like:



all have problem with rar extractions v32?
They still work on my end, are you using 7zip? Maybe the download was interrupted somehow?
 
4.30 star(s) 38 Votes