Tagged Questions

Data mining is the process of analyzing large amounts of data in order to find patterns and commonalities.

learn more… | top users | synonyms (1)

52
votes
9answers
3k views

Overwhelmed by Machine Learning---is there an ML101 book?

It seems like there are so many subfields linked to Machine Learning. Is there a book or a blog that gives an overview of those different fields and what each of them do, maybe how to get started, ...
43
votes
5answers
1k views

How to approach number guessing game(with a twist) algorithm?

I am learning programming (python and algo’s) and was trying to work on a project that I find interesting. I have created a few basic python scripts but I’m not sure how to approach a solution to a ...
42
votes
12answers
2k views

How do search engines find relevant content?

How does Google find relevant content when it's parsing the web? Let's say, for instance, Google uses the PHP native DOM Library to parse content. What methods would they be for it to find the most ...
18
votes
5answers
1k views

Machine learning challenge: diagnosing program in java/groovy (datamining, machine learning)

I'm planning to develop program in Java which will provide diagnosis. The data set is divided into two parts one for training and the other for testing. My program should learn to classify from the ...
13
votes
17answers
4k views

Data Mining open source tools

I'm due to take up a project which is into data mining. Before I jump in I wanted to probe around for different data mining tools (preferably open source) which allows web based reporting. In my ...
13
votes
11answers
19k views

Java HTML Parsing

I'm working on an app which scrapes data from a website and I was wondering how I should go about getting the data. Specifically I need data contained in a number of div tags which use a specific CSS ...
12
votes
6answers
492 views

Ways to calculate similarity

