Top "Data-mining" questions

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

WEKA K-Means Clustering

Can anybody explain what the output of the K-Means clustering in WEKA actually means. For example kMeans Number of iterations: 9 …

cluster-analysis data-mining weka k-means
Formula for "Relative absolute error" and "Root relative squared error" used in machine learning (as computed by Weka)

In open source data mining software Weka (written in Java), when I run some data mining algorithm like Linear regression …

machine-learning data-mining weka
Is it ok to define your own cost function for logistic regression?

In least-squares models, the cost function is defined as the square of the difference between the predicted value and the …

machine-learning data-mining regression
Why is the F-Measure a harmonic mean and not an arithmetic mean of the Precision and Recall measures?

When we calculate the F-Measure considering both Precision and Recall, we take the harmonic mean of the two measures instead …

machine-learning classification data-mining
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 …

php nlp data-mining nltk weka
Scikit-Learn: Predicting new points with DBSCAN

I am using DBSCAN to cluster some data using Scikit-Learn (Python 2.7): from sklearn.cluster import DBSCAN dbscan = DBSCAN(random_state=0) …

scikit-learn cluster-analysis data-mining predict dbscan
Clustering cosine similarity matrix

A few questions on stackoverflow mention this problem, but I haven't found a concrete solution. I have a square matrix …

python math scikit-learn cluster-analysis data-mining
random unit vector in multi-dimensional space

I'm working on a data mining algorithm where i want to pick a random direction from a particular point in …

random distribution data-mining computational-geometry uniform
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, …

artificial-intelligence neural-network data-mining
Writing rules generated by Apriori

I'm working with some large transactions data. I've been using read.transactions and apriori (parts of the arules package) to …

r data-mining apriori arules