Archives
Categories
- Academia (73)
- artificial intelligence (37)
- Big data (79)
- cfp (8)
- Chinese posts (1)
- Conference (66)
- Data Mining (161)
- Data science (86)
- Database (1)
- General (42)
- Industry (1)
- Interview (1)
- Java (7)
- Latex (8)
- Machine Learning (19)
- Mathematics (2)
- open-source (33)
- Other (2)
- Pattern Mining (58)
- Programming (16)
- Research (109)
- spmf (37)
- Time series (3)
- Uncategorized (16)
- Utility Mining (17)
- Video (18)
- Website (3)
-
Recent Posts
- SPMF’s architecture (4) The MemoryLogger
- Unethical services in academia
- SPMF’s architecture (3) The Preference Manager
- A Brief Glossary of Pattern Mining
- SPMF’s architecture (2) The Main class and the Command Processor
- SPMF’s architecture (1) The Algorithm Manager
- How to call SPMF from Visual Basic .Net (VB)?
- How to call SPMF from a C++ Program (Windows)?
- How to call SPMF from R?
- How to call SPMF from Python?
Recent Comments
- SPMF’s architecture (3) The Preference Manager | The Data Mining Blog on SPMF’s architecture (1) The Algorithm Manager
- Philippe Fournier-Viger on The KDDCup 2015 dataset
- Jiahao on The KDDCup 2015 dataset
- How to call SPMF from Visual Basic .Net (VB)? | The Data Mining Blog on How to call SPMF from R?
- SPMF’s architecture (2) The Main class and the Command Processor | The Data Mining Blog on SPMF’s architecture (1) The Algorithm Manager
Tag cloud
- academia
- ai
- algorithm
- algorithms
- apriori
- article
- articles
- artificial intelligence
- big data
- china
- conference
- data
- data mining
- data science
- frequent pattern mining
- graph
- high-utility mining
- high utility itemset mining
- icdm
- itemset
- itemset mining
- java
- journal
- latex
- machine learning
- open-source
- open source
- paper
- papers
- pattern mining
- periodic pattern
- phd
- programming
- Research
- researcher
- review
- reviewer
- sequence
- sequential pattern
- software
- spmf
- utility mining
- video
- workshop
- writing
Number of visitors:
2,142,782
Category Archives: Programming
A Tribute to Hypercard
In this blog post, I will talk about the first programming language that I have learn, which is HyperTalk. Younger readers may have never heard about it, as it was mostly popular in the 1980s and 1990s. Though, it is not … Continue reading
Introduction to the Apriori algorithm (with Java code)
This blog post provides an introduction to the Apriori algorithm, a classic data mining algorithm for the problem of frequent itemset mining. Although Apriori was introduced in 1993, more than 20 years ago, Apriori remains one of the most important data mining algorithms, not because it is the fastest, but because it has … Continue reading
Posted in Big data, Data Mining, Pattern Mining, Programming
Tagged apriori, code, frequent itemset, frequent pattern, itemset, java, pattern mining
1 Comment
The SPMF data mining library: a brief history and what’s next?
In this blog post, I will talk about the well-known open-source library of data mining algorithms implemented in Java, which I am the founder of. I will give a brief overview of its history, discuss some lessons learned from the development of … Continue reading
Posted in Data Mining, open-source, Programming, Research, spmf
Tagged data mining, library, open-source, spmf
Leave a comment
How to test if a data mining mining algorithm implementation is correct?
In this blog post, I will discuss how to check if a data mining algorithm implementation is correct and complete. This is a very important topic for researchers who are implementing data mining algorithms since an incorrect implementation may generate unexpected results. … Continue reading
Posted in Data Mining, Programming, Research, Uncategorized
Tagged algorithm, correctness, data mining, debugging
3 Comments
Drawing a set-enumeration tree using Java and GraphViz
In this blog post, I will explain and provide source code to automatically draw the set-enumeration tree of a set using Java and GraphViz. Drawing a set-enumeration tree is useful in computer science, for example in frequent itemset mining, a subfield of data … Continue reading
Posted in Data Mining, Mathematics, Programming, Research
Leave a comment
Big Problems only found in Big Data?
Today, I will discuss the topic of Big Data, which is a very popular topic nowadays. The popularity of big data can be seen for example in universities. Many universities are currently searching for professors who do research on “big data”. Moreover, … Continue reading
Discovering and visualizing sequential patterns in web log data using SPMF and GraphViz
Today, I will show how to use the open-source SPMF data mining software to discover sequential patterns in web log data. Then, I will show to how visualize the frequent sequential patterns found using GraphViz. Step 1 : getting the … Continue reading
Posted in Data Mining, Java, open-source, Programming, spmf
Tagged data mining, graph, patterns, sequential patterns, spmf, visualization
8 Comments
Why data mining researchers should evaluate their algorithms against state-of-the-art algorithms?
sA common problem in research on data mining is that researchers proposing new data mining algorithms often do not compare the performance of their new algorithm with the current state-of-the art data mining algorithms. For example, let me illustrate this … Continue reading
Posted in Data Mining, Programming, Research
4 Comments
How to measure the memory usage of data mining algorithms in Java?
Today, I will discuss the topic of accurately evaluating the memory usage of data mining algorithms in Java. I will share several problems that I have discovered with memory measurements in Java for data miners and strategies to avoid these … Continue reading
Posted in Data Mining, Programming, Research
Tagged comparison, data mining, experiment, java, memory, performance
1 Comment
What are the steps to implement a data mining algorithm?
In this post, I will discuss what are the steps that I follow to implement a data mining algorithm. The subject of this post comes from a question that I have received by e-mail recently, and I think that it … Continue reading
Posted in Data Mining, Programming
Tagged algorithm, data mining, design, implementation, programming
45 Comments