{"id":16621634,"url":"https://github.com/maseshi/animistatics","last_synced_at":"2026-04-12T02:35:00.501Z","repository":{"id":119163549,"uuid":"588383859","full_name":"Maseshi/Animistatics","owner":"Maseshi","description":"🧩 (Checkpoint Mergers) Deep learning model for reviewing or processing images in anime style.","archived":false,"fork":false,"pushed_at":"2023-03-08T03:01:46.000Z","size":11151,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-29T21:43:56.078Z","etag":null,"topics":["anime","image-processing","machine-learning","manga","processing","pytorch"],"latest_commit_sha":null,"homepage":"https://huggingface.co/spaces/Maseshi/Animistatics","language":"Jupyter Notebook","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Maseshi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-13T01:31:41.000Z","updated_at":"2023-08-21T09:23:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"175e1265-f840-4bba-b1fd-b0b27ce10801","html_url":"https://github.com/Maseshi/Animistatics","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Maseshi/Animistatics","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maseshi%2FAnimistatics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maseshi%2FAnimistatics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maseshi%2FAnimistatics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maseshi%2FAnimistatics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Maseshi","download_url":"https://codeload.github.com/Maseshi/Animistatics/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Maseshi%2FAnimistatics/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31702580,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T21:17:31.016Z","status":"online","status_checked_at":"2026-04-12T02:00:06.763Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["anime","image-processing","machine-learning","manga","processing","pytorch"],"created_at":"2024-10-12T02:47:55.607Z","updated_at":"2026-04-12T02:35:00.494Z","avatar_url":"https://github.com/Maseshi.png","language":"Jupyter Notebook","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Header](https://raw.githubusercontent.com/Maseshi/Animistatics/main/assets/header.png)\n\n# Animistatics\n\nWelcome to Animistatics - a latent diffusion model for weebs. This model is intended to produce high-quality, highly detailed anime style with just a few prompts. Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.\n\ne.g. **_girl, cafe, plants, coffee, lighting, steam, blue eyes, brown hair_** \n\n## Gradio\n\nWe support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Animistatics:\n\n[![Open In Spaces](https://camo.githubusercontent.com/00380c35e60d6b04be65d3d94a58332be5cc93779f630bcdfc18ab9a3a7d3388/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f25463025394625413425393725323048756767696e67253230466163652d5370616365732d626c7565)](https://huggingface.co/spaces/Maseshi/Animistatics)\n\n## Google Colab\n\nWe support a [Google Colab](https://github.com/gradio-app/gradio) to run Animistatics:\n\n[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Maseshi/Animistatics/blob/main/animistatics.ipynb)\n\n## 🧨 Diffusers\n\nThis model can be used just like any other Stable Diffusion model. For more information,\nplease have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).\n\nYou can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().\n\n```python\nfrom diffusers import DiffusionPipeline, DPMSolverMultistepScheduler\nimport torch\n\nrepo_id = \"Maseshi/Animistatics\"\npipe = DiffusionPipeline.from_pretrained(repo_id, torch_dtype=torch.float16)\n\npipe.scheduler = DPMSolverMultistepScheduler.from_config(pipe.scheduler.config)\npipe = pipe.to(\"cuda\")\n\nprompt = \"girl, cafe, plants, coffee, lighting, steam, blue eyes, brown hair\"\nimage = pipe(prompt, num_inference_steps=25).images[0]\nimage.save(\"girl.png\")\n```\n\n## Examples\n\nBelow are some examples of images generated using this model:\n\n**Anime Girl:**\n![Anime Girl](https://raw.githubusercontent.com/Maseshi/Animistatics/main/assets/girl.png)\n```\ngirl, cafe, plants, coffee, lighting, steam, blue eyes, brown hair\nSteps: 50, Sampler: DDIM, CFG scale: 12\n```\n**Anime Boy:**\n![Anime Boy](https://raw.githubusercontent.com/Maseshi/Animistatics/main/assets/boy.png)\n```\nboy, blonde hair, blue eyes, colorful, cumulonimbus clouds, lighting, medium hair, plants, city, hoodie, cool\nSteps: 50, Sampler: DDIM, CFG scale: 12\n```\n**City:**\n![City](https://raw.githubusercontent.com/Maseshi/Animistatics/main/assets/city.png)\n```\ncityscape, concept art, sun shining through clouds, crepuscular rays, trending on art station, 8k\nSteps: 50, Sampler: DDIM, CFG scale: 12\n```\n\n## License\n\nThis model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.\nThe CreativeML OpenRAIL License specifies: \n\n1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content \n2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license\n3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)\n[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaseshi%2Fanimistatics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaseshi%2Fanimistatics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaseshi%2Fanimistatics/lists"}