soutrik commited on
Commit
7cdde12
·
1 Parent(s): 3002ad8

added: latest poetry updated python

Browse files
Files changed (4) hide show
  1. .gitignore +32 -0
  2. README.md +1 -1
  3. poetry.lock +0 -0
  4. pyproject.toml +88 -0
.gitignore ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ aws/
2
+ *.zip
3
+ *.tar.gz
4
+ *.tar.bz2
5
+ .env
6
+ *.pyc
7
+ *.cpython-*.*
8
+ src/__pycache__/
9
+ src/*.egg-info/
10
+ src/dist/
11
+ src/build/
12
+ src/.eggs/
13
+ src/.pytest_cache/
14
+ src/.mypy_cache/
15
+ src/.tox/
16
+ src/.coverage
17
+ src/.vscode/
18
+ src/.vscode-test/
19
+ app/core/__pycache__/
20
+ src/__pycache__/test_infra.cpython-310.pyc
21
+ app/core/__pycache__/config.cpython-310.pyc
22
+ data/
23
+ !configs/data/
24
+ checkpoints/
25
+ logs/
26
+ /data
27
+ artifacts/
28
+ artifacts/*
29
+ *png
30
+ *jpg
31
+ *jpeg
32
+ artifacts/image_prediction.png
README.md CHANGED
@@ -1 +1 @@
1
- # gradio_experiments
 
1
+ In this repo we will discuss about the key elements of gradio for model deployment.
poetry.lock ADDED
The diff for this file is too large to render. See raw diff
 
pyproject.toml ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [tool.poetry]
2
+ name = "pytorch_fastapi_project"
3
+ version = "0.1.0"
4
+ description = "Consolidated PyTorch and FastAPI project for AWS deployment and GHA testing"
5
+ authors = ["soutrik71 <[email protected]>"]
6
+ license = "Apache-2.0"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "3.12.6"
11
+ black = "24.8.0"
12
+ coverage = ">=7.6.1"
13
+ hydra-colorlog = "1.2.0"
14
+ hydra-core = "1.3.2"
15
+ lightning = {version = "2.4.0", extras = ["extra"]}
16
+ loguru = "0.7.2"
17
+ pytest = "^8.3.3"
18
+ rich = "13.8.1"
19
+ rootutils = "1.0.7"
20
+ tensorboard = "2.17.1"
21
+ timm = "1.0.9"
22
+ pandas = "^2.2.3"
23
+ numpy = "^1.26.0"
24
+ torch = {version = "^2.4.1", source = "pytorch_cuda"}
25
+ torchvision = {version = "^0.19.1", source = "pytorch_cuda"}
26
+ torchaudio = {version = "^2.4.1", source = "pytorch_cuda"}
27
+ seaborn = "^0.13.2"
28
+ pydantic = "^2.9.2"
29
+ kaggle = "^1.6.17"
30
+ pytest-cov = "^5.0.0"
31
+ pytest-mock = "^3.14.0"
32
+ flake8 = "^7.1.1"
33
+ dvc-gdrive = "^3.0.1"
34
+ dvc-azure = "^3.1.0"
35
+ transformers = "^4.45.2"
36
+ fastapi = "^0.115.4"
37
+ pydantic-settings = "^2.6.1"
38
+ uvicorn = "^0.32.0"
39
+ tenacity = "^9.0.0"
40
+ gunicorn = "^23.0.0"
41
+ aim = "^3.25.0"
42
+ mlflow = "^2.17.1"
43
+ hydra-optuna-sweeper = "^1.2.0"
44
+ dvc = "^3.56.0"
45
+ platformdirs = "3.10"
46
+ fastapi-utils = "^0.7.0"
47
+ httpx = "^0.27.2"
48
+ typing-inspect = "^0.9.0"
49
+ requests = "^2.32.3"
50
+ fastapi-restful = {extras = ["all"], version = "^0.6.0"}
51
+ aioredis = "^2.0.1"
52
+ psycopg2-binary = "^2.9.10"
53
+ asyncpg = "^0.30.0"
54
+ confluent-kafka = "^2.6.0"
55
+ aiokafka = "^0.12.0"
56
+ azure-servicebus = "^7.12.3"
57
+ aiohttp = "^3.10.10"
58
+ aiofiles = "^24.1.0"
59
+ aiologger = "^0.7.0"
60
+ pyyaml = "^6.0.2"
61
+ sqlalchemy-utils = "^0.41.2"
62
+ sqlalchemy = "^2.0.36"
63
+ alembic = "^1.13.3"
64
+ fastapi-limiter = "^0.1.6"
65
+ redis = "5.0.8"
66
+ redisearch = "2.0.0"
67
+ python-dotenv = "^1.0.1"
68
+ celery = "^5.4.0"
69
+ fastapi-cache2 = "^0.2.2"
70
+ aiocache = "^0.12.3"
71
+ dvc-s3 = "^3.2.0"
72
+ litserve = "^0.2.4"
73
+ gpustat = "^1.1.1"
74
+ nvitop = "^1.3.2"
75
+ gradio = "*"
76
+ gradio-client = "^1.5.0"
77
+
78
+ [tool.poetry.dev-dependencies]
79
+ pytest-asyncio = "^0.20.3"
80
+
81
+ [[tool.poetry.source]]
82
+ name = "pytorch_cuda"
83
+ url = "https://download.pytorch.org/whl/cu124"
84
+ priority = "explicit"
85
+
86
+ [build-system]
87
+ requires = ["poetry-core"]
88
+ build-backend = "poetry.core.masonry.api"