Tagged Questions

This topic covers questions related to Apache Mahout, a scalable machine learning project written in Java and largely based on Apache Hadoop, with implementations of algorithms for: collaborative filtering / recommenders classification clustering frequent pattern mining more

learn more… | top users | synonyms

12
votes
3answers
1k views

Java's Mahout equivalent in Python

Java based Mahout's goal is to build scalable machine learning libraries. Are there any equivalent libraries in Python ?
10
votes
2answers
1k views

Mahout Plugin for ruby on rails

I want to use Apache Mahout in my project on Ruby on Rails for implementing recommendations and collaborative filtering. In Particular my requirements are: suggesting related tags. suggesting ...
9
votes
1answer
518 views

HBase & Mahout - Using HBase as a Datastore/source for Mahout - Classification

I'm working on a large text classification project and we have our text data (simple messages) stored in HBase. We have two problems, first we would like to use HBase as the source for Mahout ...
9
votes
3answers
3k views

mahout lucene document clustering howto?

I'm reading that i can create mahout vectors from a lucene index that can be used to apply the mahout clustering algorithms. ...
7
votes
6answers
396 views

Choice of Machine Learning Platform

I have a data set of users and their loan repayment metrics (how long they took, how many installments etc). Now I want to analyse a user's past loan history and say, "If we loan them X they will most ...
6
votes
2answers
896 views

Classify data using Apache Mahout

I am trying to solve a simple classification problem. The Problem: I have a set of text and I have to categorize them based on the content. Solution using Mahout: I understood that I have to ...
5
votes
1answer
129 views

How to find whether a url is of ecommerce or non ecommerce website, programatically?

In a project there is a module takes a URL and determines whether it is of "Ecommerce" or "NON-Ecommerce" website. I have tried following approaches: Using Apache mahout, Classification : URL ---> ...
5
votes
0answers
493 views

Clustering (fkmeans) with Mahout using Clojure

I am trying to write a short script to cluster my data via clojure (calling Mahout classes though). I have my input data in this format (which is an output from a php script) format: (tag) (image) ...
5
votes
3answers
1k views

Recommendation Engines for Java applications

I was wondering to know if there is any open sources recommendation engines available? It should suggest some think like amazon and netflix. I heard a framework "Apache Mahout - Taste". I am trying it ...
4
votes
2answers
113 views

Recommendation engine for Alfresco?

I want to implement Amazon-like recommendations in Alfresco. For instance, if an employee searches for "financial reports 2007", the search UI will show related documents, for instance documents that ...
4
votes
1answer
187 views

Using Neo4j as Mahout Datastore

Has anyone successfully integrated Apache Mahout with Neo4j as a datastore? If so, how much works was involved, and what was the performance like?
4
votes
2answers
439 views

Recommendations using R with SimpleDB or BigQuery or using PHP with SimpleDB

I am currently working on system that generated product recommendations like those on Amazon : "People who bought this also bought this.." Current Scenario: Extract the Google Analytics data of the ...
4
votes
3answers
234 views

In practice, how many machines do you need in order for Hadoop / MapReduce / Mahout to speed up very parallelizable computations?

I need to do some heavy machine learning computations. I have a small number of machines idle on a LAN. How many machines would I need in order for distrubuting my computations using hadoop / ...
4
votes
1answer
352 views

Deploying Mahout on hadoop cluster

I want to run Mahout's K-Means example in a hadoop cluster of 5 machines. Which Mahout jar files should I need to keep in all the nodes, in order for the K-Means to be executed in a distributed ...
4
votes
3answers
2k views

Using mahout and hadoop

I am a newbie trying to understand how will mahout and hadoop be used for collaborative filtering. I m having single node cassandra setup. I want to fetch data from cassandra Where can I find clear ...
4
votes
3answers
1k views

Is it worth purchasing Mahout in Action to get up to speed with Mahout, or are there other better sources?

I'm currently a very casual user of Apache Mahout, and I'm considering purchasing the book Mahout in Action. Unfortunately, I'm having a really hard time getting an idea of how worth it this book is ...
3
votes
4answers
452 views

