Make sure you have taipy
installed in your Python
environment. If not, you can install taipy
by calling:
pip install taipy
To generate the template of this taipy
application, please use:
taipy create --template "default"
To run the application, please use:
python main.py
To run the heart disease sample script, please use:
python sample_heart_disease_prediction_script.py
- How to make the
test_model_task
return the test result and store the accuracy of the model to an Excel file? - How to add
validate_model_task
to validate the trained model and have a split action of train-validate-test instead of just train-test? - How to run only
split_data_task
andtrain_model_task
without runningtest_model_task
and vice versa usingSequence
intaipy
? - How to leverage
taipy
'sstandalone
mode to be used in production?