<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Forum</title>
<description>This is a forum for anyone interested in Artificial Intelligence and Data Mining!</description><link>https://forum.philippe-fournier-viger.com/index.php</link><lastBuildDate>Thu, 30 Apr 2026 09:26:04 -0400</lastBuildDate>
<generator>Phorum 5.2.10</generator>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6881,6881#msg-6881</guid>
<title>::o !!!! !!!!! IMPORTANT! THE FORUM WILL MOVE TO A NEW ADDRESS !!!! !!!!! ::o (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6881,6881#msg-6881</link><description><![CDATA[Good morning all,<br /><br />I am announcing today that the Data Mining Forum will move to a new address:<br /><br /><a href="https://forum2.philippe-fournier-viger.com" target="_blank" >https://forum2.philippe-fournier-viger.com</a><br /><br />This is because the original forum was built more than 12 years ago based on Phorum, an old PhP script that is no longer supported since about 10 years. The website is thus becoming harder and harder to maintain as it is incompatible with new PhP versions. I will keep the old forum online so that it can be used to read the old messages but will deactivate the posting of new messages.<br /><br />Please use the new forum for any new discussions.<br /><br />If you have any suggestions, also please post in the new forum.<br /><br />Thanks for your understanding,<br /><br />Philippe]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Tue, 05 Apr 2022 00:59:08 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6839,6839#msg-6839</guid>
<title>Up to date Data Mining Conference List -2022 (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6839,6839#msg-6839</link><description><![CDATA[Dear Prof.Philippe,<br /><br />I hope you are doing well.<br /><br />Please let us know the appropriate data mining conferences open for submission.<br /><br />Regards,]]></description>
<dc:creator>User</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Sun, 03 Apr 2022 12:19:37 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6836,6836#msg-6836</guid>
<title>Real-valued utilities (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6836,6836#msg-6836</link><description><![CDATA[Dear all,<br /><br />I wonder if there's a means to enter real-valued utilities in an SPMF file. My utilities are prices, that is, with two decimal places. I'm multipliying them all by 100 to transform them into integer numbers.<br /><br />I've taken a look at a thread in which someone posted a version of FHM that works with float numbers, but I'm not sure if there's a general solution to the problem.<br /><br />Thanks in advance.]]></description>
<dc:creator>Pepe Lopis</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Tue, 29 Mar 2022 12:19:59 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6830,6830#msg-6830</guid>
<title>How to download other version smpf? (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6830,6830#msg-6830</link><description><![CDATA[I'm trying to reproduce a project that requires a strange version of spmf.<br />ca.pfv.spmf.algorithms.clustering.dbscan.DoubleArrayDBS<br />public class MyDoubleArrayDBS extends DoubleArrayDBS implements KryoSerializable {<br /><br />boolean visited = false;<br />public MyDoubleArrayDBS(double[] data) {<br />super(data);<br />}.<br /><br />it has one params]]></description>
<dc:creator>hbat</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 17 Mar 2022 11:24:21 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6827,6827#msg-6827</guid>
<title>Association rules and itemsets (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6827,6827#msg-6827</link><description><![CDATA[Hi<br /><br />I would like to get information about the association rules. How do we get association rules and how do we get itemsets??]]></description>
<dc:creator>Laticia</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Mon, 14 Mar 2022 01:11:52 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6823,6823#msg-6823</guid>
<title>How to set the minutil threshold? (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6823,6823#msg-6823</link><description><![CDATA[<b>I received this question today:</b><br /><br /><i>have a doubt about high utility itemset mining. How we can define the minimum utility? I have read many papers and they said that the minimum utility value is based on the users' preferences. Actually, I do trial and error to choose the minimum utility. But, is there any logic that can be used to define the good/optimal/correct minimum utility?</i><br /><br /><b>My answer:</b><br /><br />It really depends on the data and what you want to do.<br /><br />High utility itemset mining can have many applications. One of them is to analyze customer purchase behavior. Then let's say that you have a store where all products are very cheap, then you may want to use a lower minimum utility otherwise you will find nothing. But if you have a store where all products are expensive and yield a high profit, you may want to use a higher minimum utility threshold because otherwise everything will be high utility.<br /><br />So what I mean by this example is that for different contexts, the data is different and the threshold must be set differently<br /><br />Generally,<br />if the threshold is set too low there are more patterns, and too many patterns is not desirable because it takes space and if you want to look at them, then there will be too many patterns... Besides the runtime can increase a lot.<br /><br />And if the threshold is set too high, then you will not find enough patterns, or you may even find nothing.<br /><br />So generally, people will just start from a high minutil value and decrease until they find enough patterns and not too much.<br /><br />To avoid the problem of how to set minutil, some papers have redefined the problem as top-k highutility itemset mining. In that problem, instead of setting minutil, you can set directly k the number of patterns that you want to find. For example, you can say i want to find the top-500 patterns that make the most money. This is much more intuitive in my opinion than setting the minutil threshold. But it is just another way to look at the problem.<br /><br />So in conclusion, there is not really one way to decide what is the best minutil value... The best depends on your applications and how many patterns you want to find.]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Fri, 11 Mar 2022 02:40:54 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6821,6821#msg-6821</guid>
<title>CFP : 5th Int. Conf. on Smart Technologies in Data Science and Communication (SMART DSC-2022) (India/Online) (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6821,6821#msg-6821</link><description><![CDATA[<b>Fifth International Conference on Smart Technologies in Data Science and Communication</b><br /><br /><b>(SMART DSC-2022)</b><br /><br />Hosted by: K.L. Deemed to be University,<br /><br />KLEF Dates: July 21-22, 2022<br /><br />Venue: Vijayawada/Guntur,<br /><br />Country: India<br /><br />Website: <a href="http://smartdsc2022.azurewebsites.net/" target="_blank" >http://smartdsc2022.azurewebsites.net/</a><br /><br /><a href="https://ocs.springer.com/misc/home/SMART-DSC2022" target="_blank" >https://ocs.springer.com/misc/home/SMART-DSC2022</a><br /><br /><br /><br />Special Theme:: “Data Science: Unseen patterns and Decision”<br /><br />This is a CfP to submit your paper to the SMARTDSC-2022 conference; we are accepting submissions from academicians, researchers, students and software professionals.<br /><br />Conference Proceedings will be published by LNNS Series (Scopus Indexed):<br /><br /><a href="https://www.springer.com/series/15179" target="_blank" >https://www.springer.com/series/15179</a><br /><br /><br /><br />Accepted papers (after double blind review) will be published in Conference Proceedings and selected good conference published papers will be recommended to publish in the following International Journals after further reviews (freely):<br /><br />• International Journal of Cloud-Computing and Super-Computing<br /><br />• International Journal of Private Cloud Computing Environment and Management<br /><br />• International Journal of Urban Design for Ubiquitous Computing<br /><br />• International Journal of Internet of Things and Big Data<br /><br />• International Journal of Advanced Research in Big Data Management System<br /><br />• International Journal of Internet of Things and its Applications<br /><br />• Journal of Statistical Computing and Algorithm (JSCA)<br /><br />• International Journal of Multimedia and Ubiquitous Engineering<br /><br />• International Journal of Software Effectiveness and Efficiency<br /><br />• International Journal of u- and e- Service, Science and Technology<br /><br />• International Journal of Signal Processing, Image Processing and Pattern Recognition<br /><br />• International Journal of Database Theory and Application<br /><br />• International Journal of Hybrid Information Technology<br /><br />• International Journal of Security and its Applications (ESCI)<br /><br />• International Journal of Future Generation Communication and Networking (ESCI)<br /><br />• International Journal of Transportation (ESCI)<br /><br />• International Journal of Grid and Distributed Computing (ESCI)<br /><br />• International Journal of Software Engineering and Its Applications<br /><br />• International Journal of Sensors and Its Applications for Control Systems<br /><br /><br /><br /><br />Conference Flow:<br /><br />Conference Dates: July 21-22, 2022<br /><br /><b>Paper submission Deadline: May 10, 2022</b><br /><br />Acceptance Notification: June 5, 2022<br /><br />Submission deadline for revised papers: June 15, 2022<br /><br />Author Registration Deadline: June 25, 2020<br /><br /><br /><br />Registration: All authors can participate, we give an opportunity to all authors that have a limited budget and from far countries to choose virtual registration. For more information, please check the registration web-page at our website.<br /><br />Please follow the Submission Process in the Conference Website. Alternatively, you may send your Paper(s) to the following mail id: mvnaresh@kluniversity.in<br /><br />Contact:<br /><br />M.Venkata Naresh<br /><br />mvnaresh@kluniversity.in<br /><br />+91 984 984 5169<br /><br /><br /><br />--<br /><br />Thanking you, Best Regards,<br /><br />Philippe Fournier-Viger,<br /><br />and<br /><br />P. Sai Kiran<br /><br />Conference Chair, SMART DSC-2022.<br /><br />http://smartdsc2022.azurewebsites.net/<br /><br />https://ocs.springer.com/misc/home/SMART-DSC2022]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 10 Mar 2022 05:15:20 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6820,6820#msg-6820</guid>
<title>UCI repository datasets transformation (3 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6820,6820#msg-6820</link><description><![CDATA[Dear Sir,<br /><br />First, thanks for your informative website for the data mining community.<br />I would like to ask you about the best method to transform datasets from UCI to be usable for FIM methods.<br /><br />Kind regards,]]></description>
<dc:creator>user</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Wed, 23 Mar 2022 14:01:14 -0400</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6818,6818#msg-6818</guid>
<title>CFP DSSBA @ IEEE DSAA (Data Science for Social and Behavioral Analytics) (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6818,6818#msg-6818</link><description><![CDATA[Hi all,<br /><br />I am organizing a new special session at <b>IEEE DSAA 2022</b> called <b>Data Science for Social and Behavioral Analytics</b>.<br /><br /><img src="http://www.philippe-fournier-viger.com/DSSBA_2022/dssba2022_logo.png" class="bbcode" border="0" /><br /><br />All accepted papers will be published in the regular proceedings of IEEE DSAA 2022.<br /><br />Please see this website for more details:<br /><a href="http://philippe-fournier-viger.com/DSSBA_2022/index.html" target="_blank" >http://philippe-fournier-viger.com/DSSBA_2022/index.html</a>]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Wed, 09 Mar 2022 21:19:37 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6810,6810#msg-6810</guid>
<title>PFPM algorithm for periodic itemset mining (2 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6810,6810#msg-6810</link><description><![CDATA[HI!<br /><br />I would like to use PFPM for mining periodic itemsets in airplane flight data to find periodic itemsets of buy tickets and cancelled flights.<br />Where can I get data?<br /><br />LAT]]></description>
<dc:creator>Laticia</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Fri, 11 Mar 2022 10:00:34 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6809,6809#msg-6809</guid>
<title>Master thesis (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6809,6809#msg-6809</link><description><![CDATA[Hi, I plan to do data modeling in the financial area for my master's dissertation. I am thinking of finding the connection between a certain company or country characteristics ( x values) and their creditworthiness (here I am still looking for a y variable such as credit score, bankruptcy occurrence, etc.). Do you know in which databases I could find required input_ Company data would be great, however, most likely country data might be more accessible then I could also do the thesis based on this. Thank you and very happy about any experience you can share.]]></description>
<dc:creator>Leapfrog</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Sat, 26 Feb 2022 15:27:25 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6806,6806#msg-6806</guid>
<title>Different F-measure of two classes of the same dataset (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6806,6806#msg-6806</link><description><![CDATA[For a data set of two classes verified and not_verified, I have the following 'detailed accuracy by class'<br /><br />TP | Rate | FP | Rate | Precision | Recall | F-Measure| MCC ROC | Area PRC | Area | Class<br />0.746 | 0.440 | 0.760 | 0.746 | 0.753 | 0.303 | 0.653 | 0.732 | verified<br />0.560 | 0.254 | 0.542 | 0.560 | 0.550 | 0.303 | 0.653 | 0.457 | not_verified<br /><br /><br />Why verified class has higher F-Measure than the not_verified class?]]></description>
<dc:creator>user</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Wed, 23 Feb 2022 05:17:41 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6799,6799#msg-6799</guid>
<title>why are there two different trees for the same data set (3 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6799,6799#msg-6799</link><description><![CDATA[I am working on Pima Indians Diabetes Database in Weka. I noticed that for decision tree J48 the tree is smaller as compared to the Random Tree. I am unable to understand why it is different when the data set is same?]]></description>
<dc:creator>user</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Fri, 25 Feb 2022 05:20:46 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6788,6788#msg-6788</guid>
<title>How do you check memory for multiple algorithms? (3 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6788,6788#msg-6788</link><description><![CDATA[Hi there researchers and developer,<br /><br />I'm writing my first paper on novel data-mining algorithms, but I have this problem with checking memory.<br /><br />I use SPMF's MemoryLogger, my code is something like:<br /><br /><i>algo1.run();<br />algo1.printStats();<br /><br />algo2.run();<br />algo2.printStats();<br /><br />algo3.run();<br />algo3.printStats();</i><br /><br />I would like to check the three algo's memory at once, but it seems that the memory just adds up for some reasons, for example if i run above code I have something like this:<br /><br /><i>algo1.memory = 126 mb<br />algo2.memory = 327 mb<br />algo3.memory = 613 mb</i><br /><br />Then if I run each algorithm separately one by one I have this:<br /><br /><i>algo1.memory = 127 mb<br />algo2.memory = 168 mb<br />algo3.memory = 13 mb</i><br /><br />What causes this difference? And how do I fix it?<br />Thanks in advance.]]></description>
<dc:creator>Phú Võ Lê Thanh</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Mon, 07 Mar 2022 20:29:11 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6787,6787#msg-6787</guid>
<title>SPMF 2.52 is released ! (new algorithms etc.) (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6787,6787#msg-6787</link><description><![CDATA[Good afternoon all,<br /><br />This is to announce the new release of SPMF (v. 2.52)<br /><br />The main modification is the addition of three new algorithms:<br /><br />- The <b>TKU-CE</b> algorithm for <b>heuristically mining the top-k high-utility itemsets</b> with cross-entropy (thanks to Wei Song, Lu Liu, Chuanlong Zheng et al., for the original code)<br />- The <b>TKU-CE+</b> algorithm for <b>heuristically mining the top-k high-utility itemsets</b> with cross-entropy with optimizations (thanks to Wei Song, Lu Liu, Chuanlong Zheng et al., for the original code)<br />- The <b>TKQ</b> algorithm for <b>mining the top-k quantitative high utility itemsets</b> (thanks to Nouioua, M. et al., for the original code)<br /><br />These three algorithms are the original implementations and were published in 2021.<br /><br />If you have algorithms that you would like to also include in SPMF, feel free to contact with me at philfv AT qq.com<br /><br />Philippe]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Fri, 11 Feb 2022 01:01:04 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6785,6785#msg-6785</guid>
<title>A real health dataset (2 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6785,6785#msg-6785</link><description><![CDATA[Dear Professor,<br />I am looking for a dataset to be considered as a case study. It is preferred to be in the health sector domain but others are appreciated as well.<br /><br />Could you please help me to find a proper dataset for FIM?<br /><br />Thanks and regards,<br />Liara]]></description>
<dc:creator>Liara</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Mon, 14 Feb 2022 09:49:15 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6779,6779#msg-6779</guid>
<title>CFP UBISEQ 2022 - Guangzhou, China Deadline: June 15, 2022 (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6779,6779#msg-6779</link><description><![CDATA[Call for Papers for the <a href="http://ubisecurity.org/2022/" target="_blank" >Second International Conference on Ubiquitous Security<br /><br />(UbiSec 2022)</a><br /><br /><br /><br />Venue &amp; Dates:<br /><br />Zhangjiajie, China, November 15 - 18, 2022<br /><br /><br />Website:<br /><br /><a href="http://ubisecurity.org/2022/" target="_blank" >http://ubisecurity.org/2022/</a><br /><br /><br /><br />Introduction<br /><br />The Second International Conference on Ubiquitous Security (UbiSec 2022) stems from three conference/symposium/workshop series:<br /><br /><br />(1) The well-established SpaCCS conference series with Springer LNCS: UbiSec is inspired by the SpaCCS style of three tracks (Security, Privacy, and Anonymity, &quot;Spa&quot; for short), which covers &quot;Big Security&quot; leveraging computation, communication and storage (&quot;CCS&quot; for short) systems and networks. UbiSec extends this style with three new tracks: Cyberspace Security, Cyberspace Privacy, and Cyberspace Anonymity.<br /><br />(2) The UbiSafe symposium series: UbiSec follows the UbiSafe vision on &quot;Ubiquitous Safety&quot;, also meaning that &quot;YOU (will) BE SAFE&quot; (pronounced &quot;UbiSafe&quot;). UbiSec extends this vision to &quot;Ubiquitous Security&quot;, using &quot;Big Security&quot; to embrace NOT ONLY security, privacy and anonymity, BUT ALSO safety, reliability, dependability, trustworthiness and more, also meaning that &quot;YOU (will) BE SEC(ure)&quot; (pronounced &quot;UbiSec&quot;).<br /><br /><br />(3) The IWCSS workshop series: UbiSec follows the IWCSS theme on &quot;Cyberspace Security&quot;, with &quot;Cyberspace&quot; as the 5th national sovereign space besides the traditional four domains of land, sea, air, and aerospace. UbiSec extends this theme to &quot;Ubiquitous Security&quot;, meaning that cyberspace will be secure, physical world will be secure, social networking systems will be secure, and thus &quot;YOU (will) BE SECure&quot;!<br /><br />The UbiSec 2022 Conference (&quot;The Conference&quot; for short) is the second event in the series of conferences/symposia/workshops which are devoted to security, privacy and anonymity in cyberspace, physical world, and social networks. The Conference covers many dimensions including security algorithms and architectures, privacy-aware policies, regulations and techniques, anonymous computation and communication, encompassing fundamental theoretical approaches, practical experimental projects, and commercial application systems for cyberspace, physical world, and social networking systems. As applications of computer and information technology have permeated in every aspect of our daily life, the issues of security, privacy, and anonymity have become increasingly critical. The Conference will provide a forum for world-class researchers to gather and share their research achievements, emerging ideas and trends in the highly challenging research fields.<br /><br /><br />UbiSec 2022 follows the UbiSec 2021 conference in Guangzhou and also the traditions of previous successful SpaCCS/UbiSafe/IWCSS conference/symposium/workshop series, held in Nanjing, China (SpaCCS 2020/UbiSafe 2020), Guangzhou, China (IWCSS 2020); Altanta, USA (SpaCCS 2019/UbiSafe 2019), Guangzhou, China (IWCSS 2019); Melbourne, Australia (SpaCCS 2018/UbiSafe 2018), Guangzhou China (IWCSS 2018); Guangzhou, China (SpaCCS 2017/UbiSafe 2017/IWCSS 2017); Zhangjiajie, China (SpaCCS 2016/UbiSafe 2016); Helsinki, Finland (UbiSafe 2015); Beijing, China (UbiSafe 2014); Melbourne, Australia (UbiSafe 2013); Liverpool, UK (UbiSafe 2012); Changsha, China (UbiSafe 2011); Chengdu China (UbiSafe 2009); and Niagara Falls, Canada (UbiSafe 2007). The conference aims at bringing together researchers and practitioners in the world working in the research fields of security, privacy, and anonymity aspects of computer systems and networks. The conference will focus on broad areas of architectures, algorithms, techniques, and applications for cyberspace security, cyberspace privacy, and cyberspace anonymity.<br /><br /><br />Scope and Interests<br /><br />Topics of particular interest include, but not limited to:<br /><br />Track 1: Cyberspace Security<br /><br />Security Model and Architecture<br />Software and System Security<br />Trustworthy Computing<br />Security in Cloud/Fog/Edge Computing and Pervasive/Ubiquitous Computing<br />Machine Learning and AI Security<br />Network Security<br />Attacks and Defenses<br />Intrusion Detection and Prevention<br />Security in Web Services<br />Security in Mobile Social Networks<br />Security in Internet of Things<br />Fraud and Cyber Crime<br />Accounting and Auditing<br />Applied Cryptography<br />Database Security<br />Authentication<br />Forensics and Diagnostics for Security<br />Information Hiding<br />Security in Big Data and its Applications<br />Blockchain and Distributed System Security<br />Security in Hardware, Side Channels, and CyberPhysical Systems<br />Security in Formal Methods and Programming Languages<br /><br /><br />Track 2: Cyberspace Privacy<br /><br />Economics, Policies, Metrics, and Mechanisms of Privacy<br />Privacy Modeling and Analysis<br />Privacy-Preserving Computing<br />Privacy-Preserving Data Mining<br />Privacy-enhancing Technologies and Anonymity<br />Privacy for the Internet of Things<br />Privacy in Big Data and its Applications<br />Privacy-Preserving in Blockchain<br />Privacy-Preserving in Mobile Social Networks<br />Privacy-Preserving Crowdsensing<br />Privacy-Preserving Deep Learning<br /><br /><br />Track 3: Cyberspace Anonymity<br /><br />Anonymous Data Mining and Data Sharing<br />Anonymous Management in Trust Relationships<br />Anonymous Video Analytics Technology<br />Anonymity Metrics, Measures and Evaluations<br />Anonymity Models, Hardware/Device of Anonymity<br />Anonymity in Wireless Communication Systems<br />Anonymous Communication Protocols<br />Anonymity in Mobile, Ad Hoc, and Wireless Sensor Networks<br />Anonymous Communication and Internet<br />Anonymous Social Networks, Structural k-Anonymity in Social Networks<br />Authentication Protocol Providing User Anonymity<br />Anonymous Information Storage and Management<br />Private and Anonymous Data Storage<br />Anonymity, Pseudonymity &amp; Identity Management<br />Anonymity in Big Data and Cloud Scenarios<br />Anonymity in Health and Medical Databases<br />Anonymity in Sensor-Cloud Systems<br />Anonymity in Edge Computing<br /><br /><br />Submission and Publication Information<br /><br />All presented papers in the conference will be published in the conference proceedings with Springer Communications in Computer and Information Science (CCIS). Papers must be clearly presented in English, must not exceed 14 pages in Springer CCIS format (or up to 20 pages with the pages over length charge), including tables, figures, references and appendices. Notice that accepted papers less than 12 pages will be tagged as Short Papers. Papers should be submitted through the EasyChair paper submission system at the conference website. Distinguished papers, after further revisions, will be considered for possible publication in SCI &amp; EI indexed special issues of prestigious international journals. The program committee will select and give two or three &quot;Best Paper Awards&quot; for the conference. By submitting a paper to the conference, authors assure that if the paper is accepted, at least one author will attend the conference and present the paper.<br /><br /><br /><br />Important Dates<br /><br /><br />Paper Submission Deadline:<br /><br />June 15, 2022<br /><br />Author Notification:<br /><br />August 15, 2022<br /><br />Author Registration Due:<br /><br />September 15, 2022<br /><br />Camera-Ready Paper Due:<br /><br />September 15, 2022<br /><br />Conference Date:<br /><br />November 15 - 18, 2022<br /><br /><br /><br />Contact<br /><br /><br /><br />Please email inquiries concerning UbiSec 2022 to:<br /><br /><br /><br />UbiSec2022 AT googlegroups DOT com]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 03 Feb 2022 11:12:44 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6768,6768#msg-6768</guid>
<title>Why is the rule output of the ERMiner algorithm so strange? (7 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6768,6768#msg-6768</link><description><![CDATA[Dear Professor Philippe Fournier-Viger,<br /><br />I'm Xiaowei. I am using the ERMiner algorithm to identify some sequence rules. However, My sequence data always starts with 85 (Sydney), most of the rule results (x = = &gt; y) are that 85 is y, not X. I'm confused. Could you tell me why? Thanks a lot.<br /><br />Best regards,<br /><br />Xiaowei<br /><br /><br />My sequence data is as follows:<br /><br />@CONVERTED_FROM_TEXT<br />@ITEM=1=ALBURY CITY<br />@ITEM=2=ARMIDALE REGIONAL<br />@ITEM=3=Australian Capital Territory<br />@ITEM=4=BALLINA<br />@ITEM=5=BATHURST REGIONAL<br />@ITEM=6=BAYSIDE<br />@ITEM=7=BEGA VALLEY<br />@ITEM=8=BELLINGEN<br />@ITEM=9=BLACKTOWN<br />@ITEM=10=BLAYNEY<br />@ITEM=11=BLUE MOUNTAINS<br />@ITEM=12=BOGAN<br />@ITEM=13=BOURKE<br />@ITEM=14=BROKEN HILL<br />@ITEM=15=BURWOOD<br />@ITEM=16=BYRON<br />@ITEM=17=CABONNE<br />@ITEM=18=CAMPBELLTOWN<br />@ITEM=19=CANADA BAY<br />@ITEM=20=CANTERBURY-BANKSTOWN<br />@ITEM=21=CARRATHOOL<br />@ITEM=22=CENTRAL COAST<br />@ITEM=23=CENTRAL DARLING<br />@ITEM=24=CESSNOCK<br />@ITEM=25=CITY OF PARRAMATTA<br />@ITEM=26=CLARENCE VALLEY<br />@ITEM=27=COBAR<br />@ITEM=28=COFFS HARBOUR<br />@ITEM=29=COOTAMUNDRA-GUNDAGAI REGIONAL<br />@ITEM=30=COWRA<br />@ITEM=31=CUMBERLAND<br />@ITEM=32=DUBBO REGIONAL<br />@ITEM=33=EUROBODALLA<br />@ITEM=34=FAIRFIELD<br />@ITEM=35=GEORGES RIVER<br />@ITEM=36=GLEN INNES SEVERN<br />@ITEM=37=GOULBURN MULWAREE<br />@ITEM=38=GREATER HUME SHIRE<br />@ITEM=39=GUNNEDAH<br />@ITEM=40=HAWKESBURY<br />@ITEM=41=HILLTOPS<br />@ITEM=42=HORNSBY<br />@ITEM=43=HUNTERS HILL<br />@ITEM=44=INNER WEST<br />@ITEM=45=JUNEE<br />@ITEM=46=KEMPSEY<br />@ITEM=47=KIAMA<br />@ITEM=48=KU-RING-GAI<br />@ITEM=49=KYOGLE<br />@ITEM=50=LAKE MACQUARIE<br />@ITEM=51=LANE COVE<br />@ITEM=52=LISMORE<br />@ITEM=53=LITHGOW CITY<br />@ITEM=54=LIVERPOOL<br />@ITEM=55=LOCKHART<br />@ITEM=56=MAITLAND<br />@ITEM=57=MID-COAST<br />@ITEM=58=MID-WESTERN REGIONAL<br />@ITEM=59=MOSMAN<br />@ITEM=60=MUTAWINTJI<br />@ITEM=61=NAMBUCCA VALLEY<br />@ITEM=62=NARRABRI<br />@ITEM=63=NARROMINE<br />@ITEM=64=NEWCASTLE<br />@ITEM=65=NORTH SYDNEY<br />@ITEM=66=NORTHERN BEACHES<br />@ITEM=67=OBERON<br />@ITEM=68=ORANGE<br />@ITEM=69=PENRITH<br />@ITEM=70=PORT MACQUARIE-HASTINGS<br />@ITEM=71=PORT STEPHENS<br />@ITEM=72=QUEANBEYAN-PALERANG REGIONAL<br />@ITEM=73=Queensland<br />@ITEM=74=RANDWICK<br />@ITEM=75=RICHMOND VALLEY<br />@ITEM=76=RYDE<br />@ITEM=77=SHELLHARBOUR<br />@ITEM=78=SHOALHAVEN<br />@ITEM=79=SILVERTON<br />@ITEM=80=SINGLETON<br />@ITEM=81=SNOWY MONARO REGIONAL<br />@ITEM=82=SNOWY VALLEYS<br />@ITEM=83=STRATHFIELD<br />@ITEM=84=SUTHERLAND SHIRE<br />@ITEM=85=SYDNEY<br />@ITEM=86=TAMWORTH REGIONAL<br />@ITEM=87=TENTERFIELD<br />@ITEM=88=THE HILLS SHIRE<br />@ITEM=89=TWEED<br />@ITEM=90=Victoria<br />@ITEM=91=WAGGA WAGGA<br />@ITEM=92=WARRUMBUNGLE<br />@ITEM=93=WAVERLEY<br />@ITEM=94=WENTWORTH<br />@ITEM=95=WILLOUGHBY<br />@ITEM=96=WINGECARRIBEE<br />@ITEM=97=WOLLONGONG<br />@ITEM=98=WOOLLAHRA<br />@ITEM=99=YASS VALLEY<br />@ITEM=-1=|<br />16 -1 85 -1 -2<br />6 -1 52 -1 97 -1 -2<br />84 -1 85 -1 11 -1 85 -1 -2<br />85 -1 78 -1 65 -1 -2<br />85 -1 71 -1 85 -1 98 -1 -2<br />6 -1 85 -1 65 -1 85 -1 65 -1 85 -1 89 -1 -2<br />64 -1 11 -1 -2<br />85 -1 65 -1 -2<br />85 -1 25 -1 85 -1 -2<br />72 -1 3 -1 72 -1 3 -1 72 -1 3 -1 72 -1 3 -1 72 -1 3 -1 72 -1 3 -1 72 -1 3 -1 -2<br />85 -1 65 -1 85 -1 16 -1 -2<br />85 -1 59 -1 -2<br />11 -1 44 -1 65 -1 25 -1 85 -1 93 -1 85 -1 93 -1 85 -1 65 -1 -2<br />42 -1 6 -1 78 -1 85 -1 -2<br />11 -1 9 -1 85 -1 66 -1 -2<br />66 -1 65 -1 85 -1 65 -1 85 -1 65 -1 85 -1 65 -1 85 -1 -2<br />85 -1 34 -1 85 -1 6 -1 -2<br />85 -1 65 -1 -2<br />97 -1 11 -1 77 -1 97 -1 77 -1 85 -1 -2<br />85 -1 11 -1 44 -1 -2<br />44 -1 59 -1 -2<br />71 -1 65 -1 85 -1 65 -1 2 -1 87 -1 71 -1 -2<br />85 -1 11 -1 19 -1 85 -1 65 -1 85 -1 -2<br />64 -1 66 -1 85 -1 9 -1 11 -1 85 -1 11 -1 93 -1 11 -1 85 -1 65 -1 93 -1 85 -1 98 -1 93 -1 11 -1 -2<br />97 -1 71 -1 74 -1 47 -1 93 -1 97 -1 85 -1 22 -1 84 -1 66 -1 40 -1 25 -1 47 -1 84 -1 53 -1 85 -1 97 -1 84 -1 6 -1 97 -1 30 -1 41 -1 84 -1 97 -1 84 -1 47 -1 84 -1 93 -1 84 -1 97 -1 84 -1 65 -1 97 -1 84 -1 97 -1 85 -1 97 -1 85 -1 37 -1 97 -1 84 -1 85 -1 78 -1 97 -1 3 -1 85 -1 84 -1 66 -1 -2<br />85 -1 44 -1 -2<br />85 -1 6 -1 85 -1 -2<br />85 -1 65 -1 85 -1 65 -1 85 -1 -2<br />44 -1 85 -1 66 -1 85 -1 -2<br />89 -1 22 -1 85 -1 42 -1 66 -1 -2<br />98 -1 65 -1 -2<br />85 -1 22 -1 -2<br />85 -1 65 -1 85 -1 -2<br />89 -1 64 -1 85 -1 11 -1 85 -1 6 -1 64 -1 24 -1 64 -1 85 -1 64 -1 65 -1 64 -1 22 -1 59 -1 -2<br />9 -1 25 -1 97 -1 -2<br />93 -1 85 -1 -2<br />16 -1 85 -1 -2<br />85 -1 6 -1 85 -1 65 -1 85 -1 65 -1 85 -1 11 -1 85 -1 22 -1 71 -1 57 -1 85 -1 26 -1 46 -1 70 -1 46 -1 4 -1 26 -1 70 -1 46 -1 70 -1 26 -1 46 -1 26 -1 89 -1 26 -1 16 -1 4 -1 89 -1 26 -1 16 -1 70 -1 57 -1 -2<br />93 -1 85 -1 -2<br />3 -1 85 -1 66 -1 85 -1 -2<br />9 -1 24 -1 40 -1 9 -1 40 -1 9 -1 11 -1 40 -1 11 -1 40 -1 11 -1 40 -1 88 -1 11 -1 40 -1 -2<br />25 -1 11 -1 98 -1 93 -1 76 -1 85 -1 -2<br />56 -1 70 -1 -2<br />85 -1 74 -1 -2<br />84 -1 66 -1 22 -1 70 -1 66 -1 44 -1 65 -1 66 -1 -2<br />93 -1 85 -1 -2<br />85 -1 93 -1 98 -1 93 -1 85 -1 -2<br />66 -1 74 -1 11 -1 85 -1 44 -1 25 -1 76 -1 25 -1 85 -1 19 -1 44 -1 85 -1 65 -1 85 -1 98 -1 85 -1 98 -1 85 -1 66 -1 85 -1 65 -1 85 -1 11 -1 85 -1 93 -1 98 -1 74 -1 93 -1 74 -1 85 -1 65 -1 85 -1 59 -1 66 -1 85 -1 6 -1 66 -1 -2<br />3 -1 85 -1 -2<br />97 -1 85 -1 -2<br />85 -1 66 -1 -2<br />85 -1 65 -1 85 -1 66 -1 85 -1 98 -1 65 -1 85 -1 65 -1 85 -1 65 -1 85 -1 65 -1 59 -1 85 -1 65 -1 85 -1 65 -1 85 -1 66 -1 65 -1 85 -1 65 -1 93 -1 65 -1 93 -1 65 -1 59 -1 95 -1 65 -1 85 -1 65 -1 59 -1 65 -1 85 -1 59 -1 65 -1 59 -1 65 -1 59 -1 85 -1 66 -1 88 -1 9 -1 65 -1 85 -1 65 -1 42 -1 65 -1 42 -1 84 -1 6 -1 85 -1 84 -1 40 -1 11 -1 44 -1 85 -1 11 -1 65 -1 85 -1 65 -1 85 -1 65 -1 6 -1 -2<br />74 -1 85 -1 98 -1 85 -1 74 -1 85 -1 -2<br />6 -1 66 -1 85 -1 -2<br />85 -1 93 -1 85 -1 -2<br />85 -1 65 -1 59 -1 85 -1 66 -1 85 -1 -2<br />85 -1 44 -1 -2<br />85 -1 98 -1 85 -1 84 -1 -2<br />85 -1 65 -1 -2<br />98 -1 85 -1 93 -1 85 -1 42 -1 24 -1 95 -1 85 -1 74 -1 85 -1 74 -1 -2<br />85 -1 48 -1 93 -1 85 -1 98 -1 85 -1 48 -1 85 -1 11 -1 98 -1 85 -1 20 -1 85 -1 48 -1 6 -1 85 -1 48 -1 -2<br />85 -1 93 -1 85 -1 -2<br />6 -1 85 -1 11 -1 42 -1 85 -1 93 -1 6 -1 -2<br />85 -1 93 -1 84 -1 97 -1 -2<br />85 -1 66 -1 85 -1 -2<br />85 -1 98 -1 85 -1 59 -1 -2<br />59 -1 85 -1 -2<br />65 -1 85 -1 65 -1 85 -1 11 -1 -2<br />95 -1 76 -1 95 -1 85 -1 95 -1 11 -1 85 -1 42 -1 76 -1 85 -1 98 -1 66 -1 85 -1 65 -1 85 -1 31 -1 85 -1 19 -1 76 -1 95 -1 93 -1 76 -1 9 -1 -2<br />85 -1 93 -1 85 -1 65 -1 -2<br />80 -1 57 -1 16 -1 -2<br />85 -1 65 -1 85 -1 65 -1 -2<br />86 -1 85 -1 86 -1 -2<br />24 -1 64 -1 11 -1 -2<br />85 -1 11 -1 93 -1 -2<br />85 -1 22 -1 85 -1 44 -1 64 -1 -2<br />65 -1 85 -1 -2<br />85 -1 11 -1 3 -1 -2<br />85 -1 98 -1 85 -1 6 -1 -2<br />85 -1 65 -1 85 -1 65 -1 85 -1 65 -1 11 -1 25 -1 44 -1 11 -1 85 -1 -2<br />85 -1 20 -1 85 -1 93 -1 85 -1 31 -1 85 -1 54 -1 85 -1 11 -1 85 -1 95 -1 93 -1 85 -1 44 -1 3 -1 -2<br />65 -1 85 -1 6 -1 -2<br />85 -1 83 -1 25 -1 15 -1 65 -1 15 -1 85 -1 25 -1 15 -1 85 -1 93 -1 85 -1 84 -1 15 -1 84 -1 74 -1 85 -1 15 -1 72 -1 3 -1 18 -1 11 -1 85 -1 74 -1 6 -1 97 -1 84 -1 66 -1 85 -1 66 -1 85 -1 66 -1 85 -1 66 -1 35 -1 85 -1 98 -1 85 -1 37 -1 85 -1 65 -1 66 -1 85 -1 66 -1 84 -1 85 -1 74 -1 31 -1 84 -1 -2<br />44 -1 85 -1 65 -1 85 -1 65 -1 -2<br />64 -1 97 -1 64 -1 -2<br />24 -1 85 -1 24 -1 93 -1 24 -1 -2<br />85 -1 19 -1 -2<br />93 -1 97 -1 7 -1 19 -1 -2<br />85 -1 65 -1 85 -1 65 -1 85 -1 65 -1 85 -1 -2<br />78 -1 77 -1 85 -1 -2<br />85 -1 93 -1 85 -1 -2<br /><br /><br />Also, my parameter data is as follows: Minsup=0.02, Mincof=0.6,Max antecedent size=1, Max consequent size=1<br /><br /><br />The rules identified are below:<br /><br />NEWCASTLE ==&gt; BLUE MOUNTAINS<br />HAWKESBURY ==&gt; NORTH SYDNEY<br />GOULBURN MULWAREE ==&gt; NORTHERN BEACHES<br />QUEANBEYAN-PALERANG REGIONAL ==&gt; Australian Capital Territory<br />RYDE ==&gt; NORTH SYDNEY<br />RYDE ==&gt; NORTHERN BEACHES<br />RYDE ==&gt; CANADA BAY<br />RYDE ==&gt; BLUE MOUNTAINS<br />GOULBURN MULWAREE ==&gt; SUTHERLAND SHIRE<br />NORTH SYDNEY ==&gt; SYDNEY<br />NORTHERN BEACHES ==&gt; SYDNEY<br />BAYSIDE ==&gt; SYDNEY<br />PORT STEPHENS ==&gt; SYDNEY<br />RANDWICK ==&gt; SYDNEY<br />BLUE MOUNTAINS ==&gt; SYDNEY<br />RYDE ==&gt; SYDNEY<br />SHELLHARBOUR ==&gt; SYDNEY<br />SHOALHAVEN ==&gt; SYDNEY<br />CANTERBURY-BANKSTOWN ==&gt; SYDNEY<br />CESSNOCK ==&gt; SYDNEY<br />CITY OF PARRAMATTA ==&gt; SYDNEY<br />CUMBERLAND ==&gt; SYDNEY<br />GOULBURN MULWAREE ==&gt; SYDNEY<br />HAWKESBURY ==&gt; SYDNEY<br />HORNSBY ==&gt; SYDNEY<br />THE HILLS SHIRE ==&gt; HAWKESBURY<br />THE HILLS SHIRE ==&gt; BLUE MOUNTAINS<br />RYDE ==&gt; WAVERLEY<br />WAVERLEY ==&gt; SYDNEY<br />CITY OF PARRAMATTA ==&gt; WAVERLEY<br />CUMBERLAND ==&gt; WAVERLEY<br />WILLOUGHBY ==&gt; SYDNEY<br />CUMBERLAND ==&gt; WILLOUGHBY<br />RYDE ==&gt; WOOLLAHRA<br />WOOLLAHRA ==&gt; SYDNEY<br />HAWKESBURY ==&gt; BAYSIDE<br />HAWKESBURY ==&gt; BLUE MOUNTAINS<br />MID-COAST ==&gt; BYRON]]></description>
<dc:creator>1164399783@qq.com</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 17 Feb 2022 08:42:19 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6766,6766#msg-6766</guid>
<title>CFP : MEDI 2022 : 11th International Conference on Model and Data Engineering Deadline: July 4th 2022 (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6766,6766#msg-6766</link><description><![CDATA[The <a href="https://medi22.nu.edu.eg/Call%20for%20Papers.html" target="_blank" ><b>Eleventh International Conference on Model &amp; Data Engineering (MEDI)</b></a> will be held from 21 to 24 November 2022 in Cairo, Egypt. Its main objective is to provide a forum for the dissemination of research accomplishments and to promote the interaction and collaboration between the models and data research communities. MEDI2022 provides an international platform for the presentation of research on models and data theory, development of advanced technologies related to models and data and their advanced applications. This international scientific event, initiated by researchers from Middle eastern countries, aims also at promoting the creation of north-south scientific networks, projects and faculty/student exchanges.<br /><br /><b>MEDI Keynote Speakers</b><br />Vincent S Tseng: Distinguished Professor, Dept. Computer Science , National Chiao Tung University, Taiwan<br /><br />Athman Bouguettaya: Professor, The University of Sydney, Australia<br /><br /><b>Submission Guidelines and Instructions</b><br />Authors are invited to submit English-language research and application papers representing original, previously unpublished work. Duplicate submissions are not allowed. Papers must be submitted as a single PDF document, via the Easychair system.<br /><br />Submissions must conform to Springer's LNCS style (Latex style only for camera-ready papers) and should not exceed 14 pages. Submitted papers will be carefully evaluated based on originality, significance, technical soundness, and clarity of exposition.<br /><br />The program committee may decide to accept a submission as a short paper if it reports interesting results but does not justify a publication as a full paper.<br /><br /><b>Publication and Special issue</b><br />All accepted papers will be published in <b>Lecture Notes in Computer Science (LNCS) by Springer-Verlag.</b><br /><br />Best papers will be invited for submission in <b>special issues</b> of well-ranked Journals:<br /><br />To Be Announced *** under negotiation ***<br /><br /><b>Important Dates</b><br />Abstract submission: July 4, 2022<br /><br />Full-paper submission: July 11, 2022<br /><br />Acceptance notification: Friday, August 26, 2022<br /><br />Early bird registration: Thursday, September 23, 2022<br /><br />Camera ready: Friday, September 23, 2022<br /><br /><b>Contact</b><br />All questions about organization and submissions should be emailed to:<br /><br />medi2022@nu.edu.eg]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Sun, 23 Jan 2022 01:22:02 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6764,6764#msg-6764</guid>
<title>SPMF 2.51 is released (2 new algorithms) (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6764,6764#msg-6764</link><description><![CDATA[Good afternoon all!<br /><br />This is to let you know that a new version of SPMF has been released. There are two new algorithms:<br /><br />The <b>SFU-CE algorithm</b> for mining skyline frequent high utility itemsets using the cross-entropy method (thanks to Wei Song, Chuanlong Zheng et al., for the original code)<br /><br />The <b>POERMH algorithm</b> for mining partially ordered episode rules in a sequence of events, using the head support (thanks to Yangming Chen et al. for the original code)<br /><br />Besides, I have also fixed a minor bug in the TKG and gSpan algorithm by deactivating the skip strategy.<br /><br />Best regards,]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 20 Jan 2022 01:40:49 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6754,6754#msg-6754</guid>
<title>CALL FOR PAPERS : IEA AIE 2022 （Final extension : 31st January) (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6754,6754#msg-6754</link><description><![CDATA[Call for Paper<br />The <b>35th International Conference on Industrial, Engineering &amp; Other Applications of Applied Intelligent Systems IEA/AIE 2022</b> <a href="https://ieaaie2022.wordpress.com/" target="_blank" >https://ieaaie2022.wordpress.com/</a> continues the tradition of emphasizing on applications of applied intelligent systems to solve real-life problems in all areas including engineering, science, industry, automation &amp; robotics, business &amp; finance, medicine and biomedicine, bioinformatics, cyberspace, and human-machine.<br /><br />The conference will publish a Special issue in Applied Intelligence https://www.springer.com/journal/10489/, after the conference selecting the best papers in terms of quality, reviews, and presentation. The selection will be done after the conference through emails sent to the corresponding authors with detailed instructions. Therefore we advise all authors to do their best in good presentation.<br /><br />The sequences would be:<br />-submission to the conference;<br />-acceptance at the conference and inclusion in the proceedings;<br />-and only then possible invitation (with further instructions) to the journal special issue by its guest editors later.<br /><br />Organized in cooperation with :<br /><br />Asia Pacific Neural Network Society (APNNA) / Assoc. for the Advancement of Art. Intell. (AAAI) / Assoc. for Computing Machinery (ACM/SIGART) / Austrian Assoc. for Art. Intelligence (OEGAI) / Catalan Assoc. for Art. Intelligence (ACIA) / Graz University of Technology / Italian Art. Intelligence Assoc. (AI*IA) / Iwate Prefectural University, Japan / Japanese Society for Art. Intelligence (JSAI) / Lithuanian Computer Soc. – AI Section (LIKS-AIS) / Spanish Society for Art. Intelligence (AEPIA) / Soc. for the Study of AI and the Sim. of Behav. (AISB) /Taiwanese Association for Consumer Electronics (TACE) / Taiwanese Association for Artificial Intelligence (TAAI) / Texas State University, USA / University of Klagenfurt, Austria<br /><br />The organization is coordinated with Kitakyushu Convention and Visitors Association, Japan.<br /><br />Topics of interest include, but are not limited to:<br /><br />Adaptive Control<br />Ambient Intelligence<br />Argumentation Systems<br />Artificial Immune Systems<br />Automated Reasoning<br />Autonomous Agents<br />Bayesian Networks<br />Bio-informatics<br />Case-based Reasoning<br />Computer Animation<br />Computer Vision<br />Cognitive Models<br />Constraint Programming<br />Data Mining<br />Decision Support Systems<br />Description Logics<br />Evolutionary Computation<br />Expert Systems<br />Fuzzy Logic<br />Games<br />Information Retrieval<br />Heuristic Search<br />Human Robot Interaction<br />Intelligent Systems<br />Knowledge Representation Machine Learning<br />Meta-heuristics<br />Model-based Reasoning<br />Multi-Agent Systems<br />Multi-Media Processing<br />Natural Language Processing<br />Neural Networks<br />Non-Monotonic Logics<br />Optimization<br />Planning and Scheduling<br />Preference Reasoning<br />Privacy Preserving Data Mining<br /><br />Robotics<br />Semantic Web<br />Smart Graphics<br />Social Networks<br />Soft Computing<br />Speech Recognition<br />Swarm Intelligence<br />Temporal and Spatial Reasoning<br />Uncertainty<br />User Modeling<br />Ontologies<br />Important Dates<br /><br />Submission deadline: <b>January 31st, 2021</b><br />Final Notification: February 28, 2022<br />Registration: April 1, 2022<br />Camera Ready April 1, 2022<br />Conference Sessions: July 19 –22, 2022<br />The pdf version of the Call for Paper can be obtained HERE]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 20 Jan 2022 01:41:41 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6748,6748#msg-6748</guid>
<title>how to understand memory scalability? (9 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6748,6748#msg-6748</link><description><![CDATA[Dear Professor Philippe Fournier-Viger,<br /><br />I'm Xiaowei, a lecture at Zhejiang Gongshang University. Recently, I saw the expression &quot;TRuleGrowth has better memory scalability&quot; in your articles named “Mining Sequential Rules Common to Several Sequences with the Window Size Constraint”. However, I didn't understang the memory scalability. Could you define and explain this term for me?<br /><br />Thanks a lot.<br /><br />Best wishes,<br />Xiaowei]]></description>
<dc:creator>1164399783@qq.com</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 20 Jan 2022 01:39:08 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6747,6747#msg-6747</guid>
<title>gspan does not output all frequent subgraphs (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6747,6747#msg-6747</link><description><![CDATA[Hello,<br /><br />Given graph dataset of two identical graphs:<br />t # 0<br />v 0 2<br />v 1 2<br />v 2 2<br />v 3 2<br />v 4 2<br />e 0 1 0<br />e 1 2 3<br />e 1 4 3<br />e 2 3 3<br />e 3 4 3<br />t # 1<br />v 0 2<br />v 1 2<br />v 2 2<br />v 3 2<br />v 4 2<br />e 0 1 0<br />e 1 2 3<br />e 1 4 3<br />e 2 3 3<br />e 3 4 3<br /><br />cgspan does not output the maximal frequent subgraph<br /><br />t # 0 * 2<br />v 0 2<br />v 1 2<br />v 2 2<br />v 3 2<br />v 4 2<br />e 0 1 0<br />e 1 2 3<br />e 1 4 3<br />e 2 3 3<br />e 3 4 3<br />x 0 1<br /><br />Thanks,<br />Shaul]]></description>
<dc:creator>szevin</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Tue, 18 Jan 2022 04:46:28 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6746,6746#msg-6746</guid>
<title>FP-Stream algorithm (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6746,6746#msg-6746</link><description><![CDATA[Hello<br /><br />I'm searching for the source code of FP-Tree, FP-Stream.<br /><br />If anyone has these algorithms, that will really help me<br />please send me<br /><br />Thanks]]></description>
<dc:creator>sama</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Tue, 18 Jan 2022 05:31:01 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6745,6745#msg-6745</guid>
<title>sequential pattern mining with CM-SPAM (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6745,6745#msg-6745</link><description><![CDATA[Where can I find the C# code of CM-SPAM for sequential pattern mining?<br /><br />I saw the source code in Java of SPMF.<br /><br />Can anyone make a C# version?]]></description>
<dc:creator>Sellena</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Tue, 18 Jan 2022 05:32:10 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6741,6741#msg-6741</guid>
<title>CACM 2022 : Deadline coming soon : 20th January 2022 - Hangzhou china (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6741,6741#msg-6741</link><description><![CDATA[<a href="http://www.cacml.net/" target="_blank" >http://www.cacml.net/</a><br /><br /><b>2022 Asia Conference on Algorithms, Computing and Machine Learning (CACML<br />2022)</b><br /><br />Website: http://www.cacml.net/<br /><br />Venue: Hangzhou, China (both online and in-person)<br /><br />Conference Date: March 25-27, 2022<br /><br />2022 Asia Conference on Algorithms, Computing and Machine Learning (CACML 2022)<br />will be held in Hangzhou, China during March 25-27, 2022. It is sponsored by The<br />International Society for Applied Computing (ISAC) and The Technical Institute for<br />Engineers (T.I.E.). We fully understand some participants cannot attend the conference<br />in-person due to COVID-19, so we will hold our conference both online and in-person,<br />thus you could attend the conference online and do the online presentation.<br />During the upcoming conference, the invited renowned professors will share with us<br />the recent innovations in the fields of Algorithms, Computing and Machine Learning.<br />The conference will mainly feature on keynote speeches as well as peer-reviewed<br />paper presentations. In addition, social program or academic visit will be arranged to<br />encourage communication, discussion or cooperation among the researchers in this<br />field.<br />We invite submissions of papers presenting an original high-quality research and<br />development for the conference. All papers must be written in English and will be peer?reviewed by technical committees of the Conference and all accepted papers will be<br />published in the conference proceedings.<br />*Conference Speakers:<br />Keynote Speaker I:<br />Prof. Witold Pedrycz, University of Alberta, Canada (IEEE Life Fellow)<br />Keynote Speaker II:<br />Prof. Chin-Chen Chang, Feng Chia University, Taiwan (IEEE Fellow and CS Fellow, Chair<br />Professor and IET Fellow, AAIA Fellow)<br />Keynote Speaker III:<br />Prof. Miguel Ángel Sotelo, University of Alcalá, Spain (IEEE Fellow)<br />Keynote Speaker IV:<br />Distinguished Prof. Philippe Fournier-Viger, Shenzhen University, China<br />Keynote Speaker V:<br />Prof. Jie Yang, Shanghai Jiao Tong University, China<br />*Call for papers:<br />Algorithms<br />Analysis of algorithms<br />Ant colony algorithm<br />Approximation algorithm<br />Combinatorial search<br />Competitive analysis<br />Computability theory<br />Computational complexity theory<br />Embarrassingly parallel problem<br />Emergent algorithm<br />Evolutionary algorithm<br />Genetic algorithm<br />Graph exploration algorithm<br />Ambient computing<br />Artificial and Computational Intelligence<br />Big data-oriented computing<br />Cloud Computing<br />Cognitive computing<br />DNA (genetic) computing<br />Embedded computing<br />Entertainment computing<br />Fog-computing<br />Deep and Reinforcement Learning<br />Machine Learning for Network Slicing Optimization<br />Machine Learning for 5G system<br />Machine Learning for User Behavior Prediction<br />New Innovative Machine Learning Methods<br />Optimization of Machine Learning Methods<br />Machine learning for multimedia<br />Machine learning for Internet of Things<br />Distributed machine learning algorithms<br />Intelligent cloud-support communications<br />Intelligent ressource allocation<br />Intelligent cooperative networks<br />Intelligent wireless communications<br />(for more topics: http://www.cacml.net/Call%20for%20Papers.html )<br />*Publication and indexing:<br />★All accepted and registered papers will be included in CACML 2022 conference<br />proceedings and published by Conference Publishing Services (CPS), which will be<br />submitted for inclusion in IEEE Xplore and CSDL. The conference proceedings will also<br />be submitted for indexing by EI Compendex, Scopus, INSPEC, EI's Engineering<br />Information Index, ISI Thomson's Scientific and Technical Proceedings, ISTP/ISI<br />Proceedings, and Current Contents on Diskette.<br />*Submission Methods:<br />1. Online Submission System: https://cmt3.research.microsoft.com/CACML2022<br />2. Submission Email: cacml@applied-computing.net<br />Submission guidelines: http://www.cacml.net/Submission%20Guidelines.html<br />*Join the conference as:<br />Authors:<br />Authors are expected to submit full papers to the submission system for further review<br />by our Technical Committees. All accepted papers after proper registration and<br />presentation in the conference will be published and submitted for indexing.<br />Presenters Only:<br />The presenters are expected to submit abstracts only for presentation in the<br />conference without paper publication in the conference proceedings.<br />Listeners:<br />Listeners are expected to attend the conference without paper presentation or<br />publication.<br />Reviewers:<br />PhD-holders in the research fields of Algorithms, Computing and Machine Learning are<br />welcome to be our reviewers and a certificate can be issued.<br />Sponsors/Partners:<br />If you are interested in cooperating with us, such as sponsoring or being a partner of<br />CACML 2022, you are welcome to contact us at: cacml@applied-computing.net<br />*Contact us:<br />Website: http://www.cacml.net/<br />Conference Secretary: Ms. Annie Yang<br />Tel: +852 5319 3049<br />Email: cacml@applied-computing.net<br />If you have any question or request about our conference, no matter regarding<br />submission, registration, participation or any further question, please send email to us<br />and you will get feedback within 24 hours.]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 13 Jan 2022 22:02:21 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6734,6734#msg-6734</guid>
<title>An algorithm that builds an utility-list in a matrix (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6734,6734#msg-6734</link><description><![CDATA[Hello, Prof. Philippe Fournier-Viger.<br /><br />For the past 2 years, during the implementation of the final project of the master's course, I have been asking you questions and you have answered them very well. Thank you for your guidance. next. I am again interested in implementing one of the plans I have in mind<br /><br />I want to implement an algorithm that works like a hui-miner, based on list (utility-list)<br />But my idea is to put each list in a 2x2 triangular top matrix after I make it. My question is, is an algorithm similar to this implemented? Is there a code similar to this in the code implemented in spmf to create a matrix of these lists? The prunings I want to perform are twu,liu and U-prune<br /><br /><br />I had a request from you. Do you have the THUI article source code? If you do not have it, can you tell us which general structure of this algorithm is similar to which of the algorithms implemented in SPMF?<br />(Mining top-k high utility itemsets with effective threshold raising strategies from Srikumar Krishnamoorthy)<br /><br />Regards]]></description>
<dc:creator>tianikowa</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Thu, 13 Jan 2022 23:08:47 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6729,6729#msg-6729</guid>
<title>Happy new year to all! (1 reply)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6729,6729#msg-6729</link><description><![CDATA[Good afternoon everyone.<br /><br />Just a short message to wish you a happy new year.<br /><br />And thanks for participating to the forum.<br /><br />If you want to discuss anything feel free to post in the forum. We can discuss data mining or some more general topics related to academia.<br /><br />Best regards,<br /><br />Philippe]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Sat, 01 Jan 2022 16:01:37 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6721,6721#msg-6721</guid>
<title>Ph.D. Research Ideas (2 replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6721,6721#msg-6721</link><description><![CDATA[Hi Professor,<br />Could you please give me some ideas regarding my Ph.D. (CS)? Actually, I have already done literature on FIM, HUIM Clos-FHUIM, etc with different approaches but unfortunately could not find a remarkable gap (according to Ph.D. research). Please advise.<br /><br />I have also submitted the paper to &quot;Applied Intelligence&quot; on the topic of &quot;Closed-HUFIM: An Efficient Closed High Utility Frequent Itemsets Mining Algorithm Using Cutoff and Suffix Utility&quot;. I know it has a minor contribution but enough to publish the paper but not for research.<br /><br />Thanks in advance.<br />Ph.D. (CS) Scholar]]></description>
<dc:creator>i201606</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Sat, 01 Jan 2022 15:58:53 -0500</pubDate></item>
<item>
<guid>https://forum.philippe-fournier-viger.com/read.php?5,6714,6714#msg-6714</guid>
<title>CALL FOR PAPERS : DAWAK 2022 (deadline: 7 March 2022) (no replies)</title><link>https://forum.philippe-fournier-viger.com/read.php?5,6714,6714#msg-6714</link><description><![CDATA[24th International Conference on<br />Big Data Analytics and Knowledge Discovery - DAWAK<br />August 22-24, 2022<br />WU (Vienna University of Economics and Business), Vienna, Austria,<br /><br />http://www.dexa.org/dawak2022<br /><br />IMPORTANT DATES<br />--------------------------------------------------------------------------------<br />Abstract submission deadline: March 7, 2022<br />Paper submission deadline: March 7, 2022<br />Acceptance notifications: May 10, 2022<br />Camera ready copy due: June 1, 2022<br /><br />SUBMISSION GUIDELINES<br />--------------------------------------------------------------------------------<br />Authors are invited to submit original research contributions or experience<br />reports in English. DaWak will accept submissions of both short and full papers.<br /><br />Short papers - up to 6 pages on preliminary work, vision papers, or industrial<br />applications.<br />Full papers - up to 12 pages, more mature than short papers, contain more<br />theory and experimetnal evaluation, or present a survey (tutorial style) of some<br />hot or not yet explored topics.<br /><br />Papers exceeding the page limit or deviating from the formatting requirement<br />are desk rejected.<br /><br />Formatting guidelines: http://www.dexa.org/formatting_guidelines<br /><br />Online Papers Submission: https://easychair.org/conferences/?conf=dawak2022<br /><br />Submitted papers will be carefully evaluated based on originality, significance,<br />technical soundness, and clarity of exposition. Duplicate submissions are not<br />allowed and will be rejected immediately without further reviewing. Authors are<br />expected to agree to the following terms: &quot;I understand that the submission must<br />not overlap substantially with any other paper that I am a co-author of or that<br />is currently submitted elsewhere. Furthermore, previously published papers with<br />any overlap are cited prominently in this submission.&quot;<br /><br />Questions about this policy or how it applies to a specific paper should be<br />directed to the PC Co-chairs.<br /><br />PUBLICATION<br />--------------------------------------------------------------------------------<br />All DaWaK 2022 accepted papers will be published in a volume of &quot;Lecture Notes<br />in Computer Science&quot; (LNCS) by Springer. LNCS volumes are indexed in the<br />Conference Proceedings Citation Index (CPCI), part of Clarivate Analyticsâ<br />Web of Science; Scopus; EI Engineering Index; Google Scholar; DBLP; etc.<br /><br />Distinguished papers, after further revisions, will be considered for<br />publication in a special issue of a Q1 international journal (currently<br />under approval).<br /><br />MAIN TOPICS<br />--------------------------------------------------------------------------------<br />Theoretical models for extended data warehouses and big data<br />Conceptual model foundations for big data<br />Modelling diverse big data sources<br />Parallel processing<br />Parallel DBMS technology<br />Distributed system architectures<br />Scalability and parallelization using Map-Reduce, Spark, and related systems<br />Query languages<br />Query processing and optimization<br />Semantics for big data intelligence<br />Data warehouse and data lake architectures<br />Pre-processing and data cleaning<br />Integration of data warehousing, OLAP cubes, and data mining<br />Polystore and multistore architectures<br />NoSQL storage systems<br />Cloud infrastructures for big data<br />Metadata for big data frameworks<br />Big data storage and indexing<br />Big data analytics: algorithms, techniques, and systems<br />Big data quality and provenance<br />Big data search and discovery<br />Big data management for mobile applications<br />Analytic workflows<br />Graph analytics<br />Analytics for unstructured, semi-structured, and structured data<br />Analytics for temporal, spatial, spatio-temporal, and mobile data<br />Analytics for data streams and sensor data<br />Real-time/right-time and event-based analytics<br />Privacy and security in analytics<br />Data visualization<br />Big data application deployment<br />Data science products<br />Novel applications of text mining for big data<br />Machine learning: auto AI, deep learning applications<br /><br />COMMITTEES<br />--------------------------------------------------------------------------------<br />Program Committee co-Chairs<br />Robert Wrembel, Poznan University of Technology, Poland<br />Johann Gamper, Free University of Bozen-Bolzano, Italy<br /><br />Program Committee members: http://www.dexa.org/dawak2022 (under construction)<br />Steering Committee: http://www.dexa.org/committee<br /><br />CONTACT<br />--------------------------------------------------------------------------------<br />All questions about submissions should be emailed to dexa@iiwas.org<br /><br /><br />---------------]]></description>
<dc:creator>webmasterphilfv</dc:creator>
<category>The Data Mining / Big Data Forum</category><pubDate>Fri, 24 Dec 2021 01:03:35 -0500</pubDate></item>
</channel>
</rss>