Tagged Questions
0
votes
0answers
52 views
Data mining: Looking for gentle tutorial on sequence data mining
By sequence, I mean data in some order, eg. time series, DNA sequence, .. And by data mining I mean discovering patterns (rather than predicting, clustering, ..)
I've just read up the Apriori ...
1
vote
3answers
54 views
How to determine if a current set of data values represent or relate to previous historic data values?
I am trying to develop an method to identify browsing pattern of a user on the basis of page requests.
In a simple example I have created 8 pages and for each page request from the user to the page I ...
1
vote
1answer
88 views
How to identify a new pattern in a URL with a machine learning algorithm (Text mining)
I am trying to identify new patterns after analyzing a number of URLs. So let's say, I am investigating the hypothetical website Yoohle.com and their URLs have the following structure.
domain = ...
0
votes
1answer
104 views
time series simulation and logical checking with Matlab or with other tools
1) I have time series data and signals (indicators) that their value changes over time.
My question:
2) I need to do logical checking all the time, e.g. if signal 1 and 2 happened around the same ...
-3
votes
1answer
45 views
Data Mining Resources [closed]
I am a UG student and want to learn data mining practically, Can anyone provide help me for the good resources about data mining. A help related to data sets sources used for checking the algorithm ...
2
votes
3answers
537 views
Expectation Maximization coin toss examples
I've been self-studying the Expectation Maximization lately, and grabbed myself some simple examples in the process:
http://cs.dartmouth.edu/~cs104/CS104_11.04.22.pdf
There are 3 coins 0, 1 and 2 ...
1
vote
1answer
35 views
ELKI COPAC implementation
I tried to run COPAC ELKI implementation on the example dataset provided on the official site (mouse.csv) but I get a NullPointerException which leads me to think that there is some detail that I omit ...
1
vote
4answers
82 views
Python : DIY generalize this “all_subsets” function to any size subsets
Implementing a toy Apriori algorithm for a small-data association rule mine, I have a need for a function to return all subsets.
The length of the subsets is given by parameter i. I need to ...
0
votes
1answer
135 views
Python code for ARTXP time series prediction algorithm and ARTXP theory
The problem: model evolution of values of a continuous variable over time.
I came through a paper presenting an approach for predicting the next values for a time series. Whereas ARIMA model is more ...
0
votes
1answer
107 views
Data mining: Apriori issue. Min-support
I wrote data mining apriori algorithm, it works well on small test data but I am having issue to run it on bigger data sets.
I am trying to generate rules of items which were bought together ...
2
votes
2answers
697 views
Numeric example of the Expectation Maximization Algorithm
Could anyone provide a simple numeric example of the EM algorithm as I am not sure about the formulas given? A really simple one with 4 or 5 Cartesian coordinates would perfectly do.
-3
votes
1answer
46 views
What is the most suitable dataset? [closed]
Hi I am making a data mining application that can classify patients to their correct diagnosis, based on their symptons. I was wondering if anyone knew what is the most suitable dataset I need and ...
2
votes
2answers
504 views
Frequent Itemsets & Association Rules - Apriori Algorithm
I'm trying to understand the fundamentals of the Apriori (Basket) Algorithm for use in data mining,
It's best I explain the complication i'm having with an example:
Here is a transactional dataset:
...
0
votes
1answer
203 views
Apriori algorithm-difference between A->B and B->A application rule
what is the difference between A->B and B->A application rule..
if transaction database is like this ,
T1 Bread, Jelly, Butter
T2 Bread, Butter
T3 Bread, Butter, Milk
T4 Beer, Bread
T5 Beer, ...
0
votes
1answer
607 views
C4.5 and ID3 algorithms with emphasis on practical details
I began to apply data mining algorithms. Now I study decision trees. There a lot of material across the Internet about C4.5 and ID3 algorithms, but I want to know practical details, pros and cons and ...
3
votes
1answer
144 views
Algorithm to search for similar lists of integers
I have a SQLite database that contains two tables:
Objects:
object_id int,
name varchar(50)
Values:
key char(12),
value int,
object_id int
As you can see each object contains a list of ...
0
votes
1answer
137 views
Collaborative filtering in Recommendation Algorithms
How do i use collaborative filtering to find a university i want to study in? . I would like to later design a app for this . I have read papers on item based collaborative filtering but still need ...
4
votes
4answers
328 views
Machine Learning Algorithm for Completing Sparse Matrix Data
I've seen some machine learning questions on here so I figured I would post a related question:
Suppose I have a dataset where athletes participate at running competitions of 10 km and 20 km with ...
2
votes
5answers
150 views
I'm looking for an algorithm or function that can take a text string and convert it a number
I looking for a algorithm, function or technique that can take a string and convert it to a number. I would like the algorithm or function to have the following properties:
Identical string yields ...
10
votes
3answers
365 views
An understandable clusterization
I have a dataset. Each element of this set consists of numerical and categorical variables. Categorical variables are nominal and ordinal.
There is some natural structure in this dataset. Commonly, ...
0
votes
4answers
226 views
String container for large N
I am looking for a string container suited for large number of strings (> 10^9). Strings have variable length. It must be fast for insertions and lookup and have frugal memory use. Strings are ...
1
vote
3answers
232 views
Finding similar objects in 500k records
EDIT Solution
this was the solution, thanks to @mprivat:
from mysql_wrapper2 import Mysql
import Levenshtein
import time
db = Mysql()
fields = [...]
records = db.query('SELECT *, CONCAT(%s) as ...
-1
votes
1answer
114 views
What should be the derived variables for telecom churn prediction? [closed]
When predicting churn in telecom sector, we usually have details of the call and network data of subscribers. We have details such as number of calls made, sms sent to competitor, customer profile ...
3
votes
2answers
123 views
Linking similar sums/problems in exam papers
I'm working on an app which is creating a data bank of questions from old question papers. I wanted to maintain a table linking similar questions together as they were inserted. (The table I had in ...
3
votes
1answer
452 views
Implementing sampling & data mining algorithms in Hadoop
The current implementation involves sampling of large input transactional file and then finally applying the 'FP growth algorithm' to this sampled data for data mining. However, it has its limitations ...
0
votes
6answers
526 views
Pattern recognition for Datamining and text based anaylysis
I am in process of creating a software for dumping plain text of whatever users have commented and posted on their Twitter profile regarding some Cosmetic Product "XYZ". I have parsed the JSON objects ...
1
vote
1answer
113 views
Find trends in search engines query log
I am trying to do some research with search queries logs. My first interest is to found trends.
For example: at winter people often have a cold sore. So i guess that at winter we can see growth of ...
-3
votes
1answer
737 views
WEKA HierarchicalClusterer class always return 2 clusters
Here is my code:
import weka.clusterers.ClusterEvaluation;
import weka.clusterers.HierarchicalClusterer;
import weka.clusterers.EM;
import weka.core.converters.CSVLoader;
import ...
1
vote
4answers
920 views
OPTICS Clustering algorithm. How to get the best epsilon
I am implementing a project which needs to cluster geographical points. OPTICS algorithm seems to be a very nice solution. It needs just 2 parameters as input(MinPts and Epsilon), which are, ...
-1
votes
3answers
140 views
Real world Algorithm - Measuring uniqueness of input values
I have a list of key value pairs.
For each key, I want to see how unique the values are. For example, for a particular key k1, all the values might be the same. (best case).
For a key k2, half of the ...
0
votes
2answers
1k views
k nearest neighbor classifier training sample size for each class
Could someone please tell me whether the training sample sizes for each class need to be equal?
Can I take this scenario?
class1 class2 class3
samples 400 500 300
or ...
1
vote
1answer
379 views
What is the Time and Space complexity of FP-Growth algorithm?
How do we calculate the Time complexity and Space complexity of FP_growth algorithm in Data Mining??
-3
votes
2answers
259 views
Algorithm or tips how to measure celebrity popularity across the world programatically? [closed]
Here is the situation :
Let's say I want to check who is more popular among five celebrities, and display the three most popular.
Let's say these five names are: "brad pitt", "will smith", "bruce ...
1
vote
2answers
142 views
Effects of Sparsity of dataset in data mining [closed]
Hi i would like to ask how will sparsity in datasets (Multiple zero values in most dimensions) affect the search efficiency or accuracy when using Distance matrices (euclidean). I have tested such ...
6
votes
2answers
135 views
Association mining with large number of small datasets
I have a large number (100-150) of small (approx 1 kbyte) datasets.
We will call these the 'good' datasets.
I also have a similar number of 'bad' datasets.
Now I'm looking for software (or perhaps ...
-7
votes
1answer
277 views
Information Extraction Algorithm [closed]
If anybody has any ideas on how I can begin to tackle this problem, it would be greatly appreciated.
When I take Drug A, I get a splitting headache.
When I take Drug A, my splitting headache ...
3
votes
2answers
288 views
Develop algorithm to analyze words
I have am working on a project where I have seven "posts." The posts are just a sentence or two about the subject. What I need to do is to develop an algorithm which looks through the posts and ...
0
votes
3answers
220 views
Create dynamic parent child relationship
I have a user and group database. There are a lot of groups on the database and each group has a lot of member. For example;
User1 is member of Group1, Group2, Group3
User2 is member of Group2
User3 ...
3
votes
2answers
199 views
Algorithm to find similarity of questions
I did same data mining and pulled all the interview questions from google and microsoft on glassdoor:
http://letschat.info/?p=34
http://letschat.info/?p=37
I have the two lists on there.
What I ...
4
votes
3answers
448 views
Algorithms used for programmatic classification of recipes
I'm interested in classifying recipes programmatically based on a statistical analysis of various properties of the recipe. In other words, I want to classify a recipe as Breakfast, Lunch, Dinner or ...
5
votes
3answers
1k views
Recommendation algorithm (and implementation) for finding similar items and users
I have a database of about 700k users along with items they have watched/listened to/read/bought/etc.
I would like to build a recommendation engine that recommends new items based on what users with ...
3
votes
2answers
363 views
Programmatic techniques to detect trends in historical sports match data
Summary
I have been looking at historical Australian Rules outcomes using excel with an eye on Betfair odds to see if is an opportunity to better predict future match outcomes. My progress ...
6
votes
3answers
375 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, ...
3
votes
3answers
135 views
Ways to determine a group of units in RTS
Looking for an algorithm that can be used to determine groups of units that move together as a squad in a real time strategy game like StarCraft. The direction that I am currently look at is a ...
-1
votes
1answer
1k views
Why does apache Mahout frequent pattern minnig algorithm return only 1 item itemsets?
I'm currently testing Apache Mahout Parallel Frequent Pattern Mining . Before using it in the real project, I started with a simple code, just to be sure it works as I expect it to do...
I did not ...
2
votes
3answers
433 views
URL path similarity/string similarity algorithm
My problem is that I need to compare URL paths and deduce if they are similar. Below I provide example data to process:
# GROUP 1
/robots.txt
# GROUP 2
/bot.html
# GROUP 3
...
4
votes
2answers
504 views
Similarity matrix -> feature vectors algorithm?
If we have a set of M words, and know the similarity of the meaning of each pair of words in advance (have a M x M matrix of similarities), which algorithm can we use to make one k-dimensional bit ...
43
votes
5answers
2k 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 ...
0
votes
1answer
430 views
How does Twitter Recommendation Engine work? [closed]
How do twitter recommend "who to follow"?
Any idea how this feature works?
0
votes
4answers
178 views
How can I implement a search service which uses proximity to a location as a ranking parameter
I have a data set over which I need to implement a location based search service. I will filter the data initially based on keyword arguments and then I need to sort them based on proximity to the ...
