Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-sa-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-sa-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# 简介 NovelAI Mirror
|
6 |
+
NovelAI 是由 anlatan 创作的人工智能(AI)平台, 提供故事续写和图片生成服务, 是中国ACG爱好者中较早流行的一个AI作画平台。其图片生成功能基于 Stable diffusion 模型, 于 2022 年 10 月 3 日正式推出, 以日本绘画风格二次元为主题。用户可以通过输入关键词(tag)生成图片, 也可使用文本作为输入。生成图片后, 用户可根据需要进行二次调整。然而, 由于平台收费较高, 且成品基于免费开源的训练模型, 因此该项目的模型文件(后缀为 .ckpt)曾被黑客窃取并放出。目前, 许多本地版安装包实际上是以 AUTOMATIC1111 的 Github 项目“stable-diffusion-webui”为 UI 界面, 以本项目的模型文件为内核形成的。
|
7 |
+
|
8 |
+
## 使用 Usage
|
9 |
+
```python
|
10 |
+
from modelscope import snapshot_download
|
11 |
+
model_dir = snapshot_download('Genius-Society/NovelAI')
|
12 |
+
```
|
13 |
+
|
14 |
+
## 维护 Maintenance
|
15 |
+
```bash
|
16 |
+
git clone [email protected]:Genius-Society/NovelAI
|
17 |
+
cd NovelAI
|
18 |
+
```
|
19 |
+
|
20 |
+
## readme.txt
|
21 |
+
```txt
|
22 |
+
.-..-..----..-..-..---..-. .---..-. .-. .---..---..-.,-.
|
23 |
+
| .` || || | \ / | |- | |__ | | || | | |__ | |- | | || . <
|
24 |
+
`-'`-'`----' `' `---'`----'`-^-'`-' `----'`---'`-^-'`-'`-'
|
25 |
+
>>>///One for all, and all for one///>>>
|
26 |
+
|
27 |
+
=== INFO ===
|
28 |
+
|
29 |
+
This LEAK contains NovelAI's trained models and source for Stable Diffusion
|
30 |
+
with some other things.
|
31 |
+
|
32 |
+
IF YOU DON'T WANT THIS LEAK TO DIE, SEED!
|
33 |
+
|
34 |
+
=== FILES ===
|
35 |
+
|
36 |
+
NOTE: Most archives are TAR ZSTD (.tar.zst) compressed.
|
37 |
+
|
38 |
+
- stableckpt/ - Stable Diffusion checkpoints
|
39 |
+
- animefull-latest - The model NovelAI uses in production
|
40 |
+
- workspace/ - Code used to train/run/finetune models
|
41 |
+
- sd-private.tar.zst - Stuff to train Stable Diffusion
|
42 |
+
- github/ - Code taken from GitHub. CREDENTIALS SCRUBBED
|
43 |
+
- novelai/ - From NovelAI org
|
44 |
+
- *.tar.zst Archived git repos, public AND PRIVATE
|
45 |
+
- aboutus.gpg - Our public GPG key
|
46 |
+
- sha256sum - SHA256 sums of every file
|
47 |
+
- sha256sum.sig Detached signature for the sums, signed by our GPG key
|
48 |
+
|
49 |
+
=== FAQ ===
|
50 |
+
|
51 |
+
Q: Does this work out of the box on voldy or hlky's Stable Diffusion web UIs?
|
52 |
+
A: As far as I can tell, no. This is just a leak, so figure it out yourselves!
|
53 |
+
I haven't yet.
|
54 |
+
|
55 |
+
Q: Can we train our own model like NovelAI's?
|
56 |
+
A: Yes, the code is included for that.
|
57 |
+
|
58 |
+
Q: Who are you?
|
59 |
+
A: Anonymous
|
60 |
+
```
|