Hadoop, Mahout real-time processing alternative

I intended to use hadoop as "computation cluster" in my project. However then I read that Hadoop is not inteded for real-time systems because of overhead connected with start of a job. I'm looking for ...
3
votes
1answer
481 views

Entity Extraction/Recognition with free tools while feeding Lucene Index

I'm current investigating the options to extract person names, locations, tech words and categories from text (a lot articles from the web) which will then feeded into a Lucene/ElasticSearch index. ...
3
votes
3answers
357 views

K-means with really large matrix

I have to perform a k-means clustering on a really huge matrix (about 300.000x100.000 values which is more than 100Gb). I want to know if I can use R software to perform this or weka. My computer is a ...
3
votes
1answer
152 views

compiling issue related to slf4j library

I am trying to compile an open source library, and meet the following problem. When I keep the two libraries, slf4j-jcl-1.6.0.jar and slf4j-api-1.6.0.jar, the eclipse compiler will give me the ...
3
votes
2answers
743 views

Mahout runs out of heap space

Hey, I am running NaiveBayes on a set of tweets using Mahout. Two files, one 100 MB and one 300 MB. I changed JAVA_HEAP_MAX to JAVA_HEAP_MAX=-Xmx2000m ( earlier it was 1000). But even then, ...
3
votes
1answer
425 views

identify documents from results of mahout clustering

I am using mahout to cluster text documents indexed using solr. I have used the "text" field in the document to form vectors. Then I used the k-means driver in mahout for clustering and then the ...
3
votes
2answers
517 views

Datasets for Apache Mahout

I am looking for datasets that can be used for implementing recommendation system usecase of Apache Mahout. I know of only MovieLens Data Sets from GroupLens Research group. Anyone knows any other ...
3
votes
3answers
714 views

Using Apache Mahout with Ruby on Rails

I have a ruby on rails application. I have the idea of implementing recommendations in the application. I came to know about Apache Mahout through stackoverflow. Now, If I have to use Mahout, what are ...
3
votes
1answer
2k views

Using the Apache Mahout machine learning libraries

I've been working with the Apache Mahout machine learning libaries in my free time a bit over the past few weeks. I'm curious to hear about how others are using these libraries.
2
votes
1answer
145 views

Recommendation engine for push information delivery

I want to develop a system that involves a recommendation engine for a push information delivery. I have seen plenty of explanations about using some engines, like Mahout Taste and Duine. Yet by using ...
2
votes
2answers
195 views

is it possible to use apache mahout without hadoop dependency?

Is it possible to use Apache mahout without any dependency to Hadoop. I would like to use the mahout algorithm on a single computer by only including the mahout library inside my Java project but i ...
2
votes
1answer
168 views

Text Mining on huge list of strings

I have list of strings. (pretty big list of ids and strings scattered in 4-5 big files. around a GB each). These strings are formatted like this: 1,Hi 2,Hi How r u? 2,How r u? 3,where r u? 3,what ...
2
votes
1answer
84 views

Different Recommendation for each time using mahout

Can anybody help me ? If i already recommend some items to some user and suppose that user is not interested in those recommended items and he want to see more recommendations which are different ...
2
votes
5answers
432 views

how to solve product recommendation problem like: User __bought__ XXX also __viewed__ YYY

I am currently learning recommender system, learned something about collaborative filtering, User CF, Item CF, it is obvious to use these algorithm to solve problem like: 1) User bought XXX also ...
2
votes
1answer
115 views

User matching with current data

I have a database full of two different types of users (Mentors and Mentees), whereby I want the second group (Mentees) to be able to "search" for people in the first group (Mentors) who match their ...
2
votes
1answer
709 views

Running Mahout from the command line (CLASSPATH)

Complied Mahout successfully under Windows using Maven. I'm trying to run one of the examples from the command line and I don't get what I am doing wrong. Seems like a CLASSPATH problem. Let's say ...
2
votes
4answers
697 views

Just how much Java does one need to use Hadoop and Mahout effectively?

I'm a PHP developer. Let's just get that out of the way now. But Hadoop – and Mahout in particular – have piqued my interest. I'm ready to take the dive into Java in order to use them. So from people ...
2
votes
1answer
321 views

