Skip to content

Commit d5c169c

Browse files
committed
initial commit
0 parents  commit d5c169c

File tree

8 files changed

+64
-0
lines changed

8 files changed

+64
-0
lines changed

.env.example

Whitespace-only changes.

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Byte‐compiled / optimized / DLL files / .cache / .egg-info / setup / tars
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
.cache
6+
.pytest_cache
7+
.ruff_cache
8+
*.egg-info/
9+
build/
10+
.gradio
11+
*.tar.gz
12+
13+
# secrets
14+
.env
15+
16+
# wandb
17+
wandb/
18+
19+
# datasets
20+
data/
21+
22+
# outputs
23+
outputs/
24+
25+
# venv
26+
.venv

.pre-commit-config.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 24.4.2
4+
hooks:
5+
- id: black
6+
- repo: https://github.com/astral-sh/ruff-pre-commit
7+
rev: v0.3.0
8+
hooks:
9+
- id: ruff

README.md

Whitespace-only changes.

notebooks/experiments/00_model_outline.ipynb

Whitespace-only changes.

requirements-dev.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
black
2+
ruff
3+
pytest
4+
pre-commit

requirements.txt

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

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name="any_chatbot",
5+
version="0.1.0",
6+
packages=find_packages(where="src"),
7+
package_dir={"": "src"},
8+
install_requires=[
9+
# "python-dotenv",
10+
# "numpy",
11+
# "wandb",
12+
# "gradio",
13+
"ipykernel",
14+
# "matplotlib",
15+
# "torch",
16+
# "torchvision",
17+
# "accelerate",
18+
# "segmentation-models-pytorch",
19+
# "gdown",
20+
# "tqdm",
21+
# "torchmetrics[image]",
22+
# "boto3",
23+
],
24+
)

0 commit comments

Comments
 (0)