-
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.
- Loading branch information
Remi Tschupp
committed
Jul 1, 2024
1 parent
5f43ae4
commit 44c0aa5
Showing
1 changed file
with
22 additions
and
0 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,2 +1,24 @@ | ||
# ML_OPS | ||
ML_OPS courses given at Dauphine | ||
|
||
## How to install | ||
|
||
Clone the git in the folder you want to put the code into and enter the folder. | ||
```sh | ||
git clone https://github.com/tschuppr/ML_OPS.git | ||
cd ML_OPS | ||
``` | ||
|
||
Install the venv | ||
```sh | ||
python -m venv . | ||
venv\Scripts\activate # On cmd windows | ||
#activate venv\Scripts\activate # On linux | ||
pip install -r requirements. txt | ||
``` | ||
|
||
## Launch an MLFlow instance | ||
After the environment has been activated you can launch an MLFlow instance using : | ||
```sh | ||
mlflow ui | ||
``` |