Ashley Wright
commited on
Commit
•
8e5cedb
1
Parent(s):
720adb1
install_args.txt -> requirements.txt
Browse files- README.md +2 -2
- install_args.txt +0 -1
- requirements.txt +1 -0
README.md
CHANGED
@@ -6,7 +6,7 @@ Some recommendations are as follows:
|
|
6 |
- Installing dependencies should be done in pyproject.toml, including git dependencies
|
7 |
- Compiled models should be included directly in the repository(rather than compiling during loading), loading time matters far more than file sizes
|
8 |
- Avoid changing `src/main.py`, as that includes mostly protocol logic. Most changes should be in `models` and `src/pipeline.py`
|
9 |
-
- Change `
|
10 |
|
11 |
For testing, you need a docker container with pytorch and ubuntu 22.04,
|
12 |
-
you can download your listed dependencies with `pip install
|
|
|
6 |
- Installing dependencies should be done in pyproject.toml, including git dependencies
|
7 |
- Compiled models should be included directly in the repository(rather than compiling during loading), loading time matters far more than file sizes
|
8 |
- Avoid changing `src/main.py`, as that includes mostly protocol logic. Most changes should be in `models` and `src/pipeline.py`
|
9 |
+
- Change `requirements.txt` to add extra arguments to be used when installing the package
|
10 |
|
11 |
For testing, you need a docker container with pytorch and ubuntu 22.04,
|
12 |
+
you can download your listed dependencies with `pip install -r requirements.txt -e .`, and then running `start_inference`
|
install_args.txt
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
|
|
|
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
# Specify any extra options here, like --find-links, --pre, etc. Avoid specifying dependencies here and specify them in pyproject.toml instead
|