Using the Apache Mahout machine learning libraries
By : Jérôme Baudin
Date : March 29 2020, 07:55 AM
|
Machine learning library for .net analog of Apache Mahout
By : user3227937
Date : March 29 2020, 07:55 AM
it should still fix some issue I don't believe I'm familiar with anything similar to Apache Mahout build on top of .NET, but I believe you could use the following approach to get pretty close (how close you can actually get depends on the specifics of what you're trying to do). Mahout is in fact a collection of standard machine learning algorithms implemented on top of Apache Hadoop to allow them scale to large data sets, so to get the same effect in a .NET environment you'll need a distributed computation solution (and to keep with the spirit of Mahout, I'd use Map/Reduce implementation), and a machine learning library. Then you can pass the computation of the learning tasks to your Map/Reduce cluster.
|
Does MapR have scalable machine learning algos. Like Mahout?
By : Anshuman Khandelwal
Date : March 29 2020, 07:55 AM
With these it helps As far as I know, MapR is only a "faster" Hadoop. There are no algorithms included. So your jobs should be compatible.
|
Do I need to master Hadoop before learning Mahout?
By : i.am.here.to.learn
Date : March 29 2020, 07:55 AM
will be helpful for those in need Master? No. If you are using the parts of the project based on Hadoop then basic knowledge is required but sufficient. If you are using the parts not based on Hadoop then you don't need Hadoop at all.
|
Do we need mahout and hadoop on same machine?
By : Allen Lyu
Date : March 29 2020, 07:55 AM
it should still fix some issue If you don't have Hadoop on your machine, Mahout will run in pseudo-distributed mode on the current machine. Nonetheless, Windows and Hadoop don't really like each other, and depending on your Mahout version (more specifically the Hadoop dependency it has), you will most likely run into this issue ( link). The issue is present from Hadoop 0.20.204 onwards (although I must admit that I don't know if it has been fixed on the latest version of Hadoop)
|