cardosolucas commented on a change in pull request #33: Add AutoML support and 
examples
URL: https://github.com/apache/incubator-marvin/pull/33#discussion_r324733019
 
 

 ##########
 File path: 
python-toolbox/marvin_python_toolbox/management/templates/python-engine/install_automl.sh
 ##########
 @@ -0,0 +1,35 @@
+#!/bin/sh
+###############################################
+# Marvin AutoML installation Script           #
+###############################################
+cmd=(dialog --title "Marvin AutoML" --separate-output --checklist "Select 
tools:" 22 76 16)
+options=(1 "auto-sklearn" off    # any option can be set to default to "on"
+         2 "h2o AutoML" off
+         3 "TPOT" off)
+choices=$("${cmd[@]}" "${options[@]}" 2>&1 >/dev/tty)
+clear
+for choice in $choices
+do
+    case $choice in
+        1)
+            echo "Instaling auto-sklearn..."
+            wget 
https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt \
+                 | xargs -n 1 -L 1 pip install
+            pip install auto-sklearn
+            ;;
+        2)
+            echo "Installing h2o..."
 
 Review comment:
   He's open source, under Apache 2.0 License. So I don't think that will be an 
issue.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to