Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
c4d7039
adding pydantic library to installation
crangelsmith Nov 3, 2023
49142e4
moving configuration setup from utils to config.py
crangelsmith Nov 3, 2023
251476a
removing configuration from utils.py
crangelsmith Nov 7, 2023
7fc1c3e
updating config mode
crangelsmith Nov 7, 2023
b75c53f
updating configuration to use pydantic
crangelsmith Nov 8, 2023
42647cb
adding tests for new configuration
crangelsmith Nov 8, 2023
93eeeec
always defining VIS_POSE_CLASS
crangelsmith Nov 8, 2023
e14dcc4
moving global variables to a settings.py file
crangelsmith Nov 8, 2023
f4bfa95
adding extra tests on configuration validation
crangelsmith Nov 8, 2023
fd9826e
move call from config to settings
crangelsmith Nov 8, 2023
c41ae92
updating pipeline test to run on new configuration setup
crangelsmith Nov 8, 2023
9df7d8f
VIS_POSE_CLASS default should be None
crangelsmith Nov 8, 2023
b390de9
precommit
crangelsmith Nov 8, 2023
930876a
adding extra test from writing file
crangelsmith Nov 8, 2023
8b10e01
updating readme with test running instructions
crangelsmith Nov 8, 2023
c169b52
improving the way temporary directories are created in tests
crangelsmith Nov 8, 2023
811db56
improving the way temporary directories are created in tests
crangelsmith Nov 8, 2023
b64eb00
making limit optional in config validaiton
crangelsmith Nov 8, 2023
deb16e8
Update README.md
crangelsmith Nov 13, 2023
262844e
Update README.md
crangelsmith Nov 13, 2023
483de5d
precommit readme fix
crangelsmith Nov 15, 2023
4abe8bb
Update README.md
crangelsmith Nov 16, 2023
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
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,14 @@ is:
python -m pip install -e ."[test]"
```

> Note: This is the preferred option for running on Turing macOS laptops.
run tests locally from this same working directory as installation (root of this
repository):

```
python -m pytest -s -W ignore
```

> Note: This is the preferred option for running on macOS laptops.

> Warning: M1 macOS can not do
> [pytorch paralelisation](https://github.com/pytorch/pytorch/issues/70344). A
Expand Down Expand Up @@ -65,9 +72,12 @@ conda install -c anaconda pillow
conda install -c conda-forge mrcfile
conda install -c conda-forge altair
conda install -c conda-forge umap-learn
conda install -c conda-forge tensorboard
conda install -c conda-forge matplotlib
conda install -c anaconda click
conda install pytorch torchvision pytorch-cuda=11.6 -c pytorch -c nvidia
pip install pyyaml
pip install pydantic
```

if the follwoing error occurs:
Expand Down
Loading