File size: 2,157 Bytes
0ccb3d3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
title: train_use_models
license: other
tags:
- lora-training
- base-model
---

# train_use_models — 训练用模型仓库

本仓库存放 **lora-scripts-anima 训练所需的模型文件**(训练底模、VAE、文本编码器等),
供训练器从 Hugging Face 直接下载使用。所有模型均为从原始出处转载,未经任何修改。

## 索引 / Index

### 训练底模 / Base models

| 模型名称 | 版本 | 文件 | 说明 | 来源 |
|---|---|---|---|---|
| Any Anima (for LoRA training) | 1.0.2 | `any-anima-for-lora-training/anyAnimaForLora_102.safetensors` | 专为 LoRA 训练调整的 Anima 底模(`discrete_flow_shift` 1→3),不适合直接生成图像 | [Civitai](https://civitai.red/models/2454865/any-anima-for-lora-training?modelVersionId=3017846)(作者 RedRayz) |

## 目录结构 / Structure

```
README.md      # 本索引(人类可读)
index.json     # 机器可读清单,训练器用这个枚举与下载(名称/版本/路径/SHA256/参数提示/出处)
<model-key>/   # 每个模型一个子目录,目录名即 index.json 中的 id
  ├── *.safetensors
  └── README.md   # 该模型的详情
```

## 下载 / Download

```bash
# 训练器侧:按 index.json 中的 file 逐文件下载,落到本地 models/ 目录
hf download ame-la/train_use_models any-anima-for-lora-training/anyAnimaForLora_102.safetensors --local-dir models/
# 或整仓快照
hf download ame-la/train_use_models --local-dir models/
```

## 添加新模型 / Adding a model

1. 将模型文件放入新子目录(目录名用小写横线,如 `anima-base-v1.0/`),附上该模型的 `README.md`(注明原作者、原始出处、许可条款、推荐训练参数);
2.`index.json``models` 数组中新增条目(`id``name``version``file``sha256``size_bytes``group``params``source``download_url`);
3. 在本文件索引表中补充一行。

> 转载规则:遵守原模型的许可条款。若原条款不允许更改许可证(如 Civitai 的默认条款),
> 仓库级 license 字段保持 `other`,具体条款写在各模型的 README 中。