Skip to content

Commit

Permalink
Demo Scenarios: modified model download script to use curl instead of…
Browse files Browse the repository at this point in the history
… wget, to make it easier on systems that only have curl by deafult
  • Loading branch information
sebastian-echeverria committed Jan 7, 2025
1 parent 9dfd993 commit 2c32d2f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion demo/scenarios/demo_script.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
Pre-Demo Steps:
- Execute the Requirements and Demos steps from the Setup seciton in https://mlte.readthedocs.io/en/latest/development/#quickstart.
- (Optional) Install wget.
- Execute all notebooks so that the results can be seen in the notebooks themselves. This can be done in VSCode, or in another program that runs Jupyter Notebooks. Be sure to run the notebooks in the virtual environment created at the beginning, so that all dependencies are installed.
- Ensure that the Docker daemon is running.
- Execute run_environment.sh from demo/scenarios to get the frontend and backend working.
Expand Down
2 changes: 1 addition & 1 deletion demo/scenarios/get_model.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env bash
wget 'https://docs.google.com/uc?export=download&id=15kAII1kOPGIAI46OP01ecNkq4tdf5yXw' -O ./model/model_f_a.h5
curl -o ./model/model_f_a.h5 -L "https://docs.google.com/uc?export=download&id=15kAII1kOPGIAI46OP01ecNkq4tdf5yXw"

0 comments on commit 2c32d2f

Please sign in to comment.