Skip to content

Commit f091b25

Browse files
Setup the project
1 parent ff511c1 commit f091b25

5 files changed

Lines changed: 2260 additions & 0 deletions

File tree

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv
11+
12+
data/*
13+
14+
!**/*/.gitkeep

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

data/.gitkeep

Whitespace-only changes.

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[project]
2+
name = "conditional-vae"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
requires-python = ">=3.12"
6+
dependencies = [
7+
"jupyter>=1.1.1",
8+
"matplotlib>=3.10.7",
9+
"numpy>=2.3.5",
10+
"torch>=2.9.1",
11+
"torchvision>=0.24.1",
12+
"tqdm>=4.67.1",
13+
]

0 commit comments

Comments
 (0)