Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,30 @@ MLFLOW_TRACKING_URI=http://localhost:8080 uv run modelplane annotate --annotator
```
MLFLOW_TRACKING_URI=http://localhost:8080 uv run modelplane annotate --annotator_id {annotator_id1} --annotator_id {annotator_id2} --ensemble_strategy {ensemble_strategy} --experiment expname --response_file path/to/response.csv
```

### Installation Instructions

#### For MacOS

Follow the instructions to install Docker-Desktop and start the application:

https://docs.docker.com/desktop/setup/install/mac-install/


```
./start_services -d
```

_Note: The script will create three folders ../modelplane-flights, /mlflow and /flightpaths/.cache_

Jupyter notebook will be available at port: 8888

MLFlow dashboard will be available at port: 8080

#### For Linux

<TODO>

#### For Windows

<TODO>
5 changes: 5 additions & 0 deletions start_services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ else
SSH_FLAG=""
fi

mkdir -p ../modelplane-flights
mkdir -p mlruns
mkdir -p flightpaths/.cache


docker compose down "${SERVICES[@]}"
docker compose build $SSH_FLAG "${SERVICES[@]}"
docker compose up $DETACHED "${SERVICES[@]}"
Loading