lukiod commited on
Commit
89e3833
·
verified ·
1 Parent(s): 8d7600a

Upload 2 files

Browse files
ckpt_000-vloss_0.4685_vf1_0.6469.ckpt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:acb56cef48189756b7fd4487aeb2c2149cd97b4ae57d2f4c1ae9f4026e7ed69e
3
+ size 769254346
requirements.txt ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # requirements.txt
2
+ # Cleaned for deployment on Render (Linux CPU environment)
3
+
4
+ aiofiles==23.2.1
5
+ aiohappyeyeballs==2.4.6
6
+ aiohttp==3.11.12
7
+ aiosignal==1.3.2
8
+ albucore==0.0.23 # Optional: Include only if used at runtime
9
+ albumentations==2.0.5 # Optional: Include only if used at runtime
10
+ annotated-types==0.7.0
11
+ antlr4-python3-runtime==4.9.3
12
+ anyio==4.8.0
13
+ async-timeout==5.0.1
14
+ attrs==25.1.0
15
+ blinker==1.9.0
16
+ certifi==2025.1.31
17
+ charset-normalizer==3.4.1
18
+ click==8.1.8
19
+ fastapi==0.115.8
20
+ ffmpy==0.5.0 # Optional: Include only if used at runtime (ensure ffmpeg installed on Render)
21
+ filelock==3.13.1
22
+ Flask==3.1.0 # Include if using Flask
23
+ flask-cors==5.0.1 # Include if using Flask
24
+ frozenlist==1.5.0
25
+ fsspec==2024.6.1
26
+ gradio==5.17.1 # Include if using Gradio
27
+ gradio_client==1.7.1 # Optional: Include if app acts as Gradio client
28
+ h11==0.14.0
29
+ httpcore==1.0.7
30
+ httpx==0.28.1
31
+ huggingface-hub==0.29.1 # Include if downloading from HF Hub
32
+ hydra-core==1.3.2 # Include if using Hydra
33
+ idna==3.10
34
+ itsdangerous==2.2.0
35
+ Jinja2==3.1.4
36
+ lightning==2.5.0.post0 # Include if using PL runtime features
37
+ lightning-utilities==0.12.0 # Include if using PL runtime features
38
+ markdown-it-py==3.0.0
39
+ MarkupSafe==2.1.5
40
+ mdurl==0.1.2
41
+ mpmath==1.3.0 # Dependency of sympy
42
+ multidict==6.1.0
43
+ networkx==3.3 # Include if using networkx
44
+ numpy==2.1.2
45
+ omegaconf==2.3.0 # Include if using Hydra/OmegaConf
46
+ opencv-python-headless==4.11.0.86 # Optional: Include only if used at runtime
47
+ orjson==3.10.15
48
+ pandas==2.2.3 # Include if using Pandas
49
+ pillow==11.0.0
50
+ protobuf==5.29.3
51
+ pydantic==2.10.6
52
+ pydantic_core==2.27.2
53
+ pydub==0.25.1 # Optional: Include only if used at runtime (ensure ffmpeg installed on Render)
54
+ pyparsing==3.2.1
55
+ python-multipart==0.0.20
56
+ pytorch-lightning==2.5.0.post0 # Include if using PL runtime features (matches 'lightning')
57
+ pytz==2025.1
58
+ PyYAML==6.0.2
59
+ regex==2024.11.6
60
+ requests==2.32.3
61
+ rich==13.9.4 # Optional: Useful for logging/Typer, low overhead
62
+ safehttpx==0.1.6
63
+ safetensors==0.5.2 # Recommended for loading HF models
64
+ scipy==1.15.2 # Include if using SciPy functions
65
+ semantic-version==2.10.0
66
+ sentry-sdk==2.22.0 # Optional: Include only if using Sentry
67
+ setproctitle==1.3.5 # Optional: Low overhead, might be used by server/workers
68
+ shellingham==1.5.4
69
+ simsimd==6.2.1 # Keep, potentially used by numerical libs
70
+ sniffio==1.3.1
71
+ starlette==0.45.3
72
+ stringzilla==3.12.0 # Keep, potentially used by other libs
73
+ sympy==1.13.1 # Optional: Include only if performing symbolic math
74
+ tokenizers==0.21.0 # Include if using HF Transformers
75
+ torch==2.5.1 # Installs CPU version by default
76
+ torchaudio==2.5.1 # Include if processing audio with Torch
77
+ torchvision==0.20.1 # Include if processing images with Torch
78
+ torchmetrics==1.6.2 # Optional: Include only if calculating metrics at runtime
79
+ tqdm==4.67.1 # Optional: Useful for progress logging
80
+ transformers==4.49.0 # Include if using HF Transformers
81
+ # typer==0.15.1 # Optional: Include only if using Typer for CLI commands
82
+ tzdata==2025.1
83
+ urllib3==2.3.0
84
+ uvicorn==0.34.0 # Essential for FastAPI/Gradio
85
+ websockets==14.2
86
+ Werkzeug==3.1.3 # Essential for Flask