{"id":58208,"date":"2016-07-14T07:00:40","date_gmt":"2016-07-14T04:00:40","guid":{"rendered":"https:\/\/www.javacodegeeks.com\/?p=58208"},"modified":"2016-07-09T15:43:01","modified_gmt":"2016-07-09T12:43:01","slug":"get-started-java-machine-learning","status":"publish","type":"post","link":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html","title":{"rendered":"How to Get Started with Java Machine Learning"},"content":{"rendered":"<p><strong>What are the best tools to get started with Java machine learning?<\/strong><\/p>\n<p>They\u2019ve been around for a while, but these days it feels like everyone is talking about artificial intelligence and machine learning. It\u2019s no longer a secret reserved to scientists and researchers, with implementations in nearly any new emerging technology.<\/p>\n<p>In the following post we\u2019ll do a quick overview of the main Java machine learning frameworks, and show how easy it is to get started \u2013 without reinventing the wheel and creating your own algorithms from scratch.<\/p>\n<h2>AI for the people<\/h2>\n<p>AI is a wide and cool field that has been around for a while, but always felt a little bit out of reach and made especially for scientists. If you wanted to create an\u00a0AI system, you had to implement the core algorithms on your own and train them to identify patterns, understand images and process natural language.<\/p>\n<p>The recent buzz and evolvement around this field made it more accessible for non-researchers. Now you have easy access to the relevant algorithms and tools. You do have to know what you\u2019re doing, but it\u2019s a lot easier to enhance your applications with machine learning capabilities.<\/p>\n<h2>Getting the machine going<\/h2>\n<p>To make things simpler, we decided to highlight 3 projects to help get you started:<\/p>\n<ol>\n<li><strong><a href=\"http:\/\/deeplearning4j.org\/\" target=\"_blank\">Deeplearning4J (DL4J)<\/a><\/strong> \u2013 Open source, distributed and commercial-grade deep-learning library for JVM<\/li>\n<li><strong><a href=\"http:\/\/bid2.berkeley.edu\/bid-data-project\/\" target=\"_blank\">BID Data Project<\/a><\/strong> \u2013 A collection of patterns that enable fast, large-scale machine learning and data mining<\/li>\n<li><strong><a href=\"http:\/\/neuroph.sourceforge.net\/index.html\" target=\"_blank\">Neuroph<\/a><\/strong> \u2013 Object-oriented neural network<\/li>\n<\/ol>\n<p>By the way,\u00a0we recently published another list of interesting open source GitHub libraries that caught our attention. <a href=\"http:\/\/blog.takipi.com\/the-hitchhikers-guide-to-github-13-java-projects-you-should-try\/\" target=\"_blank\">Check it out<\/a>.<\/p>\n<h3>1. DL4J \u2013 Deep Learning<\/h3>\n<p>DL4J is a tool made to assist you in the process of configuring deep neural networks which are made of multiple layers. It brings deep learning to the JVM along with fast prototyping and customization at scale, while focusing on more convention than configuration.<div style=\"display:inline-block; margin: 15px 0;\"> <div id=\"adngin-JavaCodeGeeks_incontent_video-0\" style=\"display:inline-block;\"><\/div> <\/div><\/p>\n<p>This is the tool for those who already have the theory needed to create and use deep neural networks, but don\u2019t want to actualize the algorithms themselves. You can use it to solve specific problems involving massive amounts of data and customize the neural net properties.<\/p>\n<p>DL4J is written in Java, which makes it compatible with any JVM language such as Clojure, Scala or Kotlin, and it integrates with Hadoop and Spark.<\/p>\n<p>Possible use cases include rating or recommendation systems (CRM, adtech, churn prevention), predictive analytics or even fraud detection. If you\u2019re looking for a real-world example, you can check out <a href=\"https:\/\/rapidminer.com\/\" target=\"_blank\">Rapidminer<\/a>. It\u2019s an open-source data platform that uses DL4J to streamline predictive analytics processes for their users.<\/p>\n<p>Setting up a new neural network is as easy as creating a new object:<\/p>\n<pre class=\"brush:java\">ultiLayerConfiguration conf = new NeuralNetConfiguration.Builder()\r\n     .iterations(1)\r\n     .weightInit(WeightInit.XAVIER)\r\n     .activation(\"relu\")\r\n     .optimizationAlgo(OptimizationAlgorithm.STOCHASTIC_GRADIENT_DESCENT)\r\n     .learningRate(0.05)\r\n     \/\/ ... other hyperparameters\r\n     .backprop(true)\r\n     .build();<\/pre>\n<h3>2. BID Data Project<\/h3>\n<p>The BID Data Project is made for those of you who deal with a great amount of data, and are performance sensitive. This UC Berkeley project is a collection of hardware, software and design patterns that enable fast and large-scale data mining.<\/p>\n<p>The first library is <strong>BIDMach<\/strong>, that holds the records for many common machine learning problems, on single nodes or clusters. You can use it to manage data sources, optimize and distribute data over CPUs or GPUs.<\/p>\n<p>It includes many popular machine learning algorithms, and the team is working on developing distributed Deep Learning networks, graph algorithms and other models.<\/p>\n<p>The other 2 libraries are <strong>BIDMat<\/strong>, a fast matrix algebra library that focuses on data mining and <strong>BIDParse<\/strong>, GPU-accelerated natural language parser. Other libraries in this project include visualization tools, along with libraries that will let you run on Spark or even on Android.<\/p>\n<p>BIDMach benchmarks repeatedly show better results than other solutions, even with a single machine compared to alternatives running on larger clusters. A full list of benchmarks can be found right here.<\/p>\n<h3>3. Neuroph<\/h3>\n<p>Neuroph is a lightweight Java framework used to develop common neural network architectures. The framework provides a\u00a0Java library along with a GUI tool (called easyNeurons), and you can use it in order to create and train your very own neural networks in Java programs.<\/p>\n<p>It contains an open source Java library, with\u00a0a small number of basic classes which correspond to essential neural network concepts. It\u2019s a great stepping stone if you\u2019re just getting started with neural networks, or if you want to know how they work.<\/p>\n<p>You can try out <a href=\"http:\/\/neuroph.sourceforge.net\/online_demo.html\" target=\"_blank\">Neuroph online demo<\/a> and see how it actually works. Spoiler alert: the interface looks old and outdated, but you can create nice things with it. Also, it received the\u00a0<a href=\"http:\/\/neuroph.sourceforge.net\/dukes_choice_award_2013.html\" target=\"_blank\">Duke\u2019s Choice Award for 2013<\/a>.<\/p>\n<p><figure id=\"attachment_58243\" aria-describedby=\"caption-attachment-58243\" style=\"width: 768px\" class=\"wp-caption aligncenter\"><a href=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/07\/network-768x522.png\"><img decoding=\"async\" class=\"wp-image-58243 size-full\" src=\"http:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/07\/network-768x522.png\" alt=\"network-768x522\" width=\"768\" height=\"522\" srcset=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/07\/network-768x522.png 768w, https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2016\/07\/network-768x522-300x204.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/a><figcaption id=\"caption-attachment-58243\" class=\"wp-caption-text\">Network graph view<\/figcaption><\/figure><\/p>\n<h2>What About the Others?<\/h2>\n<p>In case these 3 projects are not your cup of tea and you\u2019re looking for something a little different for your project, don\u2019t worry. If you search GitHub for \u201c<a href=\"https:\/\/github.com\/search?l=Java&amp;q=machine+learning&amp;type=Repositories&amp;utf8=%E2%9C%93\" target=\"_blank\">Machine learning<\/a>\u201d you\u2019ll find 1,506 Java repositories that might give you the right tool.<\/p>\n<p>For example, an interesting project from Airbnb is <strong><a href=\"https:\/\/github.com\/airbnb\/aerosolve\" target=\"_blank\">aerosolve<\/a><\/strong>; A machine learning library designed to be human friendly.<\/p>\n<p>Getting started with a new technology is always a source for trouble. If you will need some help with your exceptions, be sure to check out <a href=\"https:\/\/www.takipi.com\/\" target=\"_blank\">Takipi\u2019s error analysis tool<\/a>.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>Every few years there\u2019s a new buzz around AI. This time around, it came with reinforcement in the form of machine learning, data mining, neural networks and so on and we\u2019re all for it. The fact that these libraries are open sourced means that information and abilities are up for grabs, and all you have to do is think what can be done with this power.<\/p>\n<p>If you know other interesting projects or think we missed anything, we would love to hear about it in the comments below.<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/blog.takipi.com\/how-to-get-started-with-java-machine-learning\/\">How to Get Started with Java Machine Learning<\/a> from our <a href=\"http:\/\/www.javacodegeeks.com\/join-us\/jcg\/\">JCG partner<\/a>\u00a0Henn Idan at the <a href=\"http:\/\/blog.takipi.com\/\">Takipi <\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about artificial intelligence and machine learning. It\u2019s no longer a secret reserved to scientists and researchers, with implementations in nearly any new emerging technology. In the following post &hellip;<\/p>\n","protected":false},"author":1015,"featured_media":112,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[1369,1045],"class_list":["post-58208","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-enterprise-java","tag-ai","tag-machine-learning"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Get Started with Java Machine Learning - Java Code Geeks<\/title>\n<meta name=\"description\" content=\"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Get Started with Java Machine Learning - Java Code Geeks\" \/>\n<meta property=\"og:description\" content=\"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html\" \/>\n<meta property=\"og:site_name\" content=\"Java Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/javacodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-07-14T04:00:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Henn Idan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@overopshq\" \/>\n<meta name=\"twitter:site\" content=\"@javacodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Henn Idan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html\"},\"author\":{\"name\":\"Henn Idan\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/ef7c6c1018d4dbffcaa2d47378823ad5\"},\"headline\":\"How to Get Started with Java Machine Learning\",\"datePublished\":\"2016-07-14T04:00:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html\"},\"wordCount\":991,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"keywords\":[\"AI\",\"Machine Learning\"],\"articleSection\":[\"Enterprise Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html\",\"name\":\"How to Get Started with Java Machine Learning - Java Code Geeks\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"datePublished\":\"2016-07-14T04:00:40+00:00\",\"description\":\"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#primaryimage\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2012\\\/10\\\/enterprise-java-logo.jpg\",\"width\":150,\"height\":150,\"caption\":\"java-interview-questions-answers\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/2016\\\/07\\\/get-started-java-machine-learning.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Enterprise Java\",\"item\":\"https:\\\/\\\/www.javacodegeeks.com\\\/category\\\/java\\\/enterprise-java\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"How to Get Started with Java Machine Learning\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#website\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"name\":\"Java Code Geeks\",\"description\":\"Java Developers Resource Center\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\"},\"alternateName\":\"JCG\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.javacodegeeks.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"contentUrl\":\"https:\\\/\\\/www.javacodegeeks.com\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/javacodegeeks\",\"https:\\\/\\\/x.com\\\/javacodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.javacodegeeks.com\\\/#\\\/schema\\\/person\\\/ef7c6c1018d4dbffcaa2d47378823ad5\",\"name\":\"Henn Idan\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g\",\"caption\":\"Henn Idan\"},\"description\":\"Henn works at OverOps, helping developers know when and why code breaks in production. She writes about Java, Scala and everything in between. Lover of gadgets, apps, technology and tea.\",\"sameAs\":[\"http:\\\/\\\/www.overops.com\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/hennidan\",\"https:\\\/\\\/x.com\\\/@overopshq\"],\"url\":\"https:\\\/\\\/www.javacodegeeks.com\\\/author\\\/henn-idan\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Get Started with Java Machine Learning - Java Code Geeks","description":"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about","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:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html","og_locale":"en_US","og_type":"article","og_title":"How to Get Started with Java Machine Learning - Java Code Geeks","og_description":"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about","og_url":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html","og_site_name":"Java Code Geeks","article_publisher":"https:\/\/www.facebook.com\/javacodegeeks","article_published_time":"2016-07-14T04:00:40+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","type":"image\/jpeg"}],"author":"Henn Idan","twitter_card":"summary_large_image","twitter_creator":"@overopshq","twitter_site":"@javacodegeeks","twitter_misc":{"Written by":"Henn Idan","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#article","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html"},"author":{"name":"Henn Idan","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/ef7c6c1018d4dbffcaa2d47378823ad5"},"headline":"How to Get Started with Java Machine Learning","datePublished":"2016-07-14T04:00:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html"},"wordCount":991,"commentCount":0,"publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","keywords":["AI","Machine Learning"],"articleSection":["Enterprise Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html","url":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html","name":"How to Get Started with Java Machine Learning - Java Code Geeks","isPartOf":{"@id":"https:\/\/www.javacodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#primaryimage"},"image":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#primaryimage"},"thumbnailUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","datePublished":"2016-07-14T04:00:40+00:00","description":"What are the best tools to get started with Java machine learning? They\u2019ve been around for a while, but these days it feels like everyone is talking about","breadcrumb":{"@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#primaryimage","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2012\/10\/enterprise-java-logo.jpg","width":150,"height":150,"caption":"java-interview-questions-answers"},{"@type":"BreadcrumbList","@id":"https:\/\/www.javacodegeeks.com\/2016\/07\/get-started-java-machine-learning.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.javacodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/www.javacodegeeks.com\/category\/java"},{"@type":"ListItem","position":3,"name":"Enterprise Java","item":"https:\/\/www.javacodegeeks.com\/category\/java\/enterprise-java"},{"@type":"ListItem","position":4,"name":"How to Get Started with Java Machine Learning"}]},{"@type":"WebSite","@id":"https:\/\/www.javacodegeeks.com\/#website","url":"https:\/\/www.javacodegeeks.com\/","name":"Java Code Geeks","description":"Java Developers Resource Center","publisher":{"@id":"https:\/\/www.javacodegeeks.com\/#organization"},"alternateName":"JCG","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.javacodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.javacodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.javacodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.javacodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/javacodegeeks","https:\/\/x.com\/javacodegeeks"]},{"@type":"Person","@id":"https:\/\/www.javacodegeeks.com\/#\/schema\/person\/ef7c6c1018d4dbffcaa2d47378823ad5","name":"Henn Idan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/af95453f0a46ce21be6e80b4b6c064927a5cbee1c366c2d2223d45c56ad597bc?s=96&d=mm&r=g","caption":"Henn Idan"},"description":"Henn works at OverOps, helping developers know when and why code breaks in production. She writes about Java, Scala and everything in between. Lover of gadgets, apps, technology and tea.","sameAs":["http:\/\/www.overops.com\/","https:\/\/www.linkedin.com\/in\/hennidan","https:\/\/x.com\/@overopshq"],"url":"https:\/\/www.javacodegeeks.com\/author\/henn-idan"}]}},"_links":{"self":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/58208","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/users\/1015"}],"replies":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/comments?post=58208"}],"version-history":[{"count":0,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/posts\/58208\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media\/112"}],"wp:attachment":[{"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/media?parent=58208"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/categories?post=58208"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.javacodegeeks.com\/wp-json\/wp\/v2\/tags?post=58208"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}