The Data Mining Forum                             open-source data mining software data mining conferences Data Science for Social and Behavioral Analytics DSSBA 2022 data science journal
IMPORTANT: This is the old Data Mining forum.
I keep it online so that you can read the old messages.

Please post your new messages in the new forum: https://forum2.philippe-fournier-viger.com/index.php
 

Pages: PreviousFirst...6364656667
Current Page: 67 of 67
Results 1981 - 2010 of 2010
12 years ago
webmasterphilfv
Hello djanahana, I'm sorry for the late reply. Normally, I answer more quickly. But I was busy this week. To answer your question: List childNodes = new ArrayList<ITNode>(); It means that we create a list of ITNodes. If you don't write <ITNode> it would also works. But the compiler would not know that this list contains ITNode objects and you would need to always use a &
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello Sneha, Just click on the webpage (download section): http://www.philippe-fournier-viger.com/spmf/index.php?link=download.php Then click on spmf077.zip to download the source code (it includes the source code of FPGrowth, Apriori, Eclat, and many more algorithms). After that, you can follow the installation instructions to know how to compile the source code and run the examples
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello, This is to let you know that I have updated the SPMF framework to add an association rule hiding algorithm named FHSAR. The goal of this algorithm is to hide some sensitive association rules that appear in a database. For example, consider that the rule 5 -->2 appears in a database with minsup = 50% and minconf = 50%. We can apply the FHSAR algorithm. It takes as input (1) a
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello, This is to let you know that I have updated the SPMF framework for data mining. The new version includes an implementation of the algorithm for mining indirect association rules by Tan et al (2000) also described in the book by Tan, Steinbach and Kumar (2006). This algorithm allows to discover pairs of items that are indirectly associated together through another set of items called t
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello everyone, This is to let you know that the 18th ACM SIGKDD Knowledge Discovery and Data Mining (KDD 2012) will be held in Beijing, China next year. The website is: http://kdd.org/kdd2012/ The important dates are as follow: Aug 12-16, 2012 KDD-2012 Conference Jun 15, 2012 Deadline for Camera-Ready Submissions May 11, 2012 Demonstration Notification May 4, 2012 Paper Acceptance
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello Xin, I think that you can just assign a unique number for each function names. For example if you have some code like this: void functionA(){ int a, b = 5; int c = 6; functionA(a); functionB() functionC() functionD() } You could convert this to a transaction like this: 1 2 3 4 where : 1 = functionA, 2 = functionB, 3 = function
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello Xin, I think that you first need to determine what is your goal. I mean that you should think about what kind of patterns you want to discover and for which purpose? Setting your goal should help you to choose an appropriate algorithm. If you decide to use association rule mining, then you need to convert the source code in a transaction database. If you decide to use sequential pa
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello, This is to let you know that the third edition of the data mining book "Data Mining Concepts and Techniques" by Han & Kamber is out (2011). The previous edition was published in 2006. The new edition has been updated to cover many new topics. It is probably the best reference book for data mining now. It covers a wide range of topics from stream data mining, clustering
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello everyone, I have read a good introductory data mining book lately. It is "Introduction to data mining" (2006) by Tan, Steinbach & Kumar ( http://www-users.cs.umn.edu/~kumar/dmbook/ ). This book is pretty easy to understand. It does not cover a wide range of topic unlike the book of Han & Kamber. But it provides a very good introduction to association rule mining,
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hi Wang Weina, You can download the BMS-WebView1 dataset here: http://www.philippe-fournier-viger.com/spmf/datasets/BMS1.dat Also, here is a link to download the IBM Quest Synthetic Data Generator that is frequently used in the data mining literature to generate synthetic datasets: http://www.philippe-fournier-viger.com/spmf/datasets/IBM_Quest_data_generator.zip Best, Philippe
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
This link does not work anymore. Philippe
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
I did not find any implementation of these algorithms either on the web. It seems like the persons who implemented them do not want to share the source code or even the executable files. I think that perhaps you could contact the authors of these algorithms to try to get the source code/executables, or contact some authors of articles that have used them, to ask them if they can share them w
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello, This is to announce that I have made a Java implementation of the SPAM algorithm for sequential pattern mining. For those of you who are interested in the SPAM algorithm, you can download the source code of my implementation as part of the Sequential Pattern Mining Framework. I think that the SPAM algorithm is a nice algorithm. It seems pretty fast and it is memory efficient. Th
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
mahnaz Wrote: ------------------------------------------------------- > webmasterphilfv Wrote: > -------------------------------------------------- > ----- > > Hello Mahnaz, > > > > The implementation of Taku Kudo is to my > knowledge > > the only source code of PrefixSpan in C++. > > > > Jian pei et al. (the authors of PrefixSpan) >
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello Mahnaz, The implementation of Taku Kudo is to my knowledge the only source code of PrefixSpan in C++. Jian pei et al. (the authors of PrefixSpan) offers a binary c++ implementation of PrefixSpan as part of the Illimine project. But they don't give the source code. Me, I have made a Java implementation of PrefixSpan that is quite fast and it includes all the tricky parts of PrefixSpa
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello everyone, I have just finished an implementation of the ID3 algorithm in Java. Not very hard to do. If you want it, then visit my webpage about data mining algorithms: http://www.philippe-fournier-viger.com/spmf/index.php
Forum: The Data Mining / Big Data Forum
12 years ago
webmasterphilfv
Hello, I have an implementation of Apriori in Java as well as many other algorithms for frequent itemset mining. You can go to my website SPMF: apriori source code. Then send me an e-mail and I will be glad to send you the source code. If you are looking for implementations in C++ or other languages, I do not have them but there is some other website that have some Hope this helps Phi
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Hello, FP-Growth is a little bit complicated to explain. The best way to understand it is to take the time to read the paper. You can even draw some fp-trees on paper to make sure that you understand how it works. But I can give you a brief description of the main process. FPGrowth takes as input a transaction database. It outputs all the frequent itemsets (itemsets that appear in at least
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Hello, I have found a good website that list some post-doc and ph.d. positions related to data mining but also to other topic such as cloud-computing etc. It seems to be updated every month. http://beamtenherrschaft.blogspot.com/ Phil
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
ECML/PKDD 2011 challenge starts on 18th April 2011. Prize fund is EUR 5,000. Discovery challenge affiliated with ECML/PKDD 2011 Conference started on April 18th. It is organized and sponsored by EU project e-LICO and launched via the TunedIT platform. The challenge is related to recommendation of lectures recorded at VideoLectures.Net site and is based on lecture viewing sequences and contents
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
This is a very good conference. But the acceptance rate is very low... Last year: 19.4%.
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Thanks for this information Mike. That will give me more time for preparing my paper for this conference! :-)
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Hi Mike, I agree with you. Those are hot topics. Best, Phil
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
ECML PKDD 2011 - The European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Databases September 5-9, 2011 Athens, Greece http://www.ecmlpkdd2011.org/ Key Dates Abstract submission deadline: 5 Apr. 2011 Paper submission deadline: 12 Apr. 2011 Author notification: 3 Jun. 2011 Camera ready submission: 12 Jun. 2011 Call For Papers The European C
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
There is a nice page from Stanford University that provides links to several graph datasets that can be downloaded for developing and testing data mining algorithms: >> http://snap.stanford.edu/data/#socnets It includes some social networks datasets, citation networks datasets, internet networks, wikipedia networks, and much more, etc.
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
I have java implementations of Fp-growth, Apriori, eclat and many other algorithms. Just have a look at my webpage: http://www.philippe-fournier-viger.com/spmf/
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Hi, I have made Java implementations of Apriori, PrefixSpan and more than 39 other data mining algorithms in Java.  To get the source code, just click here: SPMF Data Mining Framework  and then go to the download section, then follow the instructions on that page. Best regards, Philippe
Forum: The Data Mining / Big Data Forum
13 years ago
webmasterphilfv
Hi Anusha, I send it to you. You can also find it on this webpage in Java: http://www.philippe-fournier-viger.com/spmf/
Forum: The Data Mining / Big Data Forum
14 years ago
webmasterphilfv
Here is a short list of open-source data mining projects: RapidMiner : http://rapid-i.com/content/view/10/68/lang,en/ Java Weka : http://www.cs.waikato.ac.nz/~ml/weka/ Java JDMP : http://www.jdmp.org/ Java SPMF: http://www.philippe-fournier-viger.com/spmf/ Java Machine Learning in Java : http://www.kddresearch.org/Groups/Machine-Learning/MLJ/ JDMF : http://sourceforge.net/
Forum: The Data Mining / Big Data Forum
14 years ago
webmasterphilfv
Hello Ahmed, I have a Java implementation of the Apriori algorithm and several other algorithms for sequential pattern mining, frequent itemset and association rules mining: http://www.philippe-fournier-viger.com/spmf/ Just send me an e-mail, and I will give you the source code. Best regards, Philippe
Forum: The Data Mining / Big Data Forum
Pages: PreviousFirst...6364656667
Current Page: 67 of 67

This forum is powered by Phorum and provided by P. Fournier-Viger (© 2012).
Terms of use.