forked from ostris/ai-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 15
/
cog.yaml
43 lines (41 loc) · 1.04 KB
/
cog.yaml
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
# Configuration for Cog ⚙️
# Reference: https://cog.run/yaml
build:
gpu: true
cuda: "12.1"
python_version: "3.10.14"
python_packages:
- "torch>=2.3"
- "torchvision"
- "safetensors==0.4.4"
- "diffusers==0.30.0"
- "transformers==4.44.0"
- "lycoris-lora==1.8.3"
- "flatten_json==0.1.14"
- "pyyaml==6.0.1"
- "oyaml==1.0"
- "tensorboard==2.17.0"
- "kornia==0.7.3"
- "einops==0.8.0"
- "accelerate==0.33.0"
- "toml==0.10.2"
- "albumentations==1.4.3"
- "opencv-python==4.10.0.84"
- "pillow==10.4.0"
- "pydantic==1.10.17"
- "omegaconf==2.3.0"
- "k-diffusion"
- "open_clip_torch==2.26.1"
- "timm==1.0.8"
- "prodigyopt==1.0"
- "controlnet_aux==0.0.7"
- "bitsandbytes==0.43.3"
- "scikit-image==0.24.0"
- "huggingface-hub==0.24.5"
- "hf_transfer==0.1.8"
- "lpips==0.1.4"
- "optimum-quanto==0.2.4"
- "sentencepiece==0.2.0"
# predict.py defines how predictions are run on your model
predict: "predict.py:Predictor"
train: "train.py:train"