Questions tagged [automl]

Automated Machine Learning (AutoML) is to make machine learning more accessible by automatically generating a data analysis pipeline that can include data pre-processing, feature selection, and feature engineering methods along with machine learning methods and parameter settings

The goal of Automated Machine Learning (AutoML) is to make machine learning more accessible by automatically generating a data analysis pipeline that can include data pre-processing, feature selection, and feature engineering methods along with machine learning methods and parameter settings that are optimized for your data

More and more research and libraries are available on the topic, examples include auto-sklearn, H2O AutoML and Cloud AutoML.

434 questions
-1
votes
1 answer

What site can I find a dataset containing parameters related to the heart condition that I could use to train a machine learning model?

I want to train a machine learning model on anomaly detection and predictive analysis but am not so sure where I could get a reliable dataset that would produce close to a perfect model. So far I have only found not so reliable datasets that cannot…
Fideo
  • 1
  • 1
-1
votes
1 answer

How to group by ID numbers in dataset when running H2O automl

I'm using the H2O package for machine learning. The goal is to use my dataset to estimate new predicted ages for each participant in my dataset. My setup for the code was to get rid of all unnecessary columns in my dataset like sex, race, other…
anonymous
  • 1
  • 1
-1
votes
2 answers

Autokeras StructuredDataClassifier fails after a few trials

I'm using StructuredDataClassifier to train a model and I encounter the following error after a few trials. Trial 3 Complete \[00h 00m 23s\] val_accuracy: 0.9289383292198181 Best val_accuracy So Far: 0.9289383292198181 Total elapsed time: 00h…
Shakuni
  • 11
-1
votes
1 answer

K-fold cross validation in azure ML

I am currently training a model using an azure ML pipeline that i build with sdk. I am trying to add cross-validation to my ml step. I have noticed that you can add this in the parameters when you configure the autoML. My dataset consists of 30%…
-1
votes
1 answer

comparing the output of Automl

im getting different output for feature importance, when I run the automl in azure, google and h2o. even though the data is same and all the features are also same. what would be the reason for it. is there any other method to compare the models
g2021
  • 11
-1
votes
1 answer

can i automate the search for the best neural network architecture to work on a specific task (binary classification on tabular data)?

I am currently working on an auto deep learning project on python on a specific task: binary classification on tabular data. So i automated the preprocessing steps(handling missing data, encoding variables ..) to feed it to the neural network, but i…
-1
votes
1 answer

what is the difference between the mean_squared_error computed in both of these pieces of code? how can I compare metric='mse' to mean_squared_error?

rf_reg = RandomForestRegressor( n_estimators=500, max_depth=30, criterion="mse", max_features=6, n_jobs=-1, …
marrowpie
  • 3
  • 1
-1
votes
1 answer

How can I use AutoML in GCP to predict rare event?

As a title, I tried to use AutoML in Google Cloud Platform to predict some rare results. For example, suppose I have 5 types of independent variables: age, living area, income, family size, and gender. I want to predict a rare event called…
atsang01
  • 207
  • 3
  • 12
-1
votes
1 answer

I can't export a GCP autoML model to a bucket

I already exported models to a bucket before using the WebUI, but today when i am trying to export a new model don't show to me the option to chose where to save the model. After click on 'Container' I already try use the CMD mode but, a error is…
-1
votes
1 answer

MNasNet in object detection

In 《MnasNet: Platform-Aware Neural Architecture Search for Mobile》, the author said that they have plugged their learned model architecture into the open-source TensorFlow Object Detection framework, as a new feature extractor. But I searched the…
-2
votes
1 answer

Error when deploying autoML StackEnsemble model in Azure ML Workspace

I have a StackEnsemble model trained with autoML functionality of the of the Azure ML Workspace. I get an error as below (CrashLoopBackOff) when I try to deploy it as a Webservice. Now, I strongly suspect it has something to do with the model itself…
damucka
  • 1
  • 2
-2
votes
2 answers

ML Classification Problem For Rare Event Always Predicts 0

I have an ML problem. I have an machine learning classification task where the classifications are either -1, 0 or 1. In reality, the vast majority of the time the correct classification is 0, and approx 1% of the time, the answer is -1 or 1. When…
Ludo
  • 2,739
  • 2
  • 28
  • 42
-6
votes
1 answer

How do I fix this syntax error with print in Python?

I copied the Python code that Google Cloud recommends. I've tried it in Jupyter Notebook and as a Python file but I still get the syntax error: def predict(content, project_id, model_id): # More code. pass print predict("1.jpg",…
1 2 3
28
29