{"id":4163,"date":"2020-09-23T13:43:46","date_gmt":"2020-09-23T13:43:46","guid":{"rendered":"https:\/\/47billion.com\/?p=4163"},"modified":"2024-12-23T05:15:58","modified_gmt":"2024-12-23T05:15:58","slug":"a-brief-introduction-to-automl-tools-part-2-gama","status":"publish","type":"post","link":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/","title":{"rendered":"A Brief Introduction To AutoML Tools (Part 2 – GAMA)"},"content":{"rendered":"\n

This blog is the second part of my series of blogs \u201cA brief introduction to AutoML Tools\u201d. In the previous blog, I covered up everything about MLBox<\/strong>, so I recommend you to go through that blog first.<\/p>\n\n\n\n


For comparison, I will be using the same dataset –  Framingham Heart Study<\/strong><\/a>. It has a considerable amount of missing values which will give you an idea of how these tools handle missing values. The goal is to compare all the three tools based on the following:
<\/p>\n\n\n\n

-> Accuracy Achieved <\/p>\n\n\n\n

-> Ease to understand and implement a score<\/p>\n\n\n\n

-> Time taken to complete the task <\/p>\n\n\n\n


In this blog, I will be sharing my experience of implementing GAMA.<\/p>\n\n\n\n


A Brief Intro to GAMA:<\/strong> <\/p>\n\n\n\n

GAMA – Genetic Automated Machine learning Assistant<\/a><\/p>\n\n\n\n

According to the official documents of GAMA, <\/p>\n\n\n\n


GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline<\/em>. A machine learning pipeline contains data preprocessing (e.g. PCA, normalization) as well as a machine learning algorithm (e.g. Logistic Regression, Random Forests), with fine-tuned hyper-parameter settings (e.g. number of trees in a Random Forest). GAMA uses multiple search procedures to implement the pipeline and also combines multiple tuned machine learning pipelines into an ensemble, which on average should help model performance. <\/p>\n\n\n\n


This takes away the knowledge and labor-intensive work of selecting the right algorithms and tuning their hyper-parameters yourself. <\/p>\n\n\n\n


Installation:<\/strong><\/p>\n\n\n\n

Considering you already have pip, installing GAMA is very easy and straightforward. Just run the following line <\/p>\n\n\n\n

\"\"<\/figure>\n\n\n\n


Okay now let’s get started<\/strong><\/p>\n\n\n\n

Import packages:

GAMA, for now, provides AutoML for the following task:<\/p>\n\n\n\n

  • Binary Classification <\/li>
  • Multiclass Classification<\/li>
  • Regression
    <\/li><\/ul>\n\n\n\n

    First, we need to import the library. <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n

    For both the classification task, we have to import the following package: <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n

    And for the regression task, we have to import the following package: <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n

    Other libraries to be imported: <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n


    Step 1: Getting the data and splitting it into train, test: <\/strong><\/p>\n\n\n\n

    We need to manually import the data and split it into train and test data. <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n


    Step 2: Create an object of GAMAClassifier Class and fit the model<\/strong><\/p>\n\n\n\n

    We need to create an object of GAMAClassifier Class and define the required parameters. <\/p>\n\n\n\n

    \"\"<\/figure>\n\n\n\n

    Parameters: <\/p>\n\n\n\n

    • max_total_time: Time in seconds that can be used for the fit call.<\/li>
    • scoring : Specifies the metrics to optimize.<\/li>
    • n_jobs : The number of parallel processes that may be created to speed up to fit.<\/li><\/ul>\n\n\n\n


      Now, we need to fit the model on the train data as shown below: <\/p>\n\n\n\n

      \"\"<\/figure>\n\n\n\n

      Step 3: Prediction<\/strong><\/p>\n\n\n\n

      This is the step in which the model make predictions on the test data: <\/p>\n\n\n\n

      \"\"<\/figure>\n\n\n\n

      That’s it, you are done with GAMA. This is amazing right!! <\/p>\n\n\n\n

      <\/p>\n\n\n\n

      \"\"<\/figure>\n\n\n\n

      Code Export(optional)<\/strong><\/p>\n\n\n\n

      It is possible to have GAMA export the final model definition as a Python file<\/p>\n\n\n\n

      \"\"<\/figure>\n\n\n\n


      4) Conclusion on GAMA:<\/strong><\/p>\n\n\n\n

      1) GAMA involves just 3 steps to complete the whole AutoML Pipeline. <\/p>\n\n\n\n

      2) The average taken for data preprocessing, hyper-parameter selection and training is 4 mins and 30 sec. <\/p>\n\n\n\n

      I used Google Colab to run this tool so results vary according to which system you are using. <\/p>\n\n\n\n

      3) The accuracy achieved in default configuration is 83%. <\/p>\n\n\n\n

      4) Ease to understand and implement score: <\/p>\n\n\n\n


      I will give this library 8\/10 for ease to understand and implement. It is very simple to implement as it involves only 3 major steps. The official document provided is very easy to understand.  It provides a detailed explanation of the API and also provides benchmark results<\/strong> of GAMA and other famous AutoML tools. Which is interesting to explore. But, you won’t find any good blogs regarding GAMA. So, the official document and this blog is the only way to go. <\/p>\n\n\n\n


      5) Pros and Cons of GAMA:<\/strong><\/p>\n\n\n\n


      The pros are:
      <\/p>\n\n\n\n

      • Automatic task identification i.e. Classification(Binary,Multi) or Regression<\/li>
      • Very easy to implement with minimal lines of code.<\/li>
      • Achieves accuracy similar to other famous tools.<\/li>
      • Also provides its own dashboard (gamadash) which is not completely available but is functional to get some early feedback. GAMA Dashboard is a graphical user interface to start and monitor the AutoML search.<\/li>
      • Also provides visualization as a part of gamadash.<\/li>
      • Provides benchmarks of GAMA and other AutoML tools.<\/li><\/ul>\n\n\n\n


        The cons are:
        <\/p>\n\n\n\n

        • It can only load csv and arff files for now. <\/li>
        • Still under development so cannot be used for production.<\/li>
        • Had to manually specify the task by importing GamaClassifier or GAMARegressor.<\/li>
        • Cannot be used for deep learning tasks like image classification or object detections or test prediction. <\/li>
        • Doesn’t show any information regarding what’s going on in the backend, unless we print it explicitly. <\/li><\/ul>\n\n\n\n


          The next and final blog is about AutoGluon. <\/strong> <\/p>\n","protected":false},"excerpt":{"rendered":"

          This blog is the second part of my series of blogs \u201cA brief introduction to AutoML Tools\u201d. In the previous blog, I covered up everything about MLBox, so I recommend you to go through that blog first. For comparison, I will be using the same dataset –  Framingham Heart Study. It has a considerable amount of missing values which will give you an idea of how these tools handle missing values. The goal is to compare all the three tools based on the following: -> Accuracy Achieved  -> Ease to understand and implement a score -> Time taken to complete the task In this blog, I will be sharing my experience of implementing GAMA. A Brief Intro to GAMA: GAMA – Genetic Automated Machine learning Assistant According to the official documents of GAMA, GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline. A machine learning pipeline contains data preprocessing (e.g. PCA, normalization) as well as a machine learning algorithm (e.g. Logistic Regression, Random Forests), with fine-tuned hyper-parameter settings (e.g. number of trees in a Random Forest). GAMA uses multiple search procedures to implement the pipeline and also combines multiple tuned machine learning pipelines into an ensemble, which on average should help model performance. This takes away the knowledge and labor-intensive work of selecting the right algorithms and tuning their hyper-parameters yourself. Installation: Considering you already have pip, installing GAMA is very easy and straightforward. Just run the following line Okay now let’s get started Import packages: GAMA, for now, provides AutoML for the following task: Binary Classification  Multiclass Classification Regression First, we need to import the library. For both the classification task, we have to import the following package: And for the regression task, we have to import the following package: Other libraries to be imported: Step 1: Getting the data and splitting it into train, test: We need to manually import the data and split it into train and test data. Step 2: Create an object of GAMAClassifier Class and fit the model We need to create an object of GAMAClassifier Class and define the required parameters. Parameters: max_total_time: Time in seconds that can be used for the fit call. scoring : Specifies the metrics to optimize. n_jobs : The number of parallel processes that may be created to speed up to fit. Now, we need to fit the model on the train data as shown below: Step 3: Prediction This is the step in which the model make predictions on the test data: That’s it, you are done with GAMA. This is amazing right!! Code Export(optional) It is possible to have GAMA export the final model definition as a Python file 4) Conclusion on GAMA: 1) GAMA involves just 3 steps to complete the whole AutoML Pipeline. 2) The average taken for data preprocessing, hyper-parameter selection and training is 4 mins and 30 sec. I used Google Colab to run this tool so results vary according to which system you are using. 3) The accuracy achieved in default configuration is 83%. 4) Ease to understand and implement score: I will give this library 8\/10 for ease to understand and implement. It is very simple to implement as it involves only 3 major steps. The official document provided is very easy to understand.  It provides a detailed explanation of the API and also provides benchmark results of GAMA and other famous AutoML tools. Which is interesting to explore. But, you won’t find any good blogs regarding GAMA. So, the official document and this blog is the only way to go. 5) Pros and Cons of GAMA: The pros are: Automatic task identification i.e. Classification(Binary,Multi) or Regression Very easy to implement with minimal lines of code. Achieves accuracy similar to other famous tools. Also provides its own dashboard (gamadash) which is not completely available but is functional to get some early feedback. GAMA Dashboard is a graphical user interface to start and monitor the AutoML search. Also provides visualization as a part of gamadash. Provides benchmarks of GAMA and other AutoML tools. The cons are: It can only load csv and arff files for now.  Still under development so cannot be used for production. Had to manually specify the task by importing GamaClassifier or GAMARegressor. Cannot be used for deep learning tasks like image classification or object detections or test prediction.  Doesn’t show any information regarding what’s going on in the backend, unless we print it explicitly. The next and final blog is about AutoGluon.<\/p>\n","protected":false},"author":1,"featured_media":4179,"comment_status":"closed","ping_status":"open","sticky":false,"template":"template-default.php","format":"standard","meta":{"_acf_changed":false,"ocean_post_layout":"","ocean_both_sidebars_style":"","ocean_both_sidebars_content_width":0,"ocean_both_sidebars_sidebars_width":0,"ocean_sidebar":"","ocean_second_sidebar":"","ocean_disable_margins":"enable","ocean_add_body_class":"","ocean_shortcode_before_top_bar":"","ocean_shortcode_after_top_bar":"","ocean_shortcode_before_header":"","ocean_shortcode_after_header":"","ocean_has_shortcode":"","ocean_shortcode_after_title":"","ocean_shortcode_before_footer_widgets":"","ocean_shortcode_after_footer_widgets":"","ocean_shortcode_before_footer_bottom":"","ocean_shortcode_after_footer_bottom":"","ocean_display_top_bar":"default","ocean_display_header":"default","ocean_header_style":"","ocean_center_header_left_menu":"","ocean_custom_header_template":"","ocean_custom_logo":0,"ocean_custom_retina_logo":0,"ocean_custom_logo_max_width":0,"ocean_custom_logo_tablet_max_width":0,"ocean_custom_logo_mobile_max_width":0,"ocean_custom_logo_max_height":0,"ocean_custom_logo_tablet_max_height":0,"ocean_custom_logo_mobile_max_height":0,"ocean_header_custom_menu":"","ocean_menu_typo_font_family":"","ocean_menu_typo_font_subset":"","ocean_menu_typo_font_size":0,"ocean_menu_typo_font_size_tablet":0,"ocean_menu_typo_font_size_mobile":0,"ocean_menu_typo_font_size_unit":"px","ocean_menu_typo_font_weight":"","ocean_menu_typo_font_weight_tablet":"","ocean_menu_typo_font_weight_mobile":"","ocean_menu_typo_transform":"","ocean_menu_typo_transform_tablet":"","ocean_menu_typo_transform_mobile":"","ocean_menu_typo_line_height":0,"ocean_menu_typo_line_height_tablet":0,"ocean_menu_typo_line_height_mobile":0,"ocean_menu_typo_line_height_unit":"","ocean_menu_typo_spacing":0,"ocean_menu_typo_spacing_tablet":0,"ocean_menu_typo_spacing_mobile":0,"ocean_menu_typo_spacing_unit":"","ocean_menu_link_color":"","ocean_menu_link_color_hover":"","ocean_menu_link_color_active":"","ocean_menu_link_background":"","ocean_menu_link_hover_background":"","ocean_menu_link_active_background":"","ocean_menu_social_links_bg":"","ocean_menu_social_hover_links_bg":"","ocean_menu_social_links_color":"","ocean_menu_social_hover_links_color":"","ocean_disable_title":"default","ocean_disable_heading":"default","ocean_post_title":"","ocean_post_subheading":"","ocean_post_title_style":"","ocean_post_title_background_color":"","ocean_post_title_background":0,"ocean_post_title_bg_image_position":"","ocean_post_title_bg_image_attachment":"","ocean_post_title_bg_image_repeat":"","ocean_post_title_bg_image_size":"","ocean_post_title_height":0,"ocean_post_title_bg_overlay":0.5,"ocean_post_title_bg_overlay_color":"","ocean_disable_breadcrumbs":"default","ocean_breadcrumbs_color":"","ocean_breadcrumbs_separator_color":"","ocean_breadcrumbs_links_color":"","ocean_breadcrumbs_links_hover_color":"","ocean_display_footer_widgets":"default","ocean_display_footer_bottom":"default","ocean_custom_footer_template":"","ocean_post_oembed":"","ocean_post_self_hosted_media":"","ocean_post_video_embed":"","ocean_link_format":"","ocean_link_format_target":"self","ocean_quote_format":"","ocean_quote_format_link":"post","ocean_gallery_link_images":"on","ocean_gallery_id":[],"footnotes":""},"categories":[5],"tags":[259,263,44],"class_list":["post-4163","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","tag-automated-machine-learning","tag-gama","tag-machine-learning","entry","has-media"],"acf":{"upload_file":null},"yoast_head":"\nA Brief Introduction To AutoML Tools ( Part 2 - GAMA) | 47Billion<\/title>\n<meta name=\"description\" content=\"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"A Brief Introduction To AutoML Tools (Part 2 - GAMA)\" \/>\n<meta property=\"og:description\" content=\"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\" \/>\n<meta property=\"og:site_name\" content=\"47Billion\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/47Billion\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-23T13:43:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-12-23T05:15:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"675\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"47billion\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@47billion\" \/>\n<meta name=\"twitter:site\" content=\"@47billion\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"47billion\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\"},\"author\":{\"name\":\"47billion\",\"@id\":\"https:\/\/47billion.com\/#\/schema\/person\/399cf30eeffff9a17943db88fc7bfb4e\"},\"headline\":\"A Brief Introduction To AutoML Tools (Part 2 – GAMA)\",\"datePublished\":\"2020-09-23T13:43:46+00:00\",\"dateModified\":\"2024-12-23T05:15:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\"},\"wordCount\":785,\"publisher\":{\"@id\":\"https:\/\/47billion.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png\",\"keywords\":[\"Automated Machine Learning\",\"GAMA\",\"Machine Learning\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\",\"url\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\",\"name\":\"A Brief Introduction To AutoML Tools ( Part 2 - GAMA) | 47Billion\",\"isPartOf\":{\"@id\":\"https:\/\/47billion.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png\",\"datePublished\":\"2020-09-23T13:43:46+00:00\",\"dateModified\":\"2024-12-23T05:15:58+00:00\",\"description\":\"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.\",\"breadcrumb\":{\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage\",\"url\":\"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png\",\"contentUrl\":\"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png\",\"width\":1200,\"height\":675,\"caption\":\"A Brief Introduction To AutoML Tools - (Part 2 - GAMA)\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/47billion.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"A Brief Introduction To AutoML Tools (Part 2 – GAMA)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/47billion.com\/#website\",\"url\":\"https:\/\/47billion.com\/\",\"name\":\"47Billion\",\"description\":\"Hello World\",\"publisher\":{\"@id\":\"https:\/\/47billion.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/47billion.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/47billion.com\/#organization\",\"name\":\"47Billion\",\"url\":\"https:\/\/47billion.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/47billion.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/47billion.com\/wp-content\/uploads\/2024\/04\/cropped-favicon.png\",\"contentUrl\":\"https:\/\/47billion.com\/wp-content\/uploads\/2024\/04\/cropped-favicon.png\",\"width\":512,\"height\":512,\"caption\":\"47Billion\"},\"image\":{\"@id\":\"https:\/\/47billion.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/47Billion\/\",\"https:\/\/x.com\/47billion\",\"https:\/\/www.instagram.com\/47billion\/\",\"https:\/\/www.linkedin.com\/company\/47billion\/\",\"https:\/\/www.pinterest.com\/47Billion\/\"],\"description\":\"47Billion is the top software development & IT consulting company that possesses more than 10+ years of industry expertise with a highly motivated workforce providing the best software solutions by reaching 20+ million end customers around the globe. We have technical expertise in various areas like ESG Audits & Compliance Services | Credit Score | Data Analytics | UXUI | AI\/ML. 47Billion offers end-to-end support in various work areas, including health tech, banking and financial services, agriculture, edtech, telecom, logistics & ad tech. We help organizations stay on the cutting-edge technologies by developing products & modern applications, that are scalable, secure, robust, and easily maintainable.\\\"\",\"email\":\"hello@47billion.com\",\"legalName\":\"Fourty Seven Billion Information Technology\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"51\",\"maxValue\":\"200\"},\"publishingPrinciples\":\"https:\/\/47billion.com\/about\/\",\"ownershipFundingInfo\":\"https:\/\/47billion.com\/about\/\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/47billion.com\/#\/schema\/person\/399cf30eeffff9a17943db88fc7bfb4e\",\"name\":\"47billion\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/47billion.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9e023678679fe99a2722840318d7035c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9e023678679fe99a2722840318d7035c?s=96&d=mm&r=g\",\"caption\":\"47billion\"},\"sameAs\":[\"https:\/\/pii.fxe.mybluehostin.me\"],\"url\":\"https:\/\/47billion.com\/author\/47billion\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"A Brief Introduction To AutoML Tools ( Part 2 - GAMA) | 47Billion","description":"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/","og_locale":"en_US","og_type":"article","og_title":"A Brief Introduction To AutoML Tools (Part 2 - GAMA)","og_description":"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.","og_url":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/","og_site_name":"47Billion","article_publisher":"https:\/\/www.facebook.com\/47Billion\/","article_published_time":"2020-09-23T13:43:46+00:00","article_modified_time":"2024-12-23T05:15:58+00:00","og_image":[{"width":1200,"height":675,"url":"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png","type":"image\/png"}],"author":"47billion","twitter_card":"summary_large_image","twitter_creator":"@47billion","twitter_site":"@47billion","twitter_misc":{"Written by":"47billion"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#article","isPartOf":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/"},"author":{"name":"47billion","@id":"https:\/\/47billion.com\/#\/schema\/person\/399cf30eeffff9a17943db88fc7bfb4e"},"headline":"A Brief Introduction To AutoML Tools (Part 2 – GAMA)","datePublished":"2020-09-23T13:43:46+00:00","dateModified":"2024-12-23T05:15:58+00:00","mainEntityOfPage":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/"},"wordCount":785,"publisher":{"@id":"https:\/\/47billion.com\/#organization"},"image":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage"},"thumbnailUrl":"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png","keywords":["Automated Machine Learning","GAMA","Machine Learning"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/","url":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/","name":"A Brief Introduction To AutoML Tools ( Part 2 - GAMA) | 47Billion","isPartOf":{"@id":"https:\/\/47billion.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage"},"image":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage"},"thumbnailUrl":"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png","datePublished":"2020-09-23T13:43:46+00:00","dateModified":"2024-12-23T05:15:58+00:00","description":"GAMA is a tool for Automated Machine Learning (AutoML). All you need to do is supply the data, and GAMA will automatically try to find a good machine learning pipeline.","breadcrumb":{"@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#primaryimage","url":"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png","contentUrl":"https:\/\/47billion.com\/wp-content\/uploads\/2020\/09\/Automl-blog.png","width":1200,"height":675,"caption":"A Brief Introduction To AutoML Tools - (Part 2 - GAMA)"},{"@type":"BreadcrumbList","@id":"https:\/\/47billion.com\/blog\/a-brief-introduction-to-automl-tools-part-2-gama\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/47billion.com\/"},{"@type":"ListItem","position":2,"name":"A Brief Introduction To AutoML Tools (Part 2 – GAMA)"}]},{"@type":"WebSite","@id":"https:\/\/47billion.com\/#website","url":"https:\/\/47billion.com\/","name":"47Billion","description":"Hello World","publisher":{"@id":"https:\/\/47billion.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/47billion.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/47billion.com\/#organization","name":"47Billion","url":"https:\/\/47billion.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/47billion.com\/#\/schema\/logo\/image\/","url":"https:\/\/47billion.com\/wp-content\/uploads\/2024\/04\/cropped-favicon.png","contentUrl":"https:\/\/47billion.com\/wp-content\/uploads\/2024\/04\/cropped-favicon.png","width":512,"height":512,"caption":"47Billion"},"image":{"@id":"https:\/\/47billion.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/47Billion\/","https:\/\/x.com\/47billion","https:\/\/www.instagram.com\/47billion\/","https:\/\/www.linkedin.com\/company\/47billion\/","https:\/\/www.pinterest.com\/47Billion\/"],"description":"47Billion is the top software development & IT consulting company that possesses more than 10+ years of industry expertise with a highly motivated workforce providing the best software solutions by reaching 20+ million end customers around the globe. We have technical expertise in various areas like ESG Audits & Compliance Services | Credit Score | Data Analytics | UXUI | AI\/ML. 47Billion offers end-to-end support in various work areas, including health tech, banking and financial services, agriculture, edtech, telecom, logistics & ad tech. We help organizations stay on the cutting-edge technologies by developing products & modern applications, that are scalable, secure, robust, and easily maintainable.\"","email":"hello@47billion.com","legalName":"Fourty Seven Billion Information Technology","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"51","maxValue":"200"},"publishingPrinciples":"https:\/\/47billion.com\/about\/","ownershipFundingInfo":"https:\/\/47billion.com\/about\/"},{"@type":"Person","@id":"https:\/\/47billion.com\/#\/schema\/person\/399cf30eeffff9a17943db88fc7bfb4e","name":"47billion","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/47billion.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9e023678679fe99a2722840318d7035c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9e023678679fe99a2722840318d7035c?s=96&d=mm&r=g","caption":"47billion"},"sameAs":["https:\/\/pii.fxe.mybluehostin.me"],"url":"https:\/\/47billion.com\/author\/47billion\/"}]}},"_links":{"self":[{"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/posts\/4163","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/comments?post=4163"}],"version-history":[{"count":1,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/posts\/4163\/revisions"}],"predecessor-version":[{"id":21188,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/posts\/4163\/revisions\/21188"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/media\/4179"}],"wp:attachment":[{"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/media?parent=4163"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/categories?post=4163"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/47billion.com\/wp-json\/wp\/v2\/tags?post=4163"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}