-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a9adc4
commit 2b805bc
Showing
3 changed files
with
39 additions
and
3 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
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Time Series Outlier Detection 101 | ||
|
||
👷🚧 *Under Construction* 🚧👷♀️ |
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Installation | ||
## PyPI | ||
1. Install package via pip | ||
```sh | ||
pip install pyoats | ||
``` | ||
|
||
## Docker | ||
1. Clone the repo | ||
```sh | ||
git clone https://github.com/georgian-io/pyoats.git && cd pyoats | ||
``` | ||
2. Build image | ||
```sh | ||
docker build -t pyoats . | ||
``` | ||
3. Run Container | ||
```sh | ||
# CPU Only | ||
docker run -it pyoats | ||
# with GPU | ||
docker run -it --gpus all pyoats | ||
``` | ||
|
||
## Local | ||
1. Clone the repo | ||
```sh | ||
git clone https://github.com/georgian-io/pyoats.git && cd pyoats | ||
``` | ||
2. Install via Poetry | ||
```sh | ||
poetry install | ||
``` | ||
|