Views
No views yet
.
├─ src/
│ ├─ data/ # 角色与翻译表
│ │ ├─ characters.json
│ │ ├─ trans.json
│ │ └─ cn-jp.json
│ ├─ training/ # 训练脚本
│ │ └─ train.py
│ ├─ inference/ # 推理脚本
│ │ ├─ inference_gui.py
│ │ └─ inference_cli.py
│ ├─ apps/ # Web 管理工具
│ │ ├─ dataset_manager.py
│ │ └─ templates/
│ ├─ dataset/ # 数据集清理/修复/验证
│ └─ dedup/ # 去重与相似图像工具
├─ data/
│ └─ datasets/
│ └─ touhou-embeddings-dataset/
│ ├─ labels.csv
│ └─ images/
│ ├─ train/
│ └─ val/
├─ runs/
│ ├─ output/ # 训练权重与曲线
│ └─ logs/ # 运行日志
├─ tools/
│ ├─ plot_training_metrics.py
│ └─ debug/
│ └─ test_func/ # 调试/临时数据
└─ third_party/
└─ Fast-Danbooru-Dataset-DL/ # 第三方数据集下载工具(独立 README)pip install -r requirements.txtdata/datasets/touhou-embeddings-dataset/
└─ touhou-embeddings-dataset/
├─ labels.csv
└─ images/
├─ train/
└─ val/python src/training/train.pyruns/output/
├─ best_model.pth
├─ model_epoch_*.pth
└─ training_state.pthpython src/inference/inference_gui.pypython src/inference/inference_cli.py --image <path> --threshold 0.3 --top-n 10python third_party/Fast-Danbooru-Dataset-DL/app.pythird_party/Fast-Danbooru-Dataset-DL/launch.batpython src/dataset/clean_dataset.pypython src/dataset/fix_image_locations.pypython src/dataset/adjust_train_val_split.pypython src/dataset/validate_labels.pypython src/dataset/enrich_dataset.pypython src/dedup/remove_duplicates_md5.pypython src/dedup/remove_duplicate_images_dhash.pypython src/dedup/check_hash_distance.pypython src/dedup/visualize_similar_images.pypython src/apps/dataset_manager.py