-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a proper setup system for others to use
- Loading branch information
Showing
10 changed files
with
10,933 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Project specific information for git | ||
# telling it we always use Unix line endings | ||
|
||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
# We store our ONNX models in git-lfs | ||
*.onnx filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"recommendations": [ | ||
"streetsidesoftware.code-spell-checker", | ||
"ms-python.black-formatter" | ||
"ms-python.black-formatter", | ||
"charliermarsh.ruff", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,30 @@ | ||
# Automated Camera Trapping Identification and Organization Network (ACTION) | ||
|
||
## Setup | ||
|
||
Action is written in Python and requires a number of dependencies and large machine learning models (~778M) to be installed and downloaded. | ||
|
||
The easiest way to use it is with the [pixi](https://prefix.dev/docs/pixi/overview) package manager. Pixi installs everything you need into a local `.pixi` folder (i.e., at the root of the project), without needing to modify your system. | ||
|
||
1. [Clone](https://github.com/humphrem/action.git) this repo using `git` | ||
2. [Install pixi](https://prefix.dev/docs/pixi/overview#installation) | ||
3. Start a terminal and navigate to the root of the Action project folder, `cd action` | ||
4. Enter the command `pixi run setup` to download, install, and setup everything you'll need | ||
|
||
## Using Action | ||
|
||
### Pixi Shell | ||
|
||
Each time you want to use Action, you need to open a terminal and navigate to the Action folder, then start a shell with `pixi`: | ||
|
||
```sh | ||
pixi shell | ||
``` | ||
|
||
This will make all of the dependencies installed with `pixi run setup` available. | ||
|
||
You can exit the pixi shell by using: | ||
|
||
```sh | ||
exit | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.