Mahout Recommendations on Binary data

I'm a newbie to mahout.My aim is to produce recommendations on binary user purchased data.So i applied item-item similarity model in computing top N recommendations for movie lens data assuming 1-3 ...
2
votes
2answers
751 views

ClassNotFoundException error in implementing Bayesian algorithm in Apache Mahout on Hadoop

I have a problem in executing the Bayesian algorithm in Mahout. I built it with Maven and the job file is in target directory. When run from terminal using hadoop, I'm getting the ...
1
vote
1answer
31 views

Difference between Rescorer and UserSimilarity in Mahout

I am implementing a user based reccomender that should work just on categories of items in order to avoid computation on useless data. To be more clear if a user is in a category page, I don't want to ...
1
vote
3answers
106 views

How to add maven dependencies for mahout and hadoop?

I am doing a project that has dependencies on some classes from the mahout and hadoop core jars. I was using javac with the classpath option to include them before, but someone suggested to me that I ...
1
vote
1answer
64 views

Mahout : user that bought XX also bought XX

I found similar questions but the answer didn't satisfy me. Essentially I would like to implement in mahout an item suggester based on purchases (or even ratings). In mahout it seems that you have a ...
1
vote
1answer
48 views

Mahout reccomendations with categories

I am a newbie of Mahout so please apologize me if I am asking something trivial. I would like to implement reccomendations but the problem I am trying to address is not an easy one. I have items with ...
1
vote
1answer
53 views

Mahout - JPA integration. Do I need a CSV file?

I have an existing data model using openJPA and I am trying to integrate a CF system using Mahout. Forgive me if this is a bone head question, but I just started researching mahout. Mahout in action ...
1
vote
1answer
91 views

Apache Mahout, to use or not to use

I am implementing a simple recommendation system for a collection of user created components. I was planning on doing this with JPA and a few dedicated EJB. My entities would have extra couple of ...
1
vote
1answer
60 views

Does MapR have scalable machine learning algos. Like Mahout?

I am specifically wondering if MapR has Kmeans clustering just like Mahout?
1
vote
1answer
65 views

Candidate Strategy for GenericUserBasedRecommender in Mahout

In mahout you can define a CandidateItemsStrategy for GenericItemBasedRecommender such that specific items e.g. of a certain category are excluded. When using a GenericUserBasedRecommender this is not ...
1
vote
1answer
87 views

How mahout user based recommendation works?

I am using generic user based recommender of mahout taste api to generate recommendations.. I know it recommends based on ratings given to past users..I am not getting mathematics behind its ...
1
vote
1answer
168 views

Weighted Naive Bayes Classifier in Apache Mahout

I am using Naive Bayes classifier for my sentiment analysis on customer support. But unfortunately I don't have huge annotated data sets in the customer support domain. But I have a little amount of ...
1
vote
0answers
69 views

How to maintain data entry id in Mahout K-means clustering

I'm using mahout to run k-means clustering, and I got a problem of identifying the data entry when clustering, for example I have a 100 data entries id data 0 0.1 0.2 0.3 0.4 1 0.2 ...
1
vote
1answer
210 views

Sentimental analysis using apache mahout

I am planning to develop a system that would predict the mood of a given text(sentiment analysis in short). I would also prefer apache mahout because, it is seriously huge data and the system should ...
1
vote
2answers
101 views

Full utilization of all cores in Hadoop pseudo-distributed mode

I am running a task in pseudo-distributed mode on my 4 core laptop. How can I ensure that all cores are effectively used. Currently my job tracker shows that only one job is executing at a time. Does ...
1
vote
1answer
194 views

K Means Clustering using Mahout

I'm using the clustering technique given here for clustering a large dataset, which is given in Mahout examples. However, when I visualize the particular clustering I get the following figure. I'm ...
1
vote
3answers
273 views

Apache Mahout Performance Issues

I have been working with Mahout in the past few days trying to create a recommendation engine. The project I'm working on has the following data: 12M users 2M items 18M user-item boolean ...

1 2 3 4