I am doing a community website that requires me to calculate the similarity between any two users. Each user is described with the following attributes: age, skin type (oily, dry), hair type (long, ...
12
votes
7answers
3k views

Text mining with PHP

I'm doing a project for a college class I'm taking. I'm using PHP to build a simple web app that classify tweets as "positive" (or happy) and "negative" (or sad) based on a set of dictionaries. The ...
12
votes
6answers
427 views

Monitor brands with common words

Let's say you should monitor the brand "ONE" online. What algorithms can be used to separate pages about the brand ONE from pages containing the common word ONE? I'm thinking maybe Bayes could work, ...
12
votes
5answers
6k views

Netflix prize dataset?

I am looking to work on a machine learning project for my course and I would like to use the Netflix Prize dataset, But it looks like the contest is closed and the dataset is not available for ...
12
votes
15answers
2k views

The business of Artificial Intelligence

I'm putting together a presentation aimed towards entrepreneurs on the present state of industrial AI development, titled "The business of AI"; however, what little resources I have found on Google ...
11
votes
2answers
1k views

What method do you use for selecting the optimum number of clusters in k-means and EM?

Many algorithms for clustering are available. A popular algorithm is the K-means where, based on a given number of clusters, the algorithm iterates to find best clusters for the objects. What method ...
11
votes
10answers
1k views

Techniques for building recommendation engines?

The book Programming Collective Intelligence presents a technique for computing similar links/users based on the distance between the links/users in a huge metric space (user x bookmarked this link / ...
10
votes
4answers
123 views

DBMS_DATA_MINING.CREATE_MODEL causes “ORA-40103: invalid case-id column: TID” on 11.2.0.1.0 64b, but on 10g OK

I have a problem with DBMS_DATA_MINING.CREATE_MODEL on version 11.2. On 10g this code below works OK, and I'm quite sure that on 11.1 it works too. CREATE OR REPLACE VIEW "SH"."ITEMS" AS SELECT ...
10
votes
2answers
168 views

Python, Scipy: Building triplets using large adjacency matrix

I am using an adjacency matrix to represent a network of friends which can be visually interpreted as Mary 0 1 1 1 Joe 1 0 1 1 Bob 1 1 0 ...
10
votes
3answers
516 views

IR vs Data mining vs ML

People often throw around the terms IR, ML, and data mining, but I have noticed a lot of overlap between them. From people with experience in these fields, what exactly draws the line between these?
9
votes
4answers
466 views

Non-linear regression in C#

I'm looking for a way to produce a non-linear (preferably quadratic) curve, based on a 2D data set, for predictive purposes. Right now I'm using my own implementation of ordinary least squares (OLS) ...
9
votes
2answers
320 views

Is there a good way to do this type of mining?

I am trying to find points that are closest in space in X and Y directions (sample dataset given at the end) and am looking to see if there are smarter approaches to do this than my trivial (and ...
9
votes
4answers
119 views

Algorithm to handle data aggregation from multiple error-prone sources

I'm aggregating concert listings from several different sources, none of which are both complete and accurate. Some of the data comes from users (such as on last.fm), and may be incorrect. Other data ...
9
votes
6answers
496 views

data mining - how to identify main content on a webpage

Given a news article webpage (from any major news source such as times or bloomberg), I want to identify the main article content on that page and throw out the other misc elements such as ads, ...
9
votes
2answers
525 views

Data Mining Operation using SQL Query (Fuzzy Apriori Algorithm) - How do i code it using SQL?

So i have this Table : Trans_ID Name Fuzzy_Value Total_Item 100 I1 0.33333333 3 100 I2 0.33333333 3 100 I5 0.33333333 3 200 ...
9
votes
9answers
1k views

Best DataMining Database

I am an occasional Python programer who only have worked so far with MYSQL or SQLITE databases. I am the computer person for everything in a small company and I have been started a new project where I ...
9
votes
7answers
494 views

What is data mining from a developer's perspective?

I can find the technical explanation of what data mining is in a book or on Wikipedia, but I'm wondering what sort of development does it exactly involve? Is it more about using tools or more about ...
9
votes
7answers
6k views

What kind of artificial intelligence jobs are out there?

Throughout my academic years in computer science I fell in love with many aspects of artificial intelligence. From expert systems, neural networks, to data mining (classification). I wonder, if I was ...
9
votes
10answers
1k views

Datamining open source software alternatives

I am evaluating datamining packages. I have find these two so far: RapidMiner Weka Do you have any experience to share with these two products, or any other product to recommend me? Thanks
8
votes
4answers
474 views

How to find out if a sentence is a question (interrogative)?

Is there an open source Java library/algorithm for finding if a particular piece of text is a question or not? I am working on a question answering system that needs to analyze if the text input by ...
8
votes
3answers
1k views

Architecture for database analytics

We have an architecture where we provide each customer Business Intelligence-like services for their website (internet merchant). Now, I need to analyze those data internally (for algorithmic ...
8
votes
3answers
1k views

What is Java Data Mining, JDM?

I am looking at JDM. Is this simply an API to interact with other tools that do the actual data mining? Or is this a set of packages that contain the actual data mining algorithms?
7
votes
1answer
168 views

Calculating a user's importance or 'Betweenness Centrality' from a user's followers?

I want to know how I can find interesting relationships between users accounts such as the most connected, or most valuable users based on their connections to others. Below I have the two tables I ...
7
votes
2answers
193 views

What are some good ways of estimating 'approximate' semantic similarity between sentences?

I have been looking at the nlp tag on SO for the past couple of hours and am confident I did not miss anything but if I did, please do point me to the question. In the mean time though, I will ...
7
votes
5answers
151 views

Randomness in Artificial Intelligence & Machine Learning

This question came to my mind while working on 2 projects in AI and ML. What If I'm building a model (e.g. Classification Neural Network,K-NN, .. etc) and this model uses some function that includes ...
7
votes
4answers
426 views

Is there any reason to prefer functional programming for data mining projects?

I am researching the possibility of starting a data mining project which will include intensive calculations and transformation on data, and should be relatively easy to scale. In your experience, is ...
7
votes
4answers
400 views

'Similarity' in Data Mining

In the field of Data Mining, is there a specific sub-discipline called 'Similarity'? If yes, what does it deal with. Any examples, links, references will be helpful. Also, being new to the field, I ...
7
votes
1answer
1k views

Naive Bayesian for Topic detection using “Bag of Words” approach

I am trying to implement a naive bayseian approach to find the topic of a given document or stream of words. Is there are Naive Bayesian approach that i might be able to look up for this ? Also, i ...
7
votes
2answers
1k views

How to find common phrases in a large body of text

I'm working on a project at the moment where I need to pick out the most common phrases in a huge body of text. For example say we have three sentences like the following: The dog jumped over the ...
7
votes
6answers
899 views

How to store many years worth of 100 x 25 Hz time-series - Sql Server or timeseries database

I am trying to identify possible methods for storing 100 channels of 25 Hz floating point data. This will result in 78,840,000,000 data-points per year. Ideally all this data would be efficiently ...
7
votes
5answers
343 views

Where can I get databases of cities/places around the world?

In dopplr [http://www.dopplr.com] there is an option to fill the city of travel and the site will automatically find the city around the world. Is there any web service or database for such a city ...
7
votes
5answers
312 views

What are some good resources on data mining?

What are some good resources for grokking the uses and theories behind data mining?
7
votes
5answers
487 views

What are some good resources for learning data mining?

I'd like to get fluent enough in the data mining domain to be able to use the features of the Orange framework to classify photos of fish.
6
votes
3answers
112 views

sequence mining for time and product prediction

I am facing a tricky problem about sequence mining, say I have 10 products, I have million records of these products are purchased. Each user may have only 1 record or 100 records.. such as : user 1, ...
6
votes
3answers
216 views

Probabilistic Generation of Semantic Networks

I've studied some simple semantic network implementations and basic techniques for parsing natural language. However, I haven't seen many projects that try and bridge the gap between the two. For ...
6
votes
3answers
3k views

WEKA Tutorials / Examples for a Newbie

In a follow-up to this answer I want to ask if any of you know any good (and more importantly easy to understand) tutorials and / or examples of data mining with the Weka toolkit. I've been very ...
6
votes
6answers
444 views

Analyzing noisy data

I recently launched a rocket with a barometric altimeter that is accurate to roughly 10 ft (calculated via data acquired during flight). The recorded data is in time increments of 0.05 sec per sample ...
6
votes
5answers
5k views

How do I extract keywords used in text?

How do I data mine a pile of text to get keywords by usage? ("Jacob Smith" or "fence") And is there a software to do this already? even semi-automatically, and if it can filter out simple words like ...
6
votes
6answers
5k views

Data Mining project ideas? [closed]

I am looking for project ideas in the field of data mining. I expect to complete it in a quarter and intend to use C++, Linux as the environment. The course I'm taking aims to build the basics of ...
6
votes
9answers
816 views

What data mining tools do you use?

Besides the two well-known Open Source tools RapidMiner and Weka, are there any other good tools (either Open Source or Commercial), which you can recommend for data mining? Thanks in advance!
6
votes
4answers
2k views

Can someone please explain data mining, SSIS, BI, ETL and other related technologies?

I was talking with a co-worker yesterday regarding a situation where he used SSIS (or something like that) to do some really cool thing with an SSIS Package where he passed in a name like "Dr. ...
5
votes
2answers
111 views

CSV Autodetection in Java

What would be a reliable way of autodetecting that a file is actually CSV, if CSV was redefined to mean "Character-Separated Values", i.e. data using any single character (but typically any ...
5
votes
1answer
55 views

Normalizing a matrix with respect to a constraint

I am doing a project which requires me to normalize a sparse NxNmatrix. I read somewhere that we can normalize a matrix so that its eigen values lie between [-1,1] by multiplying it with a diagonal ...
5
votes
4answers
272 views

Kmeans without knowing the number of clusters?

I am attempting to apply k-means on a set of high-dimensional data points (about 50 dimensions) and was wondering if there are any implementations that find the optimal number of clusters. I ...

1 2 3 4 5 13