@@ -499,8 +499,8 @@ define([
499499 /** Auto ML */
500500 'auto-sklearn-rgs' : {
501501 name : 'AutoSklearnRegressor (Linux only)' ,
502- install : 'pip install auto-sklearn' ,
503- import : 'from autosklearn import AutoSklearnRegressor' ,
502+ install : '! pip install auto-sklearn' ,
503+ import : 'from autosklearn.regression import AutoSklearnRegressor' ,
504504 link : 'https://automl.github.io/auto-sklearn/master/api.html#regression' ,
505505 code : 'AutoSklearnRegressor(${etc})' ,
506506 options : [
@@ -509,7 +509,7 @@ define([
509509 } ,
510510 'tpot-rgs' : {
511511 name : 'TPOTRegressor' ,
512- install : 'pip install tpot' ,
512+ install : '! pip install tpot' ,
513513 import : 'from tpot import TPOTRegressor' ,
514514 code : 'TPOTRegressor(${generation}${population_size}${cv}${random_state}${etc})' ,
515515 options : [
@@ -521,8 +521,8 @@ define([
521521 } ,
522522 'auto-sklearn-clf' : {
523523 name : 'AutoSklearnClassifier (Linux only)' ,
524- install : 'pip install auto-sklearn' ,
525- import : 'from autosklearn import AutoSklearnClassifier' ,
524+ install : '! pip install auto-sklearn' ,
525+ import : 'from autosklearn.classification import AutoSklearnClassifier' ,
526526 link : 'https://automl.github.io/auto-sklearn/master/api.html#classification' ,
527527 code : 'AutoSklearnClassifier(${etc})' ,
528528 options : [
@@ -531,7 +531,7 @@ define([
531531 } ,
532532 'tpot-clf' : {
533533 name : 'TPOTClassifier' ,
534- install : 'pip install tpot' ,
534+ install : '! pip install tpot' ,
535535 import : 'from tpot import TPOTClassifier' ,
536536 code : 'TPOTClassifier(${generation}${population_size}${cv}${random_state}${etc})' ,
537537 options : [
0 commit comments