Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Begin to slim down dependencies #44

Merged
merged 8 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ assets/*
*.ply
*.zip
*.npz
*.txt
*.pdf
*.pkl
.DS_Store
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pip install git+https://github.com/probcomp/genjax.git@v0.1.0
Install JAX and Torch:
```
pip install --upgrade "jax[cuda11_pip]" -f https://storage.googleapis.com/jax-releases/jax_cuda_releases.html
pip install torch torchvision torchaudio --upgrade --index-url https://download.pytorch.org/whl/cu118
pip install torch torchvision --upgrade --index-url https://download.pytorch.org/whl/cu118
```

Download model and data assets:
Expand Down Expand Up @@ -86,6 +86,8 @@ sudo apt-get update
sudo apt-get install ninja-build
```

I did somethi!

To check your CUDA version:
```
nvcc --version
Expand Down
28 changes: 28 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,31 @@
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"

[project]
name = "bayes3d"
authors = [
{name = "Nishad Gothoskar", email = "nishadg@mit.edu"},
]
description = "Probabilistic inference in 3D."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"artificial-intelligence",
"probabilistic-programming",
"bayesian-inference",
"differentiable-programming"
]
license = {text = "Apache 2.0"}
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dynamic = ["version"]

[tool.ruff]
exclude = [
".bzr",
Expand Down
8 changes: 8 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
ipython
jupyter
jupterlab
joblib
flax
mkdocs
mkdocs-material
pyliblzfse
26 changes: 0 additions & 26 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,39 +1,13 @@
scikit-learn
wheel
ipython
jupyter
numpy
matplotlib
pillow
opencv-python
open3d
graphviz
distinctipy
trimesh
ninja
pyransac3d
meshcat
h5py
gdown
pytest
zmq
plyfile
jupyterlab
imageio
timm
joblib
pdoc3
addict
tensorflow-probability
flax
omegaconf
fvcore
iopath
submitit
wget
mkdocs
mkdocs-material
natsort
pyliblzfse
pypng
tyro
Loading