epigene commited on
Commit
b57599a
·
verified ·
1 Parent(s): 09650d9

Remove third-party assets, link to original sources

Browse files
Files changed (1) hide show
  1. README.md +11 -31
README.md CHANGED
@@ -29,41 +29,21 @@ Anime image generation that nails anatomy, follows your prompt, and gives you th
29
 
30
  **GitHub**: [teenu/4cgt](https://github.com/teenu/4cgt) | **Website**: [4cgt.com](https://4cgt.com) | **Sponsor**: [GitHub Sponsors](https://github.com/sponsors/teenu)
31
 
32
- ## Assets
33
 
34
- | File | Size | Required |
35
- |------|------|----------|
36
- | `NoobAI-XL-Vpred-v1.0.safetensors` | 6.7 GB | Yes |
37
- | `dora/noobai_vp10_stabilizer_v0.271_fp16.safetensors` | 44 MB | Yes (recommended) |
38
- | `dora/noobai_vp10_stabilizer_v0.280a_fp16.safetensors` | 64 MB | Yes |
39
- | `style/*.csv` | 109 MB | Yes |
40
- | `controlnet/openpose_fp32.safetensors` | 4.7 GB | Optional (pose control) |
41
- | `poses/*.png` | 140 KB | Optional (examples) |
42
 
43
- ## Quick start
44
 
45
- ```bash
46
- git clone https://github.com/teenu/4cgt.git && cd 4cgt
47
- pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu124
48
- pip install -r requirements.txt
 
 
49
 
50
- # Download everything from this repo
51
- pip install huggingface-hub
52
- huggingface-cli download epigene/4cgt --local-dir assets
53
- mv assets/NoobAI-XL-Vpred-v1.0.safetensors . && mv assets/dora/* dora/ && mv assets/style/* style/
54
- rm -rf assets
55
-
56
- python main.py
57
- ```
58
-
59
- ## What makes this different
60
-
61
- - **DoRA anatomical stabilizers** eliminate the melted-face lottery. Characters have correct proportions, every time.
62
- - **600-token prompts** with A1111 weight syntax. Standard CLIP cuts off at 77. 4CGT doesn't.
63
- - **Same seed = same hash.** Byte-identical output across macOS, Windows, Linux. Not "similar" — identical.
64
- - **2D to 3D in <1 second.** Integrated Apple Sharp pipeline. Generate, convert to Gaussian Splat, render flythrough video.
65
- - **Lossless pipeline.** FP16 is rejected on load. BF16/FP32 only. FP32 VAE always.
66
 
67
  ## License
68
 
69
- AGPL-3.0. See [GitHub](https://github.com/teenu/4cgt) for details.
 
29
 
30
  **GitHub**: [teenu/4cgt](https://github.com/teenu/4cgt) | **Website**: [4cgt.com](https://4cgt.com) | **Sponsor**: [GitHub Sponsors](https://github.com/sponsors/teenu)
31
 
32
+ ## About
33
 
34
+ This repo hosts showcase images generated by 4CGT. The tool itself lives on [GitHub](https://github.com/teenu/4cgt).
 
 
 
 
 
 
 
35
 
36
+ 4CGT requires third-party model assets to run. These are not included here — download them from their original sources:
37
 
38
+ | Asset | Source | License |
39
+ |-------|--------|---------|
40
+ | NoobAI XL V-Pred 1.0 (BF16) | [Laxhar/noobai-XL-Vpred-1.0](https://huggingface.co/Laxhar/noobai-XL-Vpred-1.0) | Fair AI Public License 1.0-SD |
41
+ | DoRA stabilizers (v0.271, v0.280a) | [Civitai: reakaakasky](https://civitai.com/models/971952) | See creator's terms |
42
+ | Style CSVs (Danbooru/e621) | [Laxhar/noob-wiki](https://huggingface.co/datasets/Laxhar/noob-wiki) | Apache-2.0 |
43
+ | ControlNet OpenPose SDXL | [xinsir/controlnet-openpose-sdxl-1.0](https://huggingface.co/xinsir/controlnet-openpose-sdxl-1.0) | Apache-2.0 |
44
 
45
+ See the [GitHub README](https://github.com/teenu/4cgt#assets) for full setup instructions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  ## License
48
 
49
+ 4CGT (the tool) is [AGPL-3.0](https://github.com/teenu/4cgt/blob/main/LICENSE). Third-party assets carry their own licenses — see the table above.