diff --git a/.github/workflows/push_arxiv_daily.yml b/.github/workflows/push_arxiv_daily.yml new file mode 100644 index 00000000..af69b289 --- /dev/null +++ b/.github/workflows/push_arxiv_daily.yml @@ -0,0 +1,60 @@ +name: push_arxiv_daily + +env: + PYTHON_VERSION: "3.8" # set this to the Python version to use + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + +on: + issues: + types: + - labeled + + schedule: + - cron: '0 0 * * *' # 每天 UTC 时间 00:00 触发, 即上海时间8点 + +jobs: + daily-push: + if: github.event.label.name == 'push test' + runs-on: ubuntu-latest + env: + SERVERCHAN_API_KEY: ${{ secrets.SERVERCHAN_API_KEY }} + QUERY: "cs.IR" + THREADS: 2 + + permissions: + issues: write + contents: write + + steps: + - uses: actions/checkout@v3 + - name: Set up Python version + uses: actions/setup-python@v3 + with: + python-version: ${{ env.PYTHON_VERSION }} + + - name: Install dependencies + run: pip install tqdm + + + - name: PUSH ARXIV DAILY + run: python arxiv.py + + - name: Commit files + id: commit + run: | + git config --local user.email "action@github.com" + git config --local user.name "github-actions" + git add --all + if [-z "$(git status --porcelain)"]; then + echo "::set-output name=push::false" + else + git commit -m "chore: update confs" -a + echo "::set-output name=push::true" + fi + shell: bash + + - name: Push changes + if: steps.commit.outputs.push == 'true' + uses: ad-m/github-push-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/update_confs.yml b/.github/workflows/update_confs.yml index deed5ec2..17623008 100644 --- a/.github/workflows/update_confs.yml +++ b/.github/workflows/update_confs.yml @@ -24,7 +24,8 @@ jobs: python-version: ${{ env.PYTHON_VERSION }} - name: Install dependencies - run: pip install openpyxl + run: pip install openpyxl tqdm + - name: Update the cache file from the issue run: | diff --git a/README.md b/README.md index dee16105..036a7c45 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ - [搜广推算法系列串讲](https://github.com/Doragd/Algorithm-Practice-in-Industry/blob/main/%E6%90%9C%E5%B9%BF%E6%8E%A8%E7%AE%97%E6%B3%95%E7%B3%BB%E5%88%97%E4%B8%B2%E8%AE%B2.md) - 本文仅做资源收集,未引用具体内容,如有侵权,请联系删除。 * 源文件:source.xlsx,可以执行自定义排序 * 同时还提供了搜广推顶会论文列表 diff --git a/arxiv.json b/arxiv.json new file mode 100644 index 00000000..32960f8c --- /dev/null +++ b/arxiv.json @@ -0,0 +1,2 @@ +[ +] \ No newline at end of file diff --git a/arxiv.py b/arxiv.py new file mode 100644 index 00000000..b167a057 --- /dev/null +++ b/arxiv.py @@ -0,0 +1,135 @@ + +''' +credit to original author: Glenn (chenluda01@outlook.com) +''' + +import os +import requests +import time +import json +import datetime +from tqdm import tqdm + + +def get_yesterday(): + today = datetime.datetime.now() + yesterday = today - datetime.timedelta(days=1) + return yesterday.strftime('%Y-%m-%d') + + +def search_arxiv_papers(search_term, max_results=10): + papers = [] + + url = f'http://export.arxiv.org/api/query?' + \ + f'search_query=all:{search_term}' + \ + f'&start=0&&max_results={max_results}' + \ + f'&sortBy=submittedDate&sortOrder=descending' + + response = requests.get(url) + + if response.status_code != 200: + return [] + + feed = response.text + entries = feed.split('')[1:] + + if not entries: + return [] + + print('[+] 开始处理每日最新论文....') + + for entry in entries: + + title = entry.split('')[1].split('')[0].strip() + summary = entry.split('')[1].split('')[0].strip() + url = entry.split('')[1].split('')[0].strip() + pub_date = entry.split('')[1].split('')[0] + pub_date = datetime.datetime.strptime(pub_date, "%Y-%m-%dT%H:%M:%SZ").strftime("%Y-%m-%d") + + papers.append({ + 'title': title, + 'url': url, + 'pub_date': pub_date, + 'summary': summary, + }) + + return papers + + +def send_wechat_message(title, content, SERVERCHAN_API_KEY): + url = f'https://sctapi.ftqq.com/{SERVERCHAN_API_KEY}.send' + params = { + 'title': title, + 'desp': content, + } + requests.post(url, params=params) + + +def save_to_local_file(papers, filename='arxiv.json'): + with open(filename, 'r', encoding='utf-8') as f: + results = json.load(f) + + titles = {paper['title'].lower() for paper in results} + add_papers = [paper for paper in papers if paper['title'].lower() not in titles] + + results.extend(add_papers) + + with open(filename, 'w', encoding='utf-8') as f: + json.dump(results, f, indent=4, ensure_ascii=False) + + + + +def cronjob(): + + SERVERCHAN_API_KEY = os.environ.get("SERVERCHAN_API_KEY", None) + + if SERVERCHAN_API_KEY is None: + raise Exception("未设置SERVERCHAN_API_KEY环境变量") + + search_term = os.environ.get('QUERY', 'cs.IR') + max_results = os.environ.get('THREADS', 1) + + print('[+] 开始执行每日推送任务....') + yesterday = get_yesterday() + print('[+] 开始检索每日最新论文....') + papers = search_arxiv_papers(search_term, max_results) + + save_to_local_file(papers) + + print('[+] 开始推送每日最新论文....') + + for paper in tqdm(papers, total=len(papers), desc=f"论文推送进度"): + + title = paper['title'] + url = paper['url'] + pub_date = paper['pub_date'] + summary = paper['summary'] + + yesterday = get_yesterday() + + if pub_date == yesterday: + msg_title = f'[Newest]Title: {title}' + else: + msg_title = f'Title: {title}' + + msg_url = f'URL: {url}' + msg_pub_date = f'Pub Date:{pub_date}' + msg_summary = f'Summary:\n\n{summary}' + + today = datetime.datetime.now().strftime('%Y-%m-%d') + push_title = f'Arxiv:{search_term}@{today}' + msg_content = f"[{msg_title}]({url})\n\n{msg_pub_date}\n\n{msg_url}\n\n{msg_summary}\n\n" + + send_wechat_message(push_title, msg_content, SERVERCHAN_API_KEY) + + time.sleep(12) + + print('[+] 每日推送任务执行结束') + + +if __name__ == '__main__': + cronjob() + + + diff --git a/citer.py b/citer.py index de7f8bb1..4f31ba9e 100644 --- a/citer.py +++ b/citer.py @@ -37,7 +37,7 @@ def get_citation(self, doi): response = requests.get(url) response.raise_for_status() data = response.json()['message'] - reference_count = data['reference-count'] + reference_count = data['is-referenced-by-count'] self.cache[doi] = reference_count return reference_count except(requests.exceptions.RequestException, KeyError) as e: diff --git a/papers/cikm/cikm2012.md b/papers/cikm/cikm2012.md index 1fca6067..4add3737 100644 --- a/papers/cikm/cikm2012.md +++ b/papers/cikm/cikm2012.md @@ -2,453 +2,453 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[A unified learning framework for auto face annotation by mining web facial images](https://doi.org/10.1145/2396761.2398444)|Dayong Wang, Steven ChuHong Hoi, Ying He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+learning+framework+for+auto+face+annotation+by+mining+web+facial+images)|54| -|[On the foundations of probabilistic information integration](https://doi.org/10.1145/2396761.2396873)|Fereidoon Sadri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+foundations+of+probabilistic+information+integration)|48| -|[Predicting emerging social conventions in online social networks](https://doi.org/10.1145/2396761.2396820)|Farshad Kooti, Winter A. Mason, P. Krishna Gummadi, Meeyoung Cha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+emerging+social+conventions+in+online+social+networks)|47| -|[CoNet: feature generation for multi-view semi-supervised learning with partially observed views](https://doi.org/10.1145/2396761.2398429)|Brian Quanz, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoNet:+feature+generation+for+multi-view+semi-supervised+learning+with+partially+observed+views)|47| -|[Constructing test collections by inferring document relevance via extracted relevant information](https://doi.org/10.1145/2396761.2396783)|Shahzad Rajput, Matthew EkstrandAbueg, Virgiliu Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constructing+test+collections+by+inferring+document+relevance+via+extracted+relevant+information)|42| -|[Generating event storylines from microblogs](https://doi.org/10.1145/2396761.2396787)|Chen Lin, Chun Lin, Jingxuan Li, Dingding Wang, Yang Chen, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+event+storylines+from+microblogs)|42| -|[Gelling, and melting, large graphs by edge manipulation](https://doi.org/10.1145/2396761.2396795)|Hanghang Tong, B. Aditya Prakash, Tina EliassiRad, Michalis Faloutsos, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gelling,+and+melting,+large+graphs+by+edge+manipulation)|42| -|[Fast multi-task learning for query spelling correction](https://doi.org/10.1145/2396761.2396800)|Xu Sun, Anshumali Shrivastava, Ping Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+multi-task+learning+for+query+spelling+correction)|42| -|[Metaphor: a system for related search recommendations](https://doi.org/10.1145/2396761.2396847)|Azarias Reda, Yubin Park, Mitul Tiwari, Christian Posse, Sam Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Metaphor:+a+system+for+related+search+recommendations)|41| -|[Crosslingual distant supervision for extracting relations of different complexity](https://doi.org/10.1145/2396761.2398411)|André Blessing, Hinrich Schütze||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crosslingual+distant+supervision+for+extracting+relations+of+different+complexity)|41| -|[Back to the roots: a probabilistic framework for query-performance prediction](https://doi.org/10.1145/2396761.2396866)|Oren Kurland, Anna Shtok, Shay Hummel, Fiana Raiber, David Carmel, Ofri Rom||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Back+to+the+roots:+a+probabilistic+framework+for+query-performance+prediction)|40| -|[Learning to rank for robust question answering](https://doi.org/10.1145/2396761.2396867)|Arvind Agarwal, Hema Raghavan, Karthik Subbian, Prem Melville, Richard D. Lawrence, David Gondek, James Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+robust+question+answering)|40| -|[Predicting query performance for fusion-based retrieval](https://doi.org/10.1145/2396761.2396865)|Gad Markovits, Anna Shtok, Oren Kurland, David Carmel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+query+performance+for+fusion-based+retrieval)|39| -|[Topic-driven reader comments summarization](https://doi.org/10.1145/2396761.2396798)|Zongyang Ma, Aixin Sun, Quan Yuan, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic-driven+reader+comments+summarization)|38| -|[Local anomaly descriptor: a robust unsupervised algorithm for anomaly detection based on diffusion space](https://doi.org/10.1145/2396761.2396815)|Hao Huang, Hong Qin, Shinjae Yoo, Dantong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+anomaly+descriptor:+a+robust+unsupervised+algorithm+for+anomaly+detection+based+on+diffusion+space)|38| -|[Being picky: processing top-k queries with set-defined selections](https://doi.org/10.1145/2396761.2396877)|Aleksandar Stupar, Sebastian Michel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Being+picky:+processing+top-k+queries+with+set-defined+selections)|38| -|[Non-stationary bayesian networks based on perfect simulation](https://doi.org/10.1145/2396761.2398408)|Yi Jia, Wenrong Zeng, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-stationary+bayesian+networks+based+on+perfect+simulation)|36| -|[A novel local patch framework for fixing supervised learning models](https://doi.org/10.1145/2396761.2398425)|Yilei Wang, Bingzheng Wei, Jun Yan, Yang Hu, ZhiHong Deng, Zheng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+novel+local+patch+framework+for+fixing+supervised+learning+models)|36| -|[Query-performance prediction and cluster ranking: two sides of the same coin](https://doi.org/10.1145/2396761.2398666)|Oren Kurland, Fiana Raiber, Anna Shtok||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-performance+prediction+and+cluster+ranking:+two+sides+of+the+same+coin)|36| -|[Collective intelligence in the online social network of yahoo!answers and its implications](https://doi.org/10.1145/2396761.2396821)|Ze Li, Haiying Shen, Joseph Edward Grant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+intelligence+in+the+online+social+network+of+yahoo!answers+and+its+implications)|35| -|[Role-explicit query identification and intent role annotation](https://doi.org/10.1145/2396761.2398416)|Haitao Yu, Fuji Ren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Role-explicit+query+identification+and+intent+role+annotation)|35| -|[PARMA: a parallel randomized algorithm for approximate association rules mining in MapReduce](https://doi.org/10.1145/2396761.2396776)|Matteo Riondato, Justin A. DeBrabant, Rodrigo Fonseca, Eli Upfal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PARMA:+a+parallel+randomized+algorithm+for+approximate+association+rules+mining+in+MapReduce)|34| -|[On caption bias in interleaving experiments](https://doi.org/10.1145/2396761.2396780)|Katja Hofmann, Fritz Behr, Filip Radlinski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+caption+bias+in+interleaving+experiments)|34| -|[From face-to-face gathering to social structure](https://doi.org/10.1145/2396761.2396822)|Chunyan Wang, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+face-to-face+gathering+to+social+structure)|34| -|[Shard ranking and cutoff estimation for topically partitioned collections](https://doi.org/10.1145/2396761.2396833)|Anagha Kulkarni, Almer S. Tigelaar, Djoerd Hiemstra, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Shard+ranking+and+cutoff+estimation+for+topically+partitioned+collections)|34| -|[Maximizing revenue from strategic recommendations under decaying trust](https://doi.org/10.1145/2396761.2398621)|Paul Dütting, Monika Henzinger, Ingmar Weber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximizing+revenue+from+strategic+recommendations+under+decaying+trust)|34| -|[Sequential selection of correlated ads by POMDPs](https://doi.org/10.1145/2396761.2396828)|Shuai Yuan, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+selection+of+correlated+ads+by+POMDPs)|33| -|[KORE: keyphrase overlap relatedness for entity disambiguation](https://doi.org/10.1145/2396761.2396832)|Johannes Hoffart, Stephan Seufert, Dat Ba Nguyen, Martin Theobald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KORE:+keyphrase+overlap+relatedness+for+entity+disambiguation)|33| -|[Predicting aggregate social activities using continuous-time stochastic process](https://doi.org/10.1145/2396761.2396885)|Shu Huang, Min Chen, Bo Luo, Dongwon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+aggregate+social+activities+using+continuous-time+stochastic+process)|33| -|[Improving bag-of-visual-words model with spatial-temporal correlation for video retrieval](https://doi.org/10.1145/2396761.2398433)|Lei Wang, Dawei Song, Eyad Elyan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+bag-of-visual-words+model+with+spatial-temporal+correlation+for+video+retrieval)|33| -|[Authentication of moving range queries](https://doi.org/10.1145/2396761.2398441)|Duncan Yung, Eric Lo, Man Lung Yiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Authentication+of+moving+range+queries)|33| -|[Query-biased learning to rank for real-time twitter search](https://doi.org/10.1145/2396761.2398543)|Xin Zhang, Ben He, Tiejian Luo, Baobin Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-biased+learning+to+rank+for+real-time+twitter+search)|33| -|[Visual appearance of display ads and its effect on click through rate](https://doi.org/10.1145/2396761.2396826)|Javad Azimi, Ruofei Zhang, Yang Zhou, Vidhya Navalpakkam, Jianchang Mao, Xiaoli Z. Fern||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visual+appearance+of+display+ads+and+its+effect+on+click+through+rate)|32| -|[The wisdom of advertisers: mining subgoals via query clustering](https://doi.org/10.1145/2396761.2396827)|Takehiro Yamamoto, Tetsuya Sakai, Mayu Iwata, Chen Yu, JiRong Wen, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+wisdom+of+advertisers:+mining+subgoals+via+query+clustering)|32| -|[Right-protected data publishing with hierarchical clustering preservation](https://doi.org/10.1145/2396761.2396845)|Michail Vlachos, Aleksander Wieczorek, Johannes Schneider||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Right-protected+data+publishing+with+hierarchical+clustering+preservation)|32| -|[What is the IQ of your data transformation system?](https://doi.org/10.1145/2396761.2396872)|Giansalvatore Mecca, Paolo Papotti, Salvatore Raunich, Donatello Santoro||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+the+IQ+of+your+data+transformation+system?)|32| -|[Leaving so soon?: understanding and predicting web search abandonment rationales](https://doi.org/10.1145/2396761.2398399)|Abdigani Diriye, Ryen White, Georg Buscher, Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leaving+so+soon?:+understanding+and+predicting+web+search+abandonment+rationales)|32| -|[An effective rule miner for instance matching in a web of data](https://doi.org/10.1145/2396761.2398406)|Xing Niu, Shu Rong, Haofen Wang, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+rule+miner+for+instance+matching+in+a+web+of+data)|32| -|[Interactive pattern mining on hidden data: a sampling-based solution](https://doi.org/10.1145/2396761.2396777)|Mansurul Bhuiyan, Snehasis Mukhopadhyay, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+pattern+mining+on+hidden+data:+a+sampling-based+solution)|31| -|[Document-topic hierarchies from document graphs](https://doi.org/10.1145/2396761.2396843)|Tim Weninger, Yonatan Bisk, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document-topic+hierarchies+from+document+graphs)|31| -|[Learning to discover complex mappings from web forms to ontologies](https://doi.org/10.1145/2396761.2398427)|Yuan An, Xiaohua Hu, IlYeol Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+discover+complex+mappings+from+web+forms+to+ontologies)|31| -|[Mining competitive relationships by learning across heterogeneous networks](https://doi.org/10.1145/2396761.2398449)|Yang Yang, Jie Tang, Jacklyne Keomany, Yanting Zhao, Juanzi Li, Ying Ding, Tian Li, Liangwei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+competitive+relationships+by+learning+across+heterogeneous+networks)|31| -|[Multi-session re-search: in pursuit of repetition and diversification](https://doi.org/10.1145/2396761.2398571)|Sarah K. Tyler, Yi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-session+re-search:+in+pursuit+of+repetition+and+diversification)|31| -|[Social contextual recommendation](https://doi.org/10.1145/2396761.2396771)|Meng Jiang, Peng Cui, Rui Liu, Qiang Yang, Fei Wang, Wenwu Zhu, Shiqiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+contextual+recommendation)|30| -|[On the design of LDA models for aspect-based opinion mining](https://doi.org/10.1145/2396761.2396863)|Samaneh Moghaddam, Martin Ester||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+design+of+LDA+models+for+aspect-based+opinion+mining)|30| -|[Efficient jaccard-based diversity analysis of large document collections](https://doi.org/10.1145/2396761.2398445)|Fan Deng, Stefan Siersdorfer, Sergej Zerr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+jaccard-based+diversity+analysis+of+large+document+collections)|30| -|[Social book search: comparing topical relevance judgements and book suggestions for evaluation](https://doi.org/10.1145/2396761.2396788)|Marijn Koolen, Jaap Kamps, Gabriella Kazai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+book+search:+comparing+topical+relevance+judgements+and+book+suggestions+for+evaluation)|29| -|[Indexing uncertain spatio-temporal data](https://doi.org/10.1145/2396761.2396813)|Tobias Emrich, HansPeter Kriegel, Nikos Mamoulis, Matthias Renz, Andreas Züfle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexing+uncertain+spatio-temporal+data)|29| -|[The efficient imputation method for neighborhood-based collaborative filtering](https://doi.org/10.1145/2396761.2396849)|Yongli Ren, Gang Li, Jun Zhang, Wanlei Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+efficient+imputation+method+for+neighborhood-based+collaborative+filtering)|29| -|[Learning to rank duplicate bug reports](https://doi.org/10.1145/2396761.2396869)|Jian Zhou, Hongyu Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+duplicate+bug+reports)|29| -|[Social recommendation across multiple relational domains](https://doi.org/10.1145/2396761.2398448)|Meng Jiang, Peng Cui, Fei Wang, Qiang Yang, Wenwu Zhu, Shiqiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+recommendation+across+multiple+relational+domains)|29| -|[Topic based pose relevance learning in dance archives](https://doi.org/10.1145/2396761.2398694)|Reede Ren, John P. Collomosse, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic+based+pose+relevance+learning+in+dance+archives)|29| -|[LogUCB: an explore-exploit algorithm for comments recommendation](https://doi.org/10.1145/2396761.2396767)|Dhruv Kumar Mahajan, Rajeev Rastogi, Charu Tiwari, Adway Mitra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LogUCB:+an+explore-exploit+algorithm+for+comments+recommendation)|28| -|[Content-based crowd retrieval on the real-time web](https://doi.org/10.1145/2396761.2396789)|Krishna Yeswanth Kamath, James Caverlee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-based+crowd+retrieval+on+the+real-time+web)|28| +|[Mining high utility itemsets without candidate generation](https://doi.org/10.1145/2396761.2396773)|Mengchi Liu, JunFeng Qu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+high+utility+itemsets+without+candidate+generation)|355| +|[Twevent: segment-based event detection from tweets](https://doi.org/10.1145/2396761.2396785)|Chenliang Li, Aixin Sun, Anwitaman Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twevent:+segment-based+event+detection+from+tweets)|196| +|[Social contextual recommendation](https://doi.org/10.1145/2396761.2396771)|Meng Jiang, Peng Cui, Rui Liu, Qiang Yang, Fei Wang, Wenwu Zhu, Shiqiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+contextual+recommendation)|167| +|[gSCorr: modeling geo-social correlations for new check-ins on location-based social networks](https://doi.org/10.1145/2396761.2398477)|Huiji Gao, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=gSCorr:+modeling+geo-social+correlations+for+new+check-ins+on+location-based+social+networks)|135| +|[Gelling, and melting, large graphs by edge manipulation](https://doi.org/10.1145/2396761.2396795)|Hanghang Tong, B. Aditya Prakash, Tina EliassiRad, Michalis Faloutsos, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gelling,+and+melting,+large+graphs+by+edge+manipulation)|126| +|[Detecting offensive tweets via topical feature discovery over a large scale twitter corpus](https://doi.org/10.1145/2396761.2398556)|Guang Xiang, Bin Fan, Ling Wang, Jason I. Hong, Carolyn P. Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+offensive+tweets+via+topical+feature+discovery+over+a+large+scale+twitter+corpus)|106| +|[KORE: keyphrase overlap relatedness for entity disambiguation](https://doi.org/10.1145/2396761.2396832)|Johannes Hoffart, Stephan Seufert, Dat Ba Nguyen, Martin Theobald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KORE:+keyphrase+overlap+relatedness+for+entity+disambiguation)|96| +|[Prediction of retweet cascade size over time](https://doi.org/10.1145/2396761.2398634)|Andrey Kupavskii, Liudmila Ostroumova, Alexey Umnov, Svyatoslav Usachev, Pavel Serdyukov, Gleb Gusev, Andrey Kustarev||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Prediction+of+retweet+cascade+size+over+time)|96| +|[Exploring personal impact for group recommendation](https://doi.org/10.1145/2396761.2396848)|Xingjie Liu, Yuan Tian, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+personal+impact+for+group+recommendation)|89| +|[Meta path-based collective classification in heterogeneous information networks](https://doi.org/10.1145/2396761.2398474)|Xiangnan Kong, Philip S. Yu, Ying Ding, David J. Wild||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Meta+path-based+collective+classification+in+heterogeneous+information+networks)|83| +|[Recommending citations: translating papers into references](https://doi.org/10.1145/2396761.2398542)|Wenyi Huang, Saurabh Kataria, Cornelia Caragea, Prasenjit Mitra, C. Lee Giles, Lior Rokach||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+citations:+translating+papers+into+references)|72| +|[PARMA: a parallel randomized algorithm for approximate association rules mining in MapReduce](https://doi.org/10.1145/2396761.2396776)|Matteo Riondato, Justin A. DeBrabant, Rodrigo Fonseca, Eli Upfal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PARMA:+a+parallel+randomized+algorithm+for+approximate+association+rules+mining+in+MapReduce)|71| +|[Evaluating geo-social influence in location-based social networks](https://doi.org/10.1145/2396761.2398450)|Chao Zhang, Lidan Shou, Ke Chen, Gang Chen, Yijun Bei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+geo-social+influence+in+location-based+social+networks)|71| +|[Deco: declarative crowdsourcing](https://doi.org/10.1145/2396761.2398421)|Aditya G. Parameswaran, Hyunjung Park, Hector GarciaMolina, Neoklis Polyzotis, Jennifer Widom||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deco:+declarative+crowdsourcing)|67| +|[Discover breaking events with popular hashtags in twitter](https://doi.org/10.1145/2396761.2398519)|Anqi Cui, Min Zhang, Yiqun Liu, Shaoping Ma, Kuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discover+breaking+events+with+popular+hashtags+in+twitter)|64| +|[Climbing the app wall: enabling mobile app discovery through context-aware recommendations](https://doi.org/10.1145/2396761.2398683)|Alexandros Karatzoglou, Linas Baltrunas, Karen Church, Matthias Böhmer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Climbing+the+app+wall:+enabling+mobile+app+discovery+through+context-aware+recommendations)|62| +|[Topic-sensitive probabilistic model for expert finding in question answer communities](https://doi.org/10.1145/2396761.2398493)|Guangyou Zhou, Siwei Lai, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic-sensitive+probabilistic+model+for+expert+finding+in+question+answer+communities)|61| +|[Generating event storylines from microblogs](https://doi.org/10.1145/2396761.2396787)|Chen Lin, Chun Lin, Jingxuan Li, Dingding Wang, Yang Chen, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+event+storylines+from+microblogs)|60| +|[Fast and reliable anomaly detection in categorical data](https://doi.org/10.1145/2396761.2396816)|Leman Akoglu, Hanghang Tong, Jilles Vreeken, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+reliable+anomaly+detection+in+categorical+data)|58| +|[Social recommendation across multiple relational domains](https://doi.org/10.1145/2396761.2398448)|Meng Jiang, Peng Cui, Fei Wang, Qiang Yang, Wenwu Zhu, Shiqiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+recommendation+across+multiple+relational+domains)|56| +|[The face of quality in crowdsourcing relevance labels: demographics, personality and labeling accuracy](https://doi.org/10.1145/2396761.2398697)|Gabriella Kazai, Jaap Kamps, Natasa MilicFrayling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+face+of+quality+in+crowdsourcing+relevance+labels:+demographics,+personality+and+labeling+accuracy)|53| +|[Question-answer topic model for question retrieval in community question answering](https://doi.org/10.1145/2396761.2398669)|Zongcheng Ji, Fei Xu, Bin Wang, Ben He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question-answer+topic+model+for+question+retrieval+in+community+question+answering)|52| +|[Efficient safe-region construction for moving top-K spatial keyword queries](https://doi.org/10.1145/2396761.2396879)|Weihuang Huang, Guoliang Li, KianLee Tan, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+safe-region+construction+for+moving+top-K+spatial+keyword+queries)|50| +|[TALMUD: transfer learning for multiple domains](https://doi.org/10.1145/2396761.2396817)|Orly Moreno, Bracha Shapira, Lior Rokach, Guy Shani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TALMUD:+transfer+learning+for+multiple+domains)|48| +|[LINDA: distributed web-of-data-scale entity matching](https://doi.org/10.1145/2396761.2398582)|Christoph Böhm, Gerard de Melo, Felix Naumann, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LINDA:+distributed+web-of-data-scale+entity+matching)|48| +|[On the design of LDA models for aspect-based opinion mining](https://doi.org/10.1145/2396761.2396863)|Samaneh Moghaddam, Martin Ester||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+design+of+LDA+models+for+aspect-based+opinion+mining)|47| +|[Efficient distributed locality sensitive hashing](https://doi.org/10.1145/2396761.2398596)|Bahman Bahmani, Ashish Goel, Rajendra Shinde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+distributed+locality+sensitive+hashing)|47| +|[Leaving so soon?: understanding and predicting web search abandonment rationales](https://doi.org/10.1145/2396761.2398399)|Abdigani Diriye, Ryen White, Georg Buscher, Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leaving+so+soon?:+understanding+and+predicting+web+search+abandonment+rationales)|45| +|[Shaping communities out of triangles](https://doi.org/10.1145/2396761.2398496)|Arnau PratPérez, David DominguezSal, Josep M. Brunat, Josep Lluís LarribaPey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Shaping+communities+out+of+triangles)|45| +|[Real-time aggregate monitoring with differential privacy](https://doi.org/10.1145/2396761.2398595)|Liyue Fan, Li Xiong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+aggregate+monitoring+with+differential+privacy)|45| +|[Joint topic modeling for event summarization across news and social media streams](https://doi.org/10.1145/2396761.2398417)|Wei Gao, Peng Li, Kareem Darwish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+topic+modeling+for+event+summarization+across+news+and+social+media+streams)|43| +|[Leveraging tagging for neighborhood-aware probabilistic matrix factorization](https://doi.org/10.1145/2396761.2398531)|Le Wu, Enhong Chen, Qi Liu, Linli Xu, Tengfei Bao, Lei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+tagging+for+neighborhood-aware+probabilistic+matrix+factorization)|43| +|[An efficient index for massive IOT data in cloud environment](https://doi.org/10.1145/2396761.2398587)|Youzhong Ma, Jia Rao, Weisong Hu, Xiaofeng Meng, Xu Han, Yu Zhang, Yunpeng Chai, Chunqiu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+index+for+massive+IOT+data+in+cloud+environment)|41| +|[Scalable clustering of signed networks using balance normalized cut](https://doi.org/10.1145/2396761.2396841)|KaiYang Chiang, Joyce Jiyoung Whang, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+clustering+of+signed+networks+using+balance+normalized+cut)|40| +|[CloST: a hadoop-based storage system for big spatio-temporal data analytics](https://doi.org/10.1145/2396761.2398589)|Haoyu Tan, Wuman Luo, Lionel M. Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloST:+a+hadoop-based+storage+system+for+big+spatio-temporal+data+analytics)|39| +|[Predicting emerging social conventions in online social networks](https://doi.org/10.1145/2396761.2396820)|Farshad Kooti, Winter A. Mason, P. Krishna Gummadi, Meeyoung Cha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+emerging+social+conventions+in+online+social+networks)|37| +|[Efficient retrieval of recommendations in a matrix factorization framework](https://doi.org/10.1145/2396761.2396831)|Noam Koenigstein, Parikshit Ram, Yuval Shavitt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+retrieval+of+recommendations+in+a+matrix+factorization+framework)|37| +|[User guided entity similarity search using meta-path selection in heterogeneous information networks](https://doi.org/10.1145/2396761.2398565)|Xiao Yu, Yizhou Sun, Brandon Norick, Tiancheng Mao, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+guided+entity+similarity+search+using+meta-path+selection+in+heterogeneous+information+networks)|36| +|[Interpreting keyword queries over web knowledge bases](https://doi.org/10.1145/2396761.2396803)|Jeffrey Pound, Alexander K. Hudek, Ihab F. Ilyas, Grant E. Weddell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interpreting+keyword+queries+over+web+knowledge+bases)|33| +|[Language processing for arabic microblog retrieval](https://doi.org/10.1145/2396761.2398658)|Kareem Darwish, Walid Magdy, Ahmed Mourad||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Language+processing+for+arabic+microblog+retrieval)|33| +|[Topic-driven reader comments summarization](https://doi.org/10.1145/2396761.2396798)|Zongyang Ma, Aixin Sun, Quan Yuan, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic-driven+reader+comments+summarization)|32| +|[Time-aware topic recommendation based on micro-blogs](https://doi.org/10.1145/2396761.2398492)|Huizhi Liang, Yue Xu, Dian Tjondronegoro, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-aware+topic+recommendation+based+on+micro-blogs)|32| +|[Exploiting enriched contextual information for mobile app classification](https://doi.org/10.1145/2396761.2398484)|Hengshu Zhu, Huanhuan Cao, Enhong Chen, Hui Xiong, Jilei Tian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+enriched+contextual+information+for+mobile+app+classification)|31| +|[On the usefulness of query features for learning to rank](https://doi.org/10.1145/2396761.2398691)|Craig Macdonald, Rodrygo L. T. Santos, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+usefulness+of+query+features+for+learning+to+rank)|31| +|[G-SPARQL: a hybrid engine for querying large attributed graphs](https://doi.org/10.1145/2396761.2396806)|Sherif Sakr, Sameh Elnikety, Yuxiong He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-SPARQL:+a+hybrid+engine+for+querying+large+attributed+graphs)|30| +|[Exploring and predicting search task difficulty](https://doi.org/10.1145/2396761.2398434)|Jingjing Liu, Chang Liu, Michael J. Cole, Nicholas J. Belkin, Xiangmin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+and+predicting+search+task+difficulty)|30| +|[Knowing where and how criminal organizations operate using web content](https://doi.org/10.1145/2396761.2398446)|Michele Coscia, Viridiana Rios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowing+where+and+how+criminal+organizations+operate+using+web+content)|30| +|[On skyline groups](https://doi.org/10.1145/2396761.2398585)|Chengkai Li, Nan Zhang, Naeemul Hassan, Sundaresan Rajasekaran, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+skyline+groups)|30| +|[Influence propagation in adversarial setting: how to defeat competition with least amount of investment](https://doi.org/10.1145/2396761.2396837)|Shahrzad Shirazipourazad, Brian Bogard, Harsh Vachhani, Arunabha Sen, Paul Horn||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+propagation+in+adversarial+setting:+how+to+defeat+competition+with+least+amount+of+investment)|29| +|[Modeling topic hierarchies with the recursive chinese restaurant process](https://doi.org/10.1145/2396761.2396861)|Joon Hee Kim, Dongwoo Kim, Suin Kim, Alice Oh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+topic+hierarchies+with+the+recursive+chinese+restaurant+process)|29| +|[Predicting web search success with fine-grained interaction data](https://doi.org/10.1145/2396761.2398570)|Qi Guo, Dmitry Lagun, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+web+search+success+with+fine-grained+interaction+data)|29| +|[ESA: emergency situation awareness via microbloggers](https://doi.org/10.1145/2396761.2398732)|Jie Yin, Sarvnaz Karimi, Bella Robinson, Mark A. Cameron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESA:+emergency+situation+awareness+via+microbloggers)|29| +|[Making your interests follow you on twitter](https://doi.org/10.1145/2396761.2396786)|Marco Pennacchiotti, Fabrizio Silvestri, Hossein Vahabi, Rossano Venturini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+your+interests+follow+you+on+twitter)|28| |[One seed to find them all: mining opinion features via association](https://doi.org/10.1145/2396761.2396797)|Zhen Hai, Kuiyu Chang, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=One+seed+to+find+them+all:+mining+opinion+features+via+association)|28| -|[Visualizing timelines: evolutionary summarization via iterative reinforcement between text and image streams](https://doi.org/10.1145/2396761.2396799)|Rui Yan, Xiaojun Wan, Mirella Lapata, Wayne Xin Zhao, PuJen Cheng, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visualizing+timelines:+evolutionary+summarization+via+iterative+reinforcement+between+text+and+image+streams)|28| -|[A graph-based approach for ontology population with named entities](https://doi.org/10.1145/2396761.2396807)|Wei Shen, Jianyong Wang, Ping Luo, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+graph-based+approach+for+ontology+population+with+named+entities)|28| -|[Large-scale item categorization for e-commerce](https://doi.org/10.1145/2396761.2396838)|Dan Shen, JeanDavid Ruvini, Badrul Sarwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+item+categorization+for+e-commerce)|28| -|[Contextualization using hyperlinks and internal hierarchical structure of Wikipedia documents](https://doi.org/10.1145/2396761.2396855)|Muhammad Ali Norozi, Paavo Arvola, Arjen P. de Vries||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextualization+using+hyperlinks+and+internal+hierarchical+structure+of+Wikipedia+documents)|28| -|[Learning to rank by aggregating expert preferences](https://doi.org/10.1145/2396761.2396868)|Maksims Volkovs, Hugo Larochelle, Richard S. Zemel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+by+aggregating+expert+preferences)|28| -|[Pay-as-you-go maintenance of precomputed nearest neighbors in large graphs](https://doi.org/10.1145/2396761.2396881)|Tom Crecelius, Ralf Schenkel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pay-as-you-go+maintenance+of+precomputed+nearest+neighbors+in+large+graphs)|28| -|[An automatic blocking mechanism for large-scale de-duplication tasks](https://doi.org/10.1145/2396761.2398403)|Anish Das Sarma, Ankur Jain, Ashwin Machanavajjhala, Philip Bohannon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+automatic+blocking+mechanism+for+large-scale+de-duplication+tasks)|28| -|[Domain dependent query reformulation for web search](https://doi.org/10.1145/2396761.2398401)|Van Dang, Giridhar Kumaran, Adam D. Troy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain+dependent+query+reformulation+for+web+search)|28| -|[Labeling by landscaping: classifying tokens in context by pruning and decorating trees](https://doi.org/10.1145/2396761.2398412)|Siddharth Patwardhan, Branimir Boguraev, Apoorv Agarwal, Alessandro Moschitti, Jennifer ChuCarroll||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Labeling+by+landscaping:+classifying+tokens+in+context+by+pruning+and+decorating+trees)|28| -|[Deco: declarative crowdsourcing](https://doi.org/10.1145/2396761.2398421)|Aditya G. Parameswaran, Hyunjung Park, Hector GarciaMolina, Neoklis Polyzotis, Jennifer Widom||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deco:+declarative+crowdsourcing)|28| -|[Automated feature weighting in naive bayes for high-dimensional data classification](https://doi.org/10.1145/2396761.2398426)|Lifei Chen, Shengrui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+feature+weighting+in+naive+bayes+for+high-dimensional+data+classification)|28| -|[Generating facets for phone-based navigation of structured data](https://doi.org/10.1145/2396761.2398431)|Krishna Kummamuru, Ajith Jujjuru, Mayuri Duggirala||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+facets+for+phone-based+navigation+of+structured+data)|28| -|[The effect of aggregated search coherence on search behavior](https://doi.org/10.1145/2396761.2398432)|Jaime Arguello, Robert Capra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+effect+of+aggregated+search+coherence+on+search+behavior)|28| -|[Density index and proximity search in large graphs](https://doi.org/10.1145/2396761.2396794)|Nan Li, Xifeng Yan, Zhen Wen, Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Density+index+and+proximity+search+in+large+graphs)|27| -|[Towards an effective and unbiased ranking of scientific literature through mutual reinforcement](https://doi.org/10.1145/2396761.2396853)|Xiaorui Jiang, Xiaoping Sun, Hai Zhuge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+an+effective+and+unbiased+ranking+of+scientific+literature+through+mutual+reinforcement)|27| -|[A math-aware search engine for math question answering system](https://doi.org/10.1145/2396761.2396854)|Tam T. Nguyen, Kuiyu Chang, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+math-aware+search+engine+for+math+question+answering+system)|27| -|[Temporal corpus summarization using submodular word coverage](https://doi.org/10.1145/2396761.2396857)|Ruben Sipos, Adith Swaminathan, Pannaga Shivaswamy, Thorsten Joachims||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+corpus+summarization+using+submodular+word+coverage)|27| -|[Comprehension-based result snippets](https://doi.org/10.1145/2396761.2398405)|Abhijith Kashyap, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Comprehension-based+result+snippets)|27| -|[Knowing where and how criminal organizations operate using web content](https://doi.org/10.1145/2396761.2398446)|Michele Coscia, Viridiana Rios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowing+where+and+how+criminal+organizations+operate+using+web+content)|27| -|[Mining high utility itemsets without candidate generation](https://doi.org/10.1145/2396761.2396773)|Mengchi Liu, JunFeng Qu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+high+utility+itemsets+without+candidate+generation)|26| -|[Twevent: segment-based event detection from tweets](https://doi.org/10.1145/2396761.2396785)|Chenliang Li, Aixin Sun, Anwitaman Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twevent:+segment-based+event+detection+from+tweets)|26| -|[Interpreting keyword queries over web knowledge bases](https://doi.org/10.1145/2396761.2396803)|Jeffrey Pound, Alexander K. Hudek, Ihab F. Ilyas, Grant E. Weddell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interpreting+keyword+queries+over+web+knowledge+bases)|26| -|[Efficient algorithms for generalized subgraph query processing](https://doi.org/10.1145/2396761.2396805)|Wenqing Lin, Xiaokui Xiao, James Cheng, Sourav S. Bhowmick||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+algorithms+for+generalized+subgraph+query+processing)|26| -|[Fast and reliable anomaly detection in categorical data](https://doi.org/10.1145/2396761.2396816)|Leman Akoglu, Hanghang Tong, Jilles Vreeken, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+reliable+anomaly+detection+in+categorical+data)|26| -|[Spatial influence vs. community influence: modeling the global spread of social media](https://doi.org/10.1145/2396761.2396883)|Krishna Yeswanth Kamath, James Caverlee, Zhiyuan Cheng, Daniel Z. Sui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+influence+vs.+community+influence:+modeling+the+global+spread+of+social+media)|26| -|[Supporting factual statements with evidence from the web](https://doi.org/10.1145/2396761.2398415)|Chee Wee Leong, Silviu Cucerzan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+factual+statements+with+evidence+from+the+web)|26| -|[Robust distributed indexing for locality-skewed workloads](https://doi.org/10.1145/2396761.2398438)|MuWoong Lee, Seungwon Hwang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+distributed+indexing+for+locality-skewed+workloads)|26| -|[PRemiSE: personalized news recommendation via implicit social experts](https://doi.org/10.1145/2396761.2398482)|Chen Lin, Runquan Xie, Lei Li, Zhenhua Huang, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRemiSE:+personalized+news+recommendation+via+implicit+social+experts)|26| -|[Hierarchical target type identification for entity-oriented queries](https://doi.org/10.1145/2396761.2398648)|Krisztian Balog, Robert Neumayer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+target+type+identification+for+entity-oriented+queries)|26| -|[Making your interests follow you on twitter](https://doi.org/10.1145/2396761.2396786)|Marco Pennacchiotti, Fabrizio Silvestri, Hossein Vahabi, Rossano Venturini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+your+interests+follow+you+on+twitter)|25| -|[Multi-scale link prediction](https://doi.org/10.1145/2396761.2396792)|Donghyuk Shin, Si Si, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-scale+link+prediction)|25| -|[RDF pattern matching using sortable views](https://doi.org/10.1145/2396761.2396804)|Zhihong Chong, He Chen, Zhenjie Zhang, Hu Shu, Guilin Qi, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RDF+pattern+matching+using+sortable+views)|25| -|[Exploring personal impact for group recommendation](https://doi.org/10.1145/2396761.2396848)|Xingjie Liu, Yuan Tian, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+personal+impact+for+group+recommendation)|25| -|[Multi-faceted ranking of news articles using post-read actions](https://doi.org/10.1145/2396761.2396850)|Deepak Agarwal, BeeChung Chen, Xuanhui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-faceted+ranking+of+news+articles+using+post-read+actions)|25| -|[Finding top k most influential spatial facilities over uncertain objects](https://doi.org/10.1145/2396761.2396878)|Liming Zhan, Ying Zhang, Wenjie Zhang, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+top+k+most+influential+spatial+facilities+over+uncertain+objects)|25| -|[Efficient influence-based processing of market research queries](https://doi.org/10.1145/2396761.2398420)|Anastasios Arvanitis, Antonios Deligiannakis, Yannis Vassiliou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+influence-based+processing+of+market+research+queries)|25| -|[The walls have ears: optimize sharing for visibility and privacy in online social networks](https://doi.org/10.1145/2396761.2398451)|Thang N. Dinh, Yilin Shen, My T. Thai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+walls+have+ears:+optimize+sharing+for+visibility+and+privacy+in+online+social+networks)|25| -|[Topic-sensitive probabilistic model for expert finding in question answer communities](https://doi.org/10.1145/2396761.2398493)|Guangyou Zhou, Siwei Lai, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic-sensitive+probabilistic+model+for+expert+finding+in+question+answer+communities)|25| -|[An efficient and simple under-sampling technique for imbalanced time series classification](https://doi.org/10.1145/2396761.2398635)|Guohua Liang, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+and+simple+under-sampling+technique+for+imbalanced+time+series+classification)|25| -|[Graph classification: a diversified discriminative feature selection approach](https://doi.org/10.1145/2396761.2396791)|Yuanyuan Zhu, Jeffrey Xu Yu, Hong Cheng, Lu Qin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+classification:+a+diversified+discriminative+feature+selection+approach)|24| -|[Location-aware instant search](https://doi.org/10.1145/2396761.2396812)|Ruicheng Zhong, Ju Fan, Guoliang Li, KianLee Tan, Lizhu Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-aware+instant+search)|24| -|[Maximum margin clustering on evolutionary data](https://doi.org/10.1145/2396761.2396842)|Xuhui Fan, Lin Zhu, Longbing Cao, Xia Cui, YewSoon Ong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximum+margin+clustering+on+evolutionary+data)|24| -|[Two-part segmentation of text documents](https://doi.org/10.1145/2396761.2396862)|P. Deepak, Karthik Visweswariah, Nirmalie Wiratunga, Sadiq Sani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Two-part+segmentation+of+text+documents)|24| -|[Modeling topic hierarchies with the recursive chinese restaurant process](https://doi.org/10.1145/2396761.2396861)|Joon Hee Kim, Dongwoo Kim, Suin Kim, Alice Oh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+topic+hierarchies+with+the+recursive+chinese+restaurant+process)|24| -|[GPU acceleration of probabilistic frequent itemset mining from uncertain databases](https://doi.org/10.1145/2396761.2396874)|Yusuke Kozawa, Toshiyuki Amagasa, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPU+acceleration+of+probabilistic+frequent+itemset+mining+from+uncertain+databases)|24| -|[Monochromatic and bichromatic reverse nearest neighbor queries on land surfaces](https://doi.org/10.1145/2396761.2396880)|Da Yan, Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Monochromatic+and+bichromatic+reverse+nearest+neighbor+queries+on+land+surfaces)|24| -|[Acquiring temporal constraints between relations](https://doi.org/10.1145/2396761.2396886)|Partha Pratim Talukdar, Derry Wijaya, Tom M. Mitchell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Acquiring+temporal+constraints+between+relations)|24| -|[Click patterns: an empirical representation of complex query intents](https://doi.org/10.1145/2396761.2398400)|Huizhong Duan, Emre Kiciman, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Click+patterns:+an+empirical+representation+of+complex+query+intents)|24| -|[G-WSTD: a framework for geographic web search topic discovery](https://doi.org/10.1145/2396761.2398414)|Di Jiang, Jan Vosecky, Kenneth WaiTing Leung, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-WSTD:+a+framework+for+geographic+web+search+topic+discovery)|24| -|[Predicting the effectiveness of keyword queries on databases](https://doi.org/10.1145/2396761.2398422)|Shiwen Cheng, Arash Termehchy, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+effectiveness+of+keyword+queries+on+databases)|24| -|[Evaluating geo-social influence in location-based social networks](https://doi.org/10.1145/2396761.2398450)|Chao Zhang, Lidan Shou, Ke Chen, Gang Chen, Yijun Bei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+geo-social+influence+in+location-based+social+networks)|24| -|[From sBoW to dCoT marginalized encoders for text representation](https://doi.org/10.1145/2396761.2398536)|Zhixiang Eddie Xu, Minmin Chen, Kilian Q. Weinberger, Fei Sha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+sBoW+to+dCoT+marginalized+encoders+for+text+representation)|24| -|[Task tours: helping users tackle complex search tasks](https://doi.org/10.1145/2396761.2398537)|Ahmed Hassan Awadallah, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Task+tours:+helping+users+tackle+complex+search+tasks)|24| -|[Discovering logical knowledge for deep question answering](https://doi.org/10.1145/2396761.2398544)|Zhao Liu, Xipeng Qiu, Ling Cao, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+logical+knowledge+for+deep+question+answering)|24| -|[DQR: a probabilistic approach to diversified query recommendation](https://doi.org/10.1145/2396761.2396768)|Ruirui Li, Ben Kao, Bin Bi, Reynold Cheng, Eric Lo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DQR:+a+probabilistic+approach+to+diversified+query+recommendation)|23| -|[MEET: a generalized framework for reciprocal recommender systems](https://doi.org/10.1145/2396761.2396770)|Lei Li, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MEET:+a+generalized+framework+for+reciprocal+recommender+systems)|23| -|[Alternative assessor disagreement and retrieval depth](https://doi.org/10.1145/2396761.2396781)|William Webber, Praveen Chandar, Ben Carterette||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Alternative+assessor+disagreement+and+retrieval+depth)|23| -|[Decomposition-by-normalization (DBN): leveraging approximate functional dependencies for efficient tensor decomposition](https://doi.org/10.1145/2396761.2396809)|Mijung Kim, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Decomposition-by-normalization+(DBN):+leveraging+approximate+functional+dependencies+for+efficient+tensor+decomposition)|23| -|[Enabling direct interest-aware audience selection](https://doi.org/10.1145/2396761.2396836)|Ariel Fuxman, Anitha Kannan, Zhenhui Li, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+direct+interest-aware+audience+selection)|23| -|[Semantic context learning with large-scale weakly-labeled image set](https://doi.org/10.1145/2396761.2398532)|Yao Lu, Wei Zhang, Ke Zhang, Xiangyang Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+context+learning+with+large-scale+weakly-labeled+image+set)|23| -|[Learning to rank search results for time-sensitive queries](https://doi.org/10.1145/2396761.2398667)|Nattiya Kanhabua, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+search+results+for+time-sensitive+queries)|23| -|[Exploring the cluster hypothesis, and cluster-based retrieval, over the web](https://doi.org/10.1145/2396761.2398678)|Fiana Raiber, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+cluster+hypothesis,+and+cluster-based+retrieval,+over+the+web)|23| -|[An analysis of systematic judging errors in information retrieval](https://doi.org/10.1145/2396761.2396779)|Gabriella Kazai, Nick Craswell, Emine Yilmaz, Seyed M. M. Tahaghoghi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+systematic+judging+errors+in+information+retrieval)|22| -|[Multiview hierarchical bayesian regression model andapplication to online advertising](https://doi.org/10.1145/2396761.2396825)|Tianbing Xu, Ruofei Zhang, Zhen Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiview+hierarchical+bayesian+regression+model+andapplication+to+online+advertising)|22| -|[Matching product titles using web-based enrichment](https://doi.org/10.1145/2396761.2396839)|Vishrawas Gopalakrishnan, Suresh Parthasarathy Iyengar, Amit Madaan, Rajeev Rastogi, Srinivasan H. Sengamedu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Matching+product+titles+using+web-based+enrichment)|22| -|[Improving document clustering using automated machine translation](https://doi.org/10.1145/2396761.2396844)|Xiang Wang, Buyue Qian, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+document+clustering+using+automated+machine+translation)|22| -|[The generalized dirichlet distribution in enhanced topic detection](https://doi.org/10.1145/2396761.2396860)|Karla L. Caballero Espinosa, Joel Barajas, Ram Akella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+generalized+dirichlet+distribution+in+enhanced+topic+detection)|22| -|[Efficient safe-region construction for moving top-K spatial keyword queries](https://doi.org/10.1145/2396761.2396879)|Weihuang Huang, Guoliang Li, KianLee Tan, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+safe-region+construction+for+moving+top-K+spatial+keyword+queries)|22| -|[Joint topic modeling for event summarization across news and social media streams](https://doi.org/10.1145/2396761.2398417)|Wei Gao, Peng Li, Kareem Darwish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+topic+modeling+for+event+summarization+across+news+and+social+media+streams)|22| -|[Measuring robustness of complex networks under MVC attack](https://doi.org/10.1145/2396761.2398463)|RongHua Li, Jeffrey Xu Yu, Xin Huang, Hong Cheng, Zechao Shang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+robustness+of+complex+networks+under+MVC+attack)|22| -|[Discretionary social network data revelation with a user-centric utility guarantee](https://doi.org/10.1145/2396761.2398475)|Yi Song, Panagiotis Karras, Sadegh Nobari, Giorgos Cheliotis, Mingqiang Xue, Stéphane Bressan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discretionary+social+network+data+revelation+with+a+user-centric+utility+guarantee)|22| -|[Relational co-clustering via manifold ensemble learning](https://doi.org/10.1145/2396761.2398498)|Ping Li, Jiajun Bu, Chun Chen, Zhanying He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relational+co-clustering+via+manifold+ensemble+learning)|22| -|[Using program synthesis for social recommendations](https://doi.org/10.1145/2396761.2398507)|Alvin Cheung, Armando SolarLezama, Samuel Madden||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+program+synthesis+for+social+recommendations)|22| -|[Quality models for microblog retrieval](https://doi.org/10.1145/2396761.2398527)|Jaeho Choi, W. Bruce Croft, Jin Young Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quality+models+for+microblog+retrieval)|22| -|[Recommending citations: translating papers into references](https://doi.org/10.1145/2396761.2398542)|Wenyi Huang, Saurabh Kataria, Cornelia Caragea, Prasenjit Mitra, C. Lee Giles, Lior Rokach||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+citations:+translating+papers+into+references)|22| -|[A probabilistic approach to correlation queries in uncertain time series data](https://doi.org/10.1145/2396761.2398607)|Mahsa Orang, Nematollaah Shiri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+approach+to+correlation+queries+in+uncertain+time+series+data)|22| -|[An analysis of how ensembles of collective classifiers improve predictions in graphs](https://doi.org/10.1145/2396761.2396793)|Hoda Eldardiry, Jennifer Neville||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+how+ensembles+of+collective+classifiers+improve+predictions+in+graphs)|21| -|[A filter-based protocol for continuous queries over imprecise location data](https://doi.org/10.1145/2396761.2396810)|Yifan Jin, Reynold Cheng, Ben Kao, Kamyiu Lam, Yinuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+filter-based+protocol+for+continuous+queries+over+imprecise+location+data)|21| -|[Daily-deal selection for revenue maximization](https://doi.org/10.1145/2396761.2396835)|Theodoros Lappas, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Daily-deal+selection+for+revenue+maximization)|21| -|[Towards optimum query segmentation: in doubt without](https://doi.org/10.1145/2396761.2398398)|Matthias Hagen, Martin Potthast, Anna Beyer, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+optimum+query+segmentation:+in+doubt+without)|21| -|[Active learning for relation type extension with local and global data views](https://doi.org/10.1145/2396761.2398409)|Ang Sun, Ralph Grishman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+learning+for+relation+type+extension+with+local+and+global+data+views)|21| -|[You can stop early with COLA: online processing of aggregate queries in the cloud](https://doi.org/10.1145/2396761.2398423)|Yingjie Shi, Xiaofeng Meng, Fusheng Wang, Yantao Gan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=You+can+stop+early+with+COLA:+online+processing+of+aggregate+queries+in+the+cloud)|21| -|[A practical concurrent index for solid-state drives](https://doi.org/10.1145/2396761.2398437)|Risi Thonangi, Shivnath Babu, Jun Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+practical+concurrent+index+for+solid-state+drives)|21| -|[Efficient provenance storage for relational queries](https://doi.org/10.1145/2396761.2398439)|Zhifeng Bao, Henning Köhler, Liwei Wang, Xiaofang Zhou, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+provenance+storage+for+relational+queries)|21| -|[Feature selection based on term frequency and T-test for text categorization](https://doi.org/10.1145/2396761.2398457)|Deqing Wang, Hui Zhang, Rui Liu, Weifeng Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature+selection+based+on+term+frequency+and+T-test+for+text+categorization)|21| -|[Hierarchical topic integration through semi-supervised hierarchical topic modeling](https://doi.org/10.1145/2396761.2398483)|Xianling Mao, Jing He, Hongfei Yan, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+topic+integration+through+semi-supervised+hierarchical+topic+modeling)|21| -|[Measuring website similarity using an entity-aware click graph](https://doi.org/10.1145/2396761.2398500)|Pablo N. Mendes, Peter Mika, Hugo Zaragoza, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+website+similarity+using+an+entity-aware+click+graph)|21| +|[Incorporating occupancy into frequent pattern mining for high quality pattern recommendation](https://doi.org/10.1145/2396761.2396775)|Linpeng Tang, Lei Zhang, Ping Luo, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+occupancy+into+frequent+pattern+mining+for+high+quality+pattern+recommendation)|27| +|[Social book search: comparing topical relevance judgements and book suggestions for evaluation](https://doi.org/10.1145/2396761.2396788)|Marijn Koolen, Jaap Kamps, Gabriella Kazai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+book+search:+comparing+topical+relevance+judgements+and+book+suggestions+for+evaluation)|27| +|[Shard ranking and cutoff estimation for topically partitioned collections](https://doi.org/10.1145/2396761.2396833)|Anagha Kulkarni, Almer S. Tigelaar, Djoerd Hiemstra, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Shard+ranking+and+cutoff+estimation+for+topically+partitioned+collections)|27| +|[Learning to rank duplicate bug reports](https://doi.org/10.1145/2396761.2396869)|Jian Zhou, Hongyu Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+duplicate+bug+reports)|27| +|[Discovering personally semantic places from GPS trajectories](https://doi.org/10.1145/2396761.2398471)|Mingqi Lv, Ling Chen, Gencai Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+personally+semantic+places+from+GPS+trajectories)|27| +|[Clustering short text using Ncut-weighted non-negative matrix factorization](https://doi.org/10.1145/2396761.2398615)|Xiaohui Yan, Jiafeng Guo, Shenghua Liu, Xueqi Cheng, Yanfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+short+text+using+Ncut-weighted+non-negative+matrix+factorization)|26| +|[MEET: a generalized framework for reciprocal recommender systems](https://doi.org/10.1145/2396761.2396770)|Lei Li, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MEET:+a+generalized+framework+for+reciprocal+recommender+systems)|25| +|[Temporal corpus summarization using submodular word coverage](https://doi.org/10.1145/2396761.2396857)|Ruben Sipos, Adith Swaminathan, Pannaga Shivaswamy, Thorsten Joachims||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+corpus+summarization+using+submodular+word+coverage)|25| +|[The efficient imputation method for neighborhood-based collaborative filtering](https://doi.org/10.1145/2396761.2396849)|Yongli Ren, Gang Li, Jun Zhang, Wanlei Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+efficient+imputation+method+for+neighborhood-based+collaborative+filtering)|24| +|[Towards an effective and unbiased ranking of scientific literature through mutual reinforcement](https://doi.org/10.1145/2396761.2396853)|Xiaorui Jiang, Xiaoping Sun, Hai Zhuge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+an+effective+and+unbiased+ranking+of+scientific+literature+through+mutual+reinforcement)|24| +|[Indexing uncertain spatio-temporal data](https://doi.org/10.1145/2396761.2396813)|Tobias Emrich, HansPeter Kriegel, Nikos Mamoulis, Matthias Renz, Andreas Züfle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexing+uncertain+spatio-temporal+data)|23| +|[Sequential selection of correlated ads by POMDPs](https://doi.org/10.1145/2396761.2396828)|Shuai Yuan, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+selection+of+correlated+ads+by+POMDPs)|23| +|[Frequent grams based embedding for privacy preserving record linkage](https://doi.org/10.1145/2396761.2398480)|Luca Bonomi, Li Xiong, Rui Chen, Benjamin C. M. Fung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Frequent+grams+based+embedding+for+privacy+preserving+record+linkage)|23| +|[Federated search in the wild: the combined power of over a hundred search engines](https://doi.org/10.1145/2396761.2398535)|Dong Nguyen, Thomas Demeester, Dolf Trieschnigg, Djoerd Hiemstra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Federated+search+in+the+wild:+the+combined+power+of+over+a+hundred+search+engines)|23| +|[HadoopXML: a suite for parallel processing of massive XML data with multiple twig pattern queries](https://doi.org/10.1145/2396761.2398745)|Hyebong Choi, KyongHa Lee, SooHyong Kim, YoonJoon Lee, Bongki Moon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HadoopXML:+a+suite+for+parallel+processing+of+massive+XML+data+with+multiple+twig+pattern+queries)|23| +|[Delineating social network data anonymization via random edge perturbation](https://doi.org/10.1145/2396761.2396823)|Mingqiang Xue, Panagiotis Karras, Chedy Raïssi, Panos Kalnis, Hung Keng Pung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Delineating+social+network+data+anonymization+via+random+edge+perturbation)|22| +|[Back to the roots: a probabilistic framework for query-performance prediction](https://doi.org/10.1145/2396761.2396866)|Oren Kurland, Anna Shtok, Shay Hummel, Fiana Raiber, David Carmel, Ofri Rom||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Back+to+the+roots:+a+probabilistic+framework+for+query-performance+prediction)|22| +|[An effective rule miner for instance matching in a web of data](https://doi.org/10.1145/2396761.2398406)|Xing Niu, Shu Rong, Haofen Wang, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+rule+miner+for+instance+matching+in+a+web+of+data)|22| +|[If you are happy and you know it... tweet](https://doi.org/10.1145/2396761.2398481)|Amir Asiaee T., Mariano Tepper, Arindam Banerjee, Guillermo Sapiro||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=If+you+are+happy+and+you+know+it...+tweet)|22| +|[Interest-matching information propagation in multiple online social networks](https://doi.org/10.1145/2396761.2398525)|Yilin Shen, Thang N. Dinh, Huiyuan Zhang, My T. Thai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest-matching+information+propagation+in+multiple+online+social+networks)|22| +|[Interactive pattern mining on hidden data: a sampling-based solution](https://doi.org/10.1145/2396761.2396777)|Mansurul Bhuiyan, Snehasis Mukhopadhyay, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+pattern+mining+on+hidden+data:+a+sampling-based+solution)|21| +|[Matching product titles using web-based enrichment](https://doi.org/10.1145/2396761.2396839)|Vishrawas Gopalakrishnan, Suresh Parthasarathy Iyengar, Amit Madaan, Rajeev Rastogi, Srinivasan H. Sengamedu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Matching+product+titles+using+web-based+enrichment)|21| +|[Large-scale item categorization for e-commerce](https://doi.org/10.1145/2396761.2396838)|Dan Shen, JeanDavid Ruvini, Badrul Sarwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+item+categorization+for+e-commerce)|21| +|[Mining competitive relationships by learning across heterogeneous networks](https://doi.org/10.1145/2396761.2398449)|Yang Yang, Jie Tang, Jacklyne Keomany, Yanting Zhao, Juanzi Li, Ying Ding, Tian Li, Liangwei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+competitive+relationships+by+learning+across+heterogeneous+networks)|21| +|[PathRank: a novel node ranking measure on a heterogeneous graph for recommender systems](https://doi.org/10.1145/2396761.2398488)|Sangkeun Lee, Sungchan Park, Minsuk Kahng, Sanggoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PathRank:+a+novel+node+ranking+measure+on+a+heterogeneous+graph+for+recommender+systems)|21| |[Estimating interleaved comparison outcomes from historical click data](https://doi.org/10.1145/2396761.2398516)|Katja Hofmann, Shimon Whiteson, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+interleaved+comparison+outcomes+from+historical+click+data)|21| -|[Entity centric query expansion for enterprise search](https://doi.org/10.1145/2396761.2398551)|Xitong Liu, Hui Fang, Fei Chen, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+centric+query+expansion+for+enterprise+search)|21| -|[On the usefulness of query features for learning to rank](https://doi.org/10.1145/2396761.2398691)|Craig Macdonald, Rodrygo L. T. Santos, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+usefulness+of+query+features+for+learning+to+rank)|21| -|[The face of quality in crowdsourcing relevance labels: demographics, personality and labeling accuracy](https://doi.org/10.1145/2396761.2398697)|Gabriella Kazai, Jaap Kamps, Natasa MilicFrayling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+face+of+quality+in+crowdsourcing+relevance+labels:+demographics,+personality+and+labeling+accuracy)|21| -|[A general framework to encode heterogeneous information sources for contextual pattern mining](https://doi.org/10.1145/2396761.2396774)|Weishan Dong, Wei Fan, Lei Shi, Changjin Zhou, Xifeng Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+general+framework+to+encode+heterogeneous+information+sources+for+contextual+pattern+mining)|20| -|[G-SPARQL: a hybrid engine for querying large attributed graphs](https://doi.org/10.1145/2396761.2396806)|Sherif Sakr, Sameh Elnikety, Yuxiong He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-SPARQL:+a+hybrid+engine+for+querying+large+attributed+graphs)|20| -|[TALMUD: transfer learning for multiple domains](https://doi.org/10.1145/2396761.2396817)|Orly Moreno, Bracha Shapira, Lior Rokach, Guy Shani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TALMUD:+transfer+learning+for+multiple+domains)|20| -|[Processing continuous text queries featuring non-homogeneous scoring functions](https://doi.org/10.1145/2396761.2398404)|Nelly Vouzoukidou, Bernd Amann, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Processing+continuous+text+queries+featuring+non-homogeneous+scoring+functions)|20| -|[Modeling semantic relations between visual attributes and object categories via dirichlet forest prior](https://doi.org/10.1145/2396761.2398428)|Xin Chen, Xiaohua Hu, Zhongna Zhou, Yuan An, Tingting He, E. K. Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+semantic+relations+between+visual+attributes+and+object+categories+via+dirichlet+forest+prior)|20| -|[Exploring and predicting search task difficulty](https://doi.org/10.1145/2396761.2398434)|Jingjing Liu, Chang Liu, Michael J. Cole, Nicholas J. Belkin, Xiangmin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+and+predicting+search+task+difficulty)|20| -|[Generically extending anonymization algorithms to deal with successive queries](https://doi.org/10.1145/2396761.2398440)|Manuel Barbosa, Alexandre Pinto, Bruno Gomes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generically+extending+anonymization+algorithms+to+deal+with+successive+queries)|20| -|[Mining long-lasting exploratory user interests from search history](https://doi.org/10.1145/2396761.2398456)|Bin Tan, Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+long-lasting+exploratory+user+interests+from+search+history)|20| -|[Joint relevance and answer quality learning for question routing in community QA](https://doi.org/10.1145/2396761.2398459)|Guangyou Zhou, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+relevance+and+answer+quality+learning+for+question+routing+in+community+QA)|20| -|[Incorporating word correlation into tag-topic model for semantic knowledge acquisition](https://doi.org/10.1145/2396761.2398485)|Fang Li, Tingting He, Xinhui Tu, Xiaohua Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+word+correlation+into+tag-topic+model+for+semantic+knowledge+acquisition)|20| -|[Exploring the existing category hierarchy to automatically label the newly-arising topics in cQA](https://doi.org/10.1145/2396761.2398490)|Guangyou Zhou, Li Cai, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+existing+category+hierarchy+to+automatically+label+the+newly-arising+topics+in+cQA)|20| -|[Shaping communities out of triangles](https://doi.org/10.1145/2396761.2398496)|Arnau PratPérez, David DominguezSal, Josep M. Brunat, Josep Lluís LarribaPey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Shaping+communities+out+of+triangles)|20| -|[Degree relations of triangles in real-world networks and graph models](https://doi.org/10.1145/2396761.2398503)|Nurcan Durak, Ali Pinar, Tamara G. Kolda, C. Seshadhri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Degree+relations+of+triangles+in+real-world+networks+and+graph+models)|20| -|[Joint bilingual name tagging for parallel corpora](https://doi.org/10.1145/2396761.2398506)|Qi Li, Haibo Li, Heng Ji, Wen Wang, Jing Zheng, Fei Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+bilingual+name+tagging+for+parallel+corpora)|20| -|[A positional access method for relational databases](https://doi.org/10.1145/2396761.2398594)|Dongzhe Ma, Jianhua Feng, Guoliang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+positional+access+method+for+relational+databases)|20| -|[Efficient distributed locality sensitive hashing](https://doi.org/10.1145/2396761.2398596)|Bahman Bahmani, Ashish Goel, Rajendra Shinde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+distributed+locality+sensitive+hashing)|20| -|[Impact neighborhood indexing (INI) in diffusion graphs](https://doi.org/10.1145/2396761.2398598)|Jung Hyun Kim, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Impact+neighborhood+indexing+(INI)+in+diffusion+graphs)|20| -|[Scaling multiple-source entity resolution using statistically efficient transfer learning](https://doi.org/10.1145/2396761.2398606)|Sahand Negahban, Benjamin I. P. Rubinstein, Jim Gemmell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+multiple-source+entity+resolution+using+statistically+efficient+transfer+learning)|20| -|[Selecting expansion terms as a set via integer linear programming](https://doi.org/10.1145/2396761.2398651)|Qi Zhang, Yan Wu, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selecting+expansion+terms+as+a+set+via+integer+linear+programming)|20| -|[Compressed data structures with relevance](https://doi.org/10.1145/2396761.2396765)|Jeffrey Scott Vitter||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compressed+data+structures+with+relevance)|19| -|[Dynamic covering for recommendation systems](https://doi.org/10.1145/2396761.2396769)|Ioannis Antonellis, Anish Das Sarma, Shaddin Dughmi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+covering+for+recommendation+systems)|19| -|[Utilizing common substructures to speedup tensor factorization for mining dynamic graphs](https://doi.org/10.1145/2396761.2396818)|Wei Liu, Jeffrey Chan, James Bailey, Christopher Leckie, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Utilizing+common+substructures+to+speedup+tensor+factorization+for+mining+dynamic+graphs)|19| -|[Efficient retrieval of recommendations in a matrix factorization framework](https://doi.org/10.1145/2396761.2396831)|Noam Koenigstein, Parikshit Ram, Yuval Shavitt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+retrieval+of+recommendations+in+a+matrix+factorization+framework)|19| -|[A decentralized recommender system for effective web credibility assessment](https://doi.org/10.1145/2396761.2396851)|Thanasis G. Papaioannou, JeanEudes Ranvier, Alexandra Olteanu, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+decentralized+recommender+system+for+effective+web+credibility+assessment)|19| -|[TCSST: transfer classification of short & sparse text using external data](https://doi.org/10.1145/2396761.2396859)|Guodong Long, Ling Chen, Xingquan Zhu, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TCSST:+transfer+classification+of+short+&+sparse+text+using+external+data)|19| -|[Completeness of queries over SQL databases](https://doi.org/10.1145/2396761.2396875)|Werner Nutt, Simon Razniewski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Completeness+of+queries+over+SQL+databases)|19| -|[Model the complex dependence structures of financial variables by using canonical vine](https://doi.org/10.1145/2396761.2398443)|Wei Wei, Xuhui Fan, Jinyan Li, Longbing Cao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model+the+complex+dependence+structures+of+financial+variables+by+using+canonical+vine)|19| -|[Empirical validation of the buckley-osthus model for the web host graph: degree and edge distributions](https://doi.org/10.1145/2396761.2398476)|Maxim Zhukovskiy, Dmitry Vinogradov, Yuri Pritykin, Liudmila Ostroumova, Evgeny Grechnikov, Gleb Gusev, Pavel Serdyukov, Andrei M. Raigorodskii||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Empirical+validation+of+the+buckley-osthus+model+for+the+web+host+graph:+degree+and+edge+distributions)|19| -|[Unsupervised discovery of opposing opinion networks from forum discussions](https://doi.org/10.1145/2396761.2398489)|Yue Lu, Hongning Wang, ChengXiang Zhai, Dan Roth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+discovery+of+opposing+opinion+networks+from+forum+discussions)|19| -|[WiSeNet: building a wikipedia-based semantic network with ontologized relations](https://doi.org/10.1145/2396761.2398495)|Andrea Moro, Roberto Navigli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WiSeNet:+building+a+wikipedia-based+semantic+network+with+ontologized+relations)|19| -|[The early-adopter graph and its application to web-page recommendation](https://doi.org/10.1145/2396761.2398497)|Ida Mele, Francesco Bonchi, Aristides Gionis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+early-adopter+graph+and+its+application+to+web-page+recommendation)|19| -|[SemaFor: semantic document indexing using semantic forests](https://doi.org/10.1145/2396761.2398499)|George Tsatsaronis, Iraklis Varlamis, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemaFor:+semantic+document+indexing+using+semantic+forests)|19| -|[Discover breaking events with popular hashtags in twitter](https://doi.org/10.1145/2396761.2398519)|Anqi Cui, Min Zhang, Yiqun Liu, Shaoping Ma, Kuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discover+breaking+events+with+popular+hashtags+in+twitter)|19| -|[On the connections between explicit semantic analysis and latent semantic analysis](https://doi.org/10.1145/2396761.2398521)|Chao Liu, YiMin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+connections+between+explicit+semantic+analysis+and+latent+semantic+analysis)|19| -|[More than relevance: high utility query recommendation by mining users' search behaviors](https://doi.org/10.1145/2396761.2398523)|Xiaofei Zhu, Jiafeng Guo, Xueqi Cheng, Yanyan Lan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=More+than+relevance:+high+utility+query+recommendation+by+mining+users'+search+behaviors)|19| -|[Federated search in the wild: the combined power of over a hundred search engines](https://doi.org/10.1145/2396761.2398535)|Dong Nguyen, Thomas Demeester, Dolf Trieschnigg, Djoerd Hiemstra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Federated+search+in+the+wild:+the+combined+power+of+over+a+hundred+search+engines)|19| -|[Map to humans and reduce error: crowdsourcing for deduplication applied to digital libraries](https://doi.org/10.1145/2396761.2398554)|Mihai Georgescu, Dang Duc Pham, Claudiu S. Firan, Wolfgang Nejdl, Julien Gaugaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Map+to+humans+and+reduce+error:+crowdsourcing+for+deduplication+applied+to+digital+libraries)|19| -|[Short-text domain specific key terms/phrases extraction using an n-gram model with wikipedia](https://doi.org/10.1145/2396761.2398680)|Muhammad Atif Qureshi, Colm O'Riordan, Gabriella Pasi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short-text+domain+specific+key+terms/phrases+extraction+using+an+n-gram+model+with+wikipedia)|19| -|[Incorporating occupancy into frequent pattern mining for high quality pattern recommendation](https://doi.org/10.1145/2396761.2396775)|Linpeng Tang, Lei Zhang, Ping Luo, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+occupancy+into+frequent+pattern+mining+for+high+quality+pattern+recommendation)|18| -|[Leveraging read rates of passive RFID tags for real-time indoor location tracking](https://doi.org/10.1145/2396761.2396811)|Da Yan, Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+read+rates+of+passive+RFID+tags+for+real-time+indoor+location+tracking)|18| -|[Influence propagation in adversarial setting: how to defeat competition with least amount of investment](https://doi.org/10.1145/2396761.2396837)|Shahrzad Shirazipourazad, Brian Bogard, Harsh Vachhani, Arunabha Sen, Paul Horn||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+propagation+in+adversarial+setting:+how+to+defeat+competition+with+least+amount+of+investment)|18| -|[A model-based approach for RFID data stream cleansing](https://doi.org/10.1145/2396761.2396871)|Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+model-based+approach+for+RFID+data+stream+cleansing)|18| -|[TUT: a statistical model for detecting trends, topics and user interests in social media](https://doi.org/10.1145/2396761.2396884)|Xuning Tang, Christopher C. Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TUT:+a+statistical+model+for+detecting+trends,+topics+and+user+interests+in+social+media)|18| -|[CGStream: continuous correlated graph query for data streams](https://doi.org/10.1145/2396761.2398419)|Shirui Pan, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CGStream:+continuous+correlated+graph+query+for+data+streams)|18| -|[Iterative relevance feedback with adaptive exploration/exploitation trade-off](https://doi.org/10.1145/2396761.2398435)|Nicolae Suditu, François Fleuret||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Iterative+relevance+feedback+with+adaptive+exploration/exploitation+trade-off)|18| -|[Learning spectral embedding via iterative eigenvalue thresholding](https://doi.org/10.1145/2396761.2398462)|Fanhua Shang, Licheng Jiao, Yuanyuan Liu, Fei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+spectral+embedding+via+iterative+eigenvalue+thresholding)|18| -|[Extraction of topic evolutions from references in scientific articles and its GPU acceleration](https://doi.org/10.1145/2396761.2398465)|Tomonari Masada, Atsuhiro Takasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extraction+of+topic+evolutions+from+references+in+scientific+articles+and+its+GPU+acceleration)|18| -|[Efficient extraction of ontologies from domain specific text corpora](https://doi.org/10.1145/2396761.2398468)|Tianyu Li, Pirooz Chubak, Laks V. S. Lakshmanan, Rachel Pottinger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+extraction+of+ontologies+from+domain+specific+text+corpora)|18| -|[Frequent grams based embedding for privacy preserving record linkage](https://doi.org/10.1145/2396761.2398480)|Luca Bonomi, Li Xiong, Rui Chen, Benjamin C. M. Fung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Frequent+grams+based+embedding+for+privacy+preserving+record+linkage)|18| -|[If you are happy and you know it... tweet](https://doi.org/10.1145/2396761.2398481)|Amir Asiaee T., Mariano Tepper, Arindam Banerjee, Guillermo Sapiro||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=If+you+are+happy+and+you+know+it...+tweet)|18| -|[Query likelihood with negative query generation](https://doi.org/10.1145/2396761.2398520)|Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+likelihood+with+negative+query+generation)|18| -|[Ranking news events by influence decay and information fusion for media and users](https://doi.org/10.1145/2396761.2398530)|Liang Kong, Shan Jiang, Rui Yan, Shize Xu, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+news+events+by+influence+decay+and+information+fusion+for+media+and+users)|18| -|[Search result presentation based on faceted clustering](https://doi.org/10.1145/2396761.2398548)|Benno Stein, Tim Gollub, Dennis Hoppe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+result+presentation+based+on+faceted+clustering)|18| -|[Detecting offensive tweets via topical feature discovery over a large scale twitter corpus](https://doi.org/10.1145/2396761.2398556)|Guang Xiang, Bin Fan, Ling Wang, Jason I. Hong, Carolyn P. Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+offensive+tweets+via+topical+feature+discovery+over+a+large+scale+twitter+corpus)|18| -|[Sort-based query-adaptive loading of R-trees](https://doi.org/10.1145/2396761.2398577)|Daniar Achakeev, Bernhard Seeger, Peter Widmayer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sort-based+query-adaptive+loading+of+R-trees)|18| -|[Dual word and document seed selection for semi-supervised sentiment classification](https://doi.org/10.1145/2396761.2398624)|Shengfeng Ju, Shoushan Li, Yan Su, Guodong Zhou, Yu Hong, Xiaojun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual+word+and+document+seed+selection+for+semi-supervised+sentiment+classification)|18| +|[Learning to rank search results for time-sensitive queries](https://doi.org/10.1145/2396761.2398667)|Nattiya Kanhabua, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+search+results+for+time-sensitive+queries)|21| +|[Temporal models for microblogs](https://doi.org/10.1145/2396761.2398674)|Jaeho Choi, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+models+for+microblogs)|21| +|[LogUCB: an explore-exploit algorithm for comments recommendation](https://doi.org/10.1145/2396761.2396767)|Dhruv Kumar Mahajan, Rajeev Rastogi, Charu Tiwari, Adway Mitra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LogUCB:+an+explore-exploit+algorithm+for+comments+recommendation)|20| +|[Graph classification: a diversified discriminative feature selection approach](https://doi.org/10.1145/2396761.2396791)|Yuanyuan Zhu, Jeffrey Xu Yu, Hong Cheng, Lu Qin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+classification:+a+diversified+discriminative+feature+selection+approach)|20| +|[Location-aware instant search](https://doi.org/10.1145/2396761.2396812)|Ruicheng Zhong, Ju Fan, Guoliang Li, KianLee Tan, Lizhu Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-aware+instant+search)|20| +|[The effect of aggregated search coherence on search behavior](https://doi.org/10.1145/2396761.2398432)|Jaime Arguello, Robert Capra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+effect+of+aggregated+search+coherence+on+search+behavior)|20| +|[Measuring robustness of complex networks under MVC attack](https://doi.org/10.1145/2396761.2398463)|RongHua Li, Jeffrey Xu Yu, Xin Huang, Hong Cheng, Zechao Shang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+robustness+of+complex+networks+under+MVC+attack)|20| +|[Mining topic-level opinion influence in microblog](https://doi.org/10.1145/2396761.2398473)|Daifeng Li, Xin Shuai, Gordon GuoZheng Sun, Jie Tang, Ying Ding, Zhipeng Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+topic-level+opinion+influence+in+microblog)|20| +|[Trust prediction via aggregating heterogeneous social networks](https://doi.org/10.1145/2396761.2398515)|Jin Huang, Feiping Nie, Heng Huang, YiCheng Tu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Trust+prediction+via+aggregating+heterogeneous+social+networks)|20| +|[TwiSent: a multistage system for analyzing sentiment in twitter](https://doi.org/10.1145/2396761.2398684)|Subhabrata Mukherjee, Akshat Malu, Balamurali A. R., Pushpak Bhattacharyya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TwiSent:+a+multistage+system+for+analyzing+sentiment+in+twitter)|20| +|[An analysis of systematic judging errors in information retrieval](https://doi.org/10.1145/2396761.2396779)|Gabriella Kazai, Nick Craswell, Emine Yilmaz, Seyed M. M. Tahaghoghi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+systematic+judging+errors+in+information+retrieval)|19| +|[Learning to rank for robust question answering](https://doi.org/10.1145/2396761.2396867)|Arvind Agarwal, Hema Raghavan, Karthik Subbian, Prem Melville, Richard D. Lawrence, David Gondek, James Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+robust+question+answering)|19| +|[Towards optimum query segmentation: in doubt without](https://doi.org/10.1145/2396761.2398398)|Matthias Hagen, Martin Potthast, Anna Beyer, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+optimum+query+segmentation:+in+doubt+without)|19| +|[GRAFT: an approximate graphlet counting algorithm for large graph analysis](https://doi.org/10.1145/2396761.2398454)|Mahmudur Rahman, Mansurul Bhuiyan, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GRAFT:+an+approximate+graphlet+counting+algorithm+for+large+graph+analysis)|19| +|[A hybrid approach for efficient provenance storage](https://doi.org/10.1145/2396761.2398511)|Yulai Xie, Dan Feng, Zhipeng Tan, Lei Chen, KiranKumar MuniswamyReddy, Yan Li, Darrell D. E. Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+hybrid+approach+for+efficient+provenance+storage)|19| +|[On compressing weighted time-evolving graphs](https://doi.org/10.1145/2396761.2398630)|Wei Liu, Andrey Kan, Jeffrey Chan, James Bailey, Christopher Leckie, Jian Pei, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+compressing+weighted+time-evolving+graphs)|19| +|[Top-N recommendation through belief propagation](https://doi.org/10.1145/2396761.2398636)|Jiwoon Ha, SoonHyoung Kwon, SangWook Kim, Christos Faloutsos, Sunju Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-N+recommendation+through+belief+propagation)|19| +|[Hierarchical image annotation using semantic hierarchies](https://doi.org/10.1145/2396761.2398659)|Hichem Bannour, Céline Hudelot||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+image+annotation+using+semantic+hierarchies)|19| +|[A math-aware search engine for math question answering system](https://doi.org/10.1145/2396761.2396854)|Tam T. Nguyen, Kuiyu Chang, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+math-aware+search+engine+for+math+question+answering+system)|18| +|[The generalized dirichlet distribution in enhanced topic detection](https://doi.org/10.1145/2396761.2396860)|Karla L. Caballero Espinosa, Joel Barajas, Ram Akella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+generalized+dirichlet+distribution+in+enhanced+topic+detection)|18| +|[Feature selection based on term frequency and T-test for text categorization](https://doi.org/10.1145/2396761.2398457)|Deqing Wang, Hui Zhang, Rui Liu, Weifeng Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature+selection+based+on+term+frequency+and+T-test+for+text+categorization)|18| +|[Quality models for microblog retrieval](https://doi.org/10.1145/2396761.2398527)|Jaeho Choi, W. Bruce Croft, Jin Young Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quality+models+for+microblog+retrieval)|18| +|[Query-biased learning to rank for real-time twitter search](https://doi.org/10.1145/2396761.2398543)|Xin Zhang, Ben He, Tiejian Luo, Baobin Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-biased+learning+to+rank+for+real-time+twitter+search)|18| +|[Location selection for utility maximization with capacity constraints](https://doi.org/10.1145/2396761.2398592)|Yu Sun, Jin Huang, Yueguo Chen, Rui Zhang, Xiaoyong Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+selection+for+utility+maximization+with+capacity+constraints)|18| |[Automatic labeling hierarchical topics](https://doi.org/10.1145/2396761.2398646)|Xianling Mao, Zhaoyan Ming, ZhengJun Zha, TatSeng Chua, Hongfei Yan, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+labeling+hierarchical+topics)|18| -|[Fast candidate generation for two-phase document ranking: postings list intersection with bloom filters](https://doi.org/10.1145/2396761.2398656)|Nima Asadi, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+candidate+generation+for+two-phase+document+ranking:+postings+list+intersection+with+bloom+filters)|18| -|[Language processing for arabic microblog retrieval](https://doi.org/10.1145/2396761.2398658)|Kareem Darwish, Walid Magdy, Ahmed Mourad||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Language+processing+for+arabic+microblog+retrieval)|18| -|[Temporal models for microblogs](https://doi.org/10.1145/2396761.2398674)|Jaeho Choi, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+models+for+microblogs)|18| -|[Probabilistic ranking in fuzzy object databases](https://doi.org/10.1145/2396761.2398714)|Thomas Bernecker, Tobias Emrich, HansPeter Kriegel, Matthias Renz, Andreas Züfle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+ranking+in+fuzzy+object+databases)|18| -|[Fast and accurate incremental entity resolution relative to an entity knowledge base](https://doi.org/10.1145/2396761.2398719)|Michael J. Welch, Aamod Sane, Chris Drome||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+accurate+incremental+entity+resolution+relative+to+an+entity+knowledge+base)|18| -|[DOLAP 2012 workshop summary](https://doi.org/10.1145/2396761.2398765)|Matteo Golfarelli, IlYeol Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DOLAP+2012+workshop+summary)|18| -|[Incorporating variability in user behavior into systems based evaluation](https://doi.org/10.1145/2396761.2396782)|Ben Carterette, Evangelos Kanoulas, Emine Yilmaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+variability+in+user+behavior+into+systems+based+evaluation)|17| -|[Scalable clustering of signed networks using balance normalized cut](https://doi.org/10.1145/2396761.2396841)|KaiYang Chiang, Joyce Jiyoung Whang, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+clustering+of+signed+networks+using+balance+normalized+cut)|17| -|[Understanding book search behavior on the web](https://doi.org/10.1145/2396761.2396856)|Jin Young Kim, Henry Allen Feild, MarcAllen Cartright||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+book+search+behavior+on+the+web)|17| -|[Exploiting latent relevance for relational learning of ubiquitous things](https://doi.org/10.1145/2396761.2398470)|Lina Yao, Quan Z. Sheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+latent+relevance+for+relational+learning+of+ubiquitous+things)|17| -|[Interest-matching information propagation in multiple online social networks](https://doi.org/10.1145/2396761.2398525)|Yilin Shen, Thang N. Dinh, Huiyuan Zhang, My T. Thai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest-matching+information+propagation+in+multiple+online+social+networks)|17| -|[Customizing search results for non-native speakers](https://doi.org/10.1145/2396761.2398526)|Theodoros Lappas, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Customizing+search+results+for+non-native+speakers)|17| -|[Query recommendation for children](https://doi.org/10.1145/2396761.2398562)|Sergio Duarte Torres, Djoerd Hiemstra, Ingmar Weber, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+recommendation+for+children)|17| -|[Modeling browsing behavior for click analysis in sponsored search](https://doi.org/10.1145/2396761.2398563)|Azin Ashkan, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+browsing+behavior+for+click+analysis+in+sponsored+search)|17| -|[Dictionary based sparse representation for domain adaptation](https://doi.org/10.1145/2396761.2398649)|Rishabh Mehrotra, Rushabh Agrawal, Syed Aqueel Haider||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dictionary+based+sparse+representation+for+domain+adaptation)|17| -|[On the inference of average precision from score distributions](https://doi.org/10.1145/2396761.2398660)|Ronan Cummins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+inference+of+average+precision+from+score+distributions)|17| -|[Survival analysis for freshness in microblogging search](https://doi.org/10.1145/2396761.2398672)|Gianni Amati, Giuseppe Amodeo, Carlo Gaibisso||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Survival+analysis+for+freshness+in+microblogging+search)|17| -|[Cross-argument inference for implicit discourse relation recognition](https://doi.org/10.1145/2396761.2396801)|Yu Hong, Xiaopei Zhou, Tingting Che, JianMin Yao, Qiaoming Zhu, Guodong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-argument+inference+for+implicit+discourse+relation+recognition)|16| -|[Diversity in blog feed retrieval](https://doi.org/10.1145/2396761.2396830)|Mostafa Keikha, Fabio Crestani, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversity+in+blog+feed+retrieval)|16| -|[Segmenting web-domains and hashtags using length specific models](https://doi.org/10.1145/2396761.2398410)|Sriram Srinivasan, Sourangshu Bhattacharya, Rudrasis Chakraborty||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Segmenting+web-domains+and+hashtags+using+length+specific+models)|16| -|[A probabilistic approach to mining geospatial knowledge from social annotations](https://doi.org/10.1145/2396761.2398504)|Suradej Intagorn, Kristina Lerman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+approach+to+mining+geospatial+knowledge+from+social+annotations)|16| -|[Trust prediction via aggregating heterogeneous social networks](https://doi.org/10.1145/2396761.2398515)|Jin Huang, Feiping Nie, Heng Huang, YiCheng Tu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Trust+prediction+via+aggregating+heterogeneous+social+networks)|16| -|[Diversionary comments under political blog posts](https://doi.org/10.1145/2396761.2398518)|Jing Wang, Clement T. Yu, Philip S. Yu, Bing Liu, Weiyi Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversionary+comments+under+political+blog+posts)|16| -|[Exploiting concept hierarchy for result diversification](https://doi.org/10.1145/2396761.2398529)|Wei Zheng, Hui Fang, Conglei Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+concept+hierarchy+for+result+diversification)|16| -|[Sketch-based indexing of n-words](https://doi.org/10.1145/2396761.2398533)|Samuel J. Huston, J. Shane Culpepper, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sketch-based+indexing+of+n-words)|16| -|[SonetRank: leveraging social networks to personalize search](https://doi.org/10.1145/2396761.2398569)|Abhijith Kashyap, Reza Amini, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SonetRank:+leveraging+social+networks+to+personalize+search)|16| -|[Discovering conditional inclusion dependencies](https://doi.org/10.1145/2396761.2398580)|Jana Bauckmann, Ziawasch Abedjan, Ulf Leser, Heiko Müller, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+conditional+inclusion+dependencies)|16| -|[LINDA: distributed web-of-data-scale entity matching](https://doi.org/10.1145/2396761.2398582)|Christoph Böhm, Gerard de Melo, Felix Naumann, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LINDA:+distributed+web-of-data-scale+entity+matching)|16| -|[Efficient estimation of dynamic density functions with an application to outlier detection](https://doi.org/10.1145/2396761.2398593)|Abdulhakim Ali Qahtan, Xiangliang Zhang, Suojin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+estimation+of+dynamic+density+functions+with+an+application+to+outlier+detection)|16| -|[Real-time aggregate monitoring with differential privacy](https://doi.org/10.1145/2396761.2398595)|Liyue Fan, Li Xiong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+aggregate+monitoring+with+differential+privacy)|16| -|[An evaluation of corpus-driven measures of medical concept similarity for information retrieval](https://doi.org/10.1145/2396761.2398661)|Bevan Koopman, Guido Zuccon, Peter Bruza, Laurianne Sitbon, Michael Lawley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+evaluation+of+corpus-driven+measures+of+medical+concept+similarity+for+information+retrieval)|16| -|[I want what i need!: analyzing subjectivity of online forum threads](https://doi.org/10.1145/2396761.2398675)|Prakhar Biyani, Cornelia Caragea, Amit Singh, Prasenjit Mitra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=I+want+what+i+need!:+analyzing+subjectivity+of+online+forum+threads)|16| -|[Similarity search in 3D object-based video data](https://doi.org/10.1145/2396761.2398716)|Jakub Lokoc, Jürgen Wünschmann, Tomás Skopal, Albrecht Rothermel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity+search+in+3D+object-based+video+data)|16| -|[Hierarchical co-clustering based on entropy splitting](https://doi.org/10.1145/2396761.2398455)|Wei Cheng, Xiang Zhang, Feng Pan, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+co-clustering+based+on+entropy+splitting)|15| -|[Fast approximation of steiner trees in large graphs](https://doi.org/10.1145/2396761.2398460)|Andrey Gubichev, Thomas Neumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+approximation+of+steiner+trees+in+large+graphs)|15| -|[What is happening right now ... that interests me?: online topic discovery and recommendation in twitter](https://doi.org/10.1145/2396761.2398479)|Ernesto DiazAviles, Lucas Drumond, Zeno Gantner, Lars SchmidtThieme, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+happening+right+now+...+that+interests+me?:+online+topic+discovery+and+recommendation+in+twitter)|15| -|[Automatic image annotation using tag-related random search over visual neighbors](https://doi.org/10.1145/2396761.2398517)|Zijia Lin, Guiguang Ding, Mingqing Hu, Jianmin Wang, Jiaguang Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+image+annotation+using+tag-related+random+search+over+visual+neighbors)|15| -|[Leveraging tagging for neighborhood-aware probabilistic matrix factorization](https://doi.org/10.1145/2396761.2398531)|Le Wu, Enhong Chen, Qi Liu, Linli Xu, Tengfei Bao, Lei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+tagging+for+neighborhood-aware+probabilistic+matrix+factorization)|15| -|[Sentiment-focused web crawling](https://doi.org/10.1145/2396761.2398564)|A. Gural Vural, Berkant Barla Cambazoglu, Pinar Senkul||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment-focused+web+crawling)|15| -|[Efficient logging for enterprise workloads on column-oriented in-memory databases](https://doi.org/10.1145/2396761.2398578)|Johannes Wust, JoosHendrik Boese, Frank Renkes, Sebastian Blessing, Jens Krüger, Hasso Plattner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+logging+for+enterprise+workloads+on+column-oriented+in-memory+databases)|15| -|[Location selection for utility maximization with capacity constraints](https://doi.org/10.1145/2396761.2398592)|Yu Sun, Jin Huang, Yueguo Chen, Rui Zhang, Xiaoyong Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+selection+for+utility+maximization+with+capacity+constraints)|15| -|[On bundle configuration for viral marketing in social networks](https://doi.org/10.1145/2396761.2398608)|DeNian Yang, WangChien Lee, NaiHui Chia, Mao Ye, HuiJu Hung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+bundle+configuration+for+viral+marketing+in+social+networks)|15| -|[A tag-centric discriminative model for web objects classification](https://doi.org/10.1145/2396761.2398612)|Lina Yao, Quan Z. Sheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tag-centric+discriminative+model+for+web+objects+classification)|15| -|[A tensor encoding model for semantic processing](https://doi.org/10.1145/2396761.2398617)|Michael Symonds, Peter D. Bruza, Laurianne Sitbon, Ian W. Turner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tensor+encoding+model+for+semantic+processing)|15| -|[Learning to predict the cost-per-click for your ad words](https://doi.org/10.1145/2396761.2398623)|ChiehJen Wang, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+predict+the+cost-per-click+for+your+ad+words)|15| -|[A constraint to automatically regulate document-length normalisation](https://doi.org/10.1145/2396761.2398662)|Ronan Cummins, Colm O'Riordan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+constraint+to+automatically+regulate+document-length+normalisation)|15| -|[Question-answer topic model for question retrieval in community question answering](https://doi.org/10.1145/2396761.2398669)|Zongcheng Ji, Fei Xu, Bin Wang, Ben He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question-answer+topic+model+for+question+retrieval+in+community+question+answering)|15| -|[Improving the performance of the reinforcement learning model for answering complex questions](https://doi.org/10.1145/2396761.2398676)|Yllias Chali, Sadid A. Hasan, Kaisar Imam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+the+performance+of+the+reinforcement+learning+model+for+answering+complex+questions)|15| -|[Estimating query difficulty for news prediction retrieval](https://doi.org/10.1145/2396761.2398707)|Nattiya Kanhabua, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+query+difficulty+for+news+prediction+retrieval)|15| -|[Mining topic-level opinion influence in microblog](https://doi.org/10.1145/2396761.2398473)|Daifeng Li, Xin Shuai, Gordon GuoZheng Sun, Jie Tang, Ying Ding, Zhipeng Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+topic-level+opinion+influence+in+microblog)|14| -|[Swimming against the streamz: search and analytics over the enterprise activity stream](https://doi.org/10.1145/2396761.2398478)|Ido Guy, Tal Steier, Maya Barnea, Inbal Ronen, Tal Daniel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Swimming+against+the+streamz:+search+and+analytics+over+the+enterprise+activity+stream)|14| -|[Exploiting enriched contextual information for mobile app classification](https://doi.org/10.1145/2396761.2398484)|Hengshu Zhu, Huanhuan Cao, Enhong Chen, Hui Xiong, Jilei Tian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+enriched+contextual+information+for+mobile+app+classification)|14| -|[Preprocessing of informal mathematical discourse in context ofcontrolled natural language](https://doi.org/10.1145/2396761.2398487)|Raúl Ernesto Gutiérrez de Piñerez Reyes, Juan Francisco DíazFrías||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Preprocessing+of+informal+mathematical+discourse+in+context+ofcontrolled+natural+language)|14| -|[Time-aware topic recommendation based on micro-blogs](https://doi.org/10.1145/2396761.2398492)|Huizhi Liang, Yue Xu, Dian Tjondronegoro, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-aware+topic+recommendation+based+on+micro-blogs)|14| -|[Community-based classification of noun phrases in twitter](https://doi.org/10.1145/2396761.2398501)|Freddy Chong Tat Chua, William W. Cohen, Justin Betteridge, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-based+classification+of+noun+phrases+in+twitter)|14| -|[Collaborative ranking: improving the relevance for tail queries](https://doi.org/10.1145/2396761.2398540)|Ke Zhou, Xin Li, Hongyuan Zha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+ranking:+improving+the+relevance+for+tail+queries)|14| -|[CONSENTO: a new framework for opinion based entity search and summarization](https://doi.org/10.1145/2396761.2398547)|Jaehoon Choi, Donghyeon Kim, Seongsoon Kim, Junkyu Lee, Sangrak Lim, Sunwon Lee, Jaewoo Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONSENTO:+a+new+framework+for+opinion+based+entity+search+and+summarization)|14| -|[A comprehensive analysis of parameter settings for novelty-biased cumulative gain](https://doi.org/10.1145/2396761.2398550)|Teerapong Leelanupab, Guido Zuccon, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+comprehensive+analysis+of+parameter+settings+for+novelty-biased+cumulative+gain)|14| -|[Predicting web search success with fine-grained interaction data](https://doi.org/10.1145/2396761.2398570)|Qi Guo, Dmitry Lagun, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+web+search+success+with+fine-grained+interaction+data)|14| -|[Stochastic simulation of time-biased gain](https://doi.org/10.1145/2396761.2398568)|Mark D. Smucker, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Stochastic+simulation+of+time-biased+gain)|14| -|[On skyline groups](https://doi.org/10.1145/2396761.2398585)|Chengkai Li, Nan Zhang, Naeemul Hassan, Sundaresan Rajasekaran, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+skyline+groups)|14| -|[Credibility-based product ranking for C2C transactions](https://doi.org/10.1145/2396761.2398591)|Rong Zhang, Chaofeng Sha, Minqi Zhou, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Credibility-based+product+ranking+for+C2C+transactions)|14| -|[Star-Join: spatio-textual similarity join](https://doi.org/10.1145/2396761.2398600)|Sitong Liu, Guoliang Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Star-Join:+spatio-textual+similarity+join)|14| -|[A word-order based graph representation for relevance identification](https://doi.org/10.1145/2396761.2398632)|Lakshmi Ramachandran, Edward F. Gehringer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+word-order+based+graph+representation+for+relevance+identification)|14| -|[Tracing clusters in evolving graphs with node attributes](https://doi.org/10.1145/2396761.2398633)|Brigitte Boden, Stephan Günnemann, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracing+clusters+in+evolving+graphs+with+node+attributes)|14| -|[Prediction of retweet cascade size over time](https://doi.org/10.1145/2396761.2398634)|Andrey Kupavskii, Liudmila Ostroumova, Alexey Umnov, Svyatoslav Usachev, Pavel Serdyukov, Gleb Gusev, Andrey Kustarev||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Prediction+of+retweet+cascade+size+over+time)|14| -|[Serial position effects of clicking behavior on result pages returned by search engines](https://doi.org/10.1145/2396761.2398654)|Mingda Wu, Shan Jiang, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Serial+position+effects+of+clicking+behavior+on+result+pages+returned+by+search+engines)|14| -|[Towards measuring the visualness of a concept](https://doi.org/10.1145/2396761.2398655)|JinWoo Jeong, XinJing Wang, DongHo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+measuring+the+visualness+of+a+concept)|14| -|[Predicting the performance of passage retrieval for question answering](https://doi.org/10.1145/2396761.2398664)|Eyal Krikon, David Carmel, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+performance+of+passage+retrieval+for+question+answering)|14| -|[TwiSent: a multistage system for analyzing sentiment in twitter](https://doi.org/10.1145/2396761.2398684)|Subhabrata Mukherjee, Akshat Malu, Balamurali A. R., Pushpak Bhattacharyya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TwiSent:+a+multistage+system+for+analyzing+sentiment+in+twitter)|14| -|[A scalable approach for performing proximal search for verbose patent search queries](https://doi.org/10.1145/2396761.2398702)|Sumit Bhatia, Bin He, Qi He, W. Scott Spangler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+scalable+approach+for+performing+proximal+search+for+verbose+patent+search+queries)|14| -|[Contextual evaluation of query reformulations in a search session by user simulation](https://doi.org/10.1145/2396761.2398710)|Jiepu Jiang, Daqing He, Shuguang Han, Zhen Yue, Chaoqun Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextual+evaluation+of+query+reformulations+in+a+search+session+by+user+simulation)|14| -|[AMADA: web data repositories in the amazon cloud](https://doi.org/10.1145/2396761.2398749)|Andrés ArandaAndújar, Francesca Bugiotti, Jesús CamachoRodríguez, Dario Colazzo, François Goasdoué, Zoi Kaoudi, Ioana Manolescu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AMADA:+web+data+repositories+in+the+amazon+cloud)|14| +|[Hierarchical target type identification for entity-oriented queries](https://doi.org/10.1145/2396761.2398648)|Krisztian Balog, Robert Neumayer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+target+type+identification+for+entity-oriented+queries)|18| +|[A graph-based approach for ontology population with named entities](https://doi.org/10.1145/2396761.2396807)|Wei Shen, Jianyong Wang, Ping Luo, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+graph-based+approach+for+ontology+population+with+named+entities)|17| +|[Document-topic hierarchies from document graphs](https://doi.org/10.1145/2396761.2396843)|Tim Weninger, Yonatan Bisk, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document-topic+hierarchies+from+document+graphs)|17| +|[A model-based approach for RFID data stream cleansing](https://doi.org/10.1145/2396761.2396871)|Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+model-based+approach+for+RFID+data+stream+cleansing)|17| +|[PRemiSE: personalized news recommendation via implicit social experts](https://doi.org/10.1145/2396761.2398482)|Chen Lin, Runquan Xie, Lei Li, Zhenhua Huang, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRemiSE:+personalized+news+recommendation+via+implicit+social+experts)|17| +|[Differences in effectiveness across sub-collections](https://doi.org/10.1145/2396761.2398553)|Mark Sanderson, Andrew Turpin, Ying Zhang, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differences+in+effectiveness+across+sub-collections)|17| +|[Sort-based query-adaptive loading of R-trees](https://doi.org/10.1145/2396761.2398577)|Daniar Achakeev, Bernhard Seeger, Peter Widmayer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sort-based+query-adaptive+loading+of+R-trees)|17| +|[Discovering conditional inclusion dependencies](https://doi.org/10.1145/2396761.2398580)|Jana Bauckmann, Ziawasch Abedjan, Ulf Leser, Heiko Müller, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+conditional+inclusion+dependencies)|17| +|[An evaluation of corpus-driven measures of medical concept similarity for information retrieval](https://doi.org/10.1145/2396761.2398661)|Bevan Koopman, Guido Zuccon, Peter Bruza, Laurianne Sitbon, Michael Lawley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+evaluation+of+corpus-driven+measures+of+medical+concept+similarity+for+information+retrieval)|17| +|[PicAlert!: a system for privacy-aware image classification and retrieval](https://doi.org/10.1145/2396761.2398735)|Sergej Zerr, Stefan Siersdorfer, Jonathon S. Hare||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PicAlert!:+a+system+for+privacy-aware+image+classification+and+retrieval)|17| +|[Visual appearance of display ads and its effect on click through rate](https://doi.org/10.1145/2396761.2396826)|Javad Azimi, Ruofei Zhang, Yang Zhou, Vidhya Navalpakkam, Jianchang Mao, Xiaoli Z. Fern||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visual+appearance+of+display+ads+and+its+effect+on+click+through+rate)|16| +|[You can stop early with COLA: online processing of aggregate queries in the cloud](https://doi.org/10.1145/2396761.2398423)|Yingjie Shi, Xiaofeng Meng, Fusheng Wang, Yantao Gan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=You+can+stop+early+with+COLA:+online+processing+of+aggregate+queries+in+the+cloud)|16| +|[Degree relations of triangles in real-world networks and graph models](https://doi.org/10.1145/2396761.2398503)|Nurcan Durak, Ali Pinar, Tamara G. Kolda, C. Seshadhri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Degree+relations+of+triangles+in+real-world+networks+and+graph+models)|16| +|[Towards jointly extracting aspects and aspect-specific sentiment knowledge](https://doi.org/10.1145/2396761.2398539)|Xueke Xu, Songbo Tan, Yue Liu, Xueqi Cheng, Zheng Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+jointly+extracting+aspects+and+aspect-specific+sentiment+knowledge)|16| +|[Star-Join: spatio-textual similarity join](https://doi.org/10.1145/2396761.2398600)|Sitong Liu, Guoliang Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Star-Join:+spatio-textual+similarity+join)|16| +|[Coarse-to-fine sentence-level emotion classification based on the intra-sentence features and sentential context](https://doi.org/10.1145/2396761.2398665)|Jun Xu, Ruifeng Xu, Qin Lu, Xiaolong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Coarse-to-fine+sentence-level+emotion+classification+based+on+the+intra-sentence+features+and+sentential+context)|16| +|[Latent topics in graph-structured data](https://doi.org/10.1145/2396761.2398718)|Christoph Böhm, Gjergji Kasneci, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latent+topics+in+graph-structured+data)|16| +|[Incorporating variability in user behavior into systems based evaluation](https://doi.org/10.1145/2396761.2396782)|Ben Carterette, Evangelos Kanoulas, Emine Yilmaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+variability+in+user+behavior+into+systems+based+evaluation)|15| +|[Automated feature weighting in naive bayes for high-dimensional data classification](https://doi.org/10.1145/2396761.2398426)|Lifei Chen, Shengrui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+feature+weighting+in+naive+bayes+for+high-dimensional+data+classification)|15| +|[Swimming against the streamz: search and analytics over the enterprise activity stream](https://doi.org/10.1145/2396761.2398478)|Ido Guy, Tal Steier, Maya Barnea, Inbal Ronen, Tal Daniel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Swimming+against+the+streamz:+search+and+analytics+over+the+enterprise+activity+stream)|15| +|[Joint bilingual name tagging for parallel corpora](https://doi.org/10.1145/2396761.2398506)|Qi Li, Haibo Li, Heng Ji, Wen Wang, Jing Zheng, Fei Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+bilingual+name+tagging+for+parallel+corpora)|15| +|[Task tours: helping users tackle complex search tasks](https://doi.org/10.1145/2396761.2398537)|Ahmed Hassan Awadallah, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Task+tours:+helping+users+tackle+complex+search+tasks)|15| +|[Tweet classification based on their lifetime duration](https://doi.org/10.1145/2396761.2398642)|Hikaru Takemura, Keishi Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tweet+classification+based+on+their+lifetime+duration)|15| +|[Scalable collaborative filtering using incremental update and local link prediction](https://doi.org/10.1145/2396761.2398643)|Xiao Yang, Zhaoxin Zhang, Ke Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+collaborative+filtering+using+incremental+update+and+local+link+prediction)|15| +|[Composing activity groups in social networks](https://doi.org/10.1145/2396761.2398644)|ChengTe Li, ManKwan Shan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Composing+activity+groups+in+social+networks)|15| +|[Survival analysis for freshness in microblogging search](https://doi.org/10.1145/2396761.2398672)|Gianni Amati, Giuseppe Amodeo, Carlo Gaibisso||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Survival+analysis+for+freshness+in+microblogging+search)|15| +|[Predicting query performance for fusion-based retrieval](https://doi.org/10.1145/2396761.2396865)|Gad Markovits, Anna Shtok, Oren Kurland, David Carmel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+query+performance+for+fusion-based+retrieval)|14| +|[An automatic blocking mechanism for large-scale de-duplication tasks](https://doi.org/10.1145/2396761.2398403)|Anish Das Sarma, Ankur Jain, Ashwin Machanavajjhala, Philip Bohannon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+automatic+blocking+mechanism+for+large-scale+de-duplication+tasks)|14| +|[Efficient influence-based processing of market research queries](https://doi.org/10.1145/2396761.2398420)|Anastasios Arvanitis, Antonios Deligiannakis, Yannis Vassiliou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+influence-based+processing+of+market+research+queries)|14| +|[Joint relevance and answer quality learning for question routing in community QA](https://doi.org/10.1145/2396761.2398459)|Guangyou Zhou, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+relevance+and+answer+quality+learning+for+question+routing+in+community+QA)|14| +|[Reconciling ontologies and the web of data](https://doi.org/10.1145/2396761.2398467)|Ziawasch Abedjan, Johannes Lorey, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reconciling+ontologies+and+the+web+of+data)|14| +|[Unsupervised discovery of opposing opinion networks from forum discussions](https://doi.org/10.1145/2396761.2398489)|Yue Lu, Hongning Wang, ChengXiang Zhai, Dan Roth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+discovery+of+opposing+opinion+networks+from+forum+discussions)|14| +|[Finding nuggets in IP portfolios: core patent mining through textual temporal analysis](https://doi.org/10.1145/2396761.2398524)|Po Hu, Minlie Huang, Peng Xu, Weichang Li, Adam K. Usadi, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+nuggets+in+IP+portfolios:+core+patent+mining+through+textual+temporal+analysis)|14| +|[Enhancing product search by best-selling prediction in e-commerce](https://doi.org/10.1145/2396761.2398671)|Bo Long, Jiang Bian, Anlei Dong, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+product+search+by+best-selling+prediction+in+e-commerce)|14| +|[DQR: a probabilistic approach to diversified query recommendation](https://doi.org/10.1145/2396761.2396768)|Ruirui Li, Ben Kao, Bin Bi, Reynold Cheng, Eric Lo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DQR:+a+probabilistic+approach+to+diversified+query+recommendation)|13| +|[On caption bias in interleaving experiments](https://doi.org/10.1145/2396761.2396780)|Katja Hofmann, Fritz Behr, Filip Radlinski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+caption+bias+in+interleaving+experiments)|13| +|[Spatial influence vs. community influence: modeling the global spread of social media](https://doi.org/10.1145/2396761.2396883)|Krishna Yeswanth Kamath, James Caverlee, Zhiyuan Cheng, Daniel Z. Sui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+influence+vs.+community+influence:+modeling+the+global+spread+of+social+media)|13| +|[TUT: a statistical model for detecting trends, topics and user interests in social media](https://doi.org/10.1145/2396761.2396884)|Xuning Tang, Christopher C. Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TUT:+a+statistical+model+for+detecting+trends,+topics+and+user+interests+in+social+media)|13| +|[Acquiring temporal constraints between relations](https://doi.org/10.1145/2396761.2396886)|Partha Pratim Talukdar, Derry Wijaya, Tom M. Mitchell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Acquiring+temporal+constraints+between+relations)|13| |[Adapting vector space model to ranking-based collaborative filtering](https://doi.org/10.1145/2396761.2398458)|Shuaiqiang Wang, Jiankai Sun, Byron J. Gao, Jun Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adapting+vector+space+model+to+ranking-based+collaborative+filtering)|13| -|[Reconciling ontologies and the web of data](https://doi.org/10.1145/2396761.2398467)|Ziawasch Abedjan, Johannes Lorey, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reconciling+ontologies+and+the+web+of+data)|13| -|[Discovering personally semantic places from GPS trajectories](https://doi.org/10.1145/2396761.2398471)|Mingqi Lv, Ling Chen, Gencai Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+personally+semantic+places+from+GPS+trajectories)|13| -|[iSampling: framework for developing sampling methods considering user's interest](https://doi.org/10.1145/2396761.2398494)|Jinoh Oh, Hwanjo Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iSampling:+framework+for+developing+sampling+methods+considering+user's+interest)|13| -|[Providing grades and feedback for student summaries by ontology-based information extraction](https://doi.org/10.1145/2396761.2398505)|Fernando Gutierrez, Dejing Dou, Stephen Fickas, Gina Griffiths||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Providing+grades+and+feedback+for+student+summaries+by+ontology-based+information+extraction)|13| -|[Content-based relevance estimation on the web using inter-document similarities](https://doi.org/10.1145/2396761.2398514)|Fiana Raiber, Oren Kurland, Moshe Tennenholtz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-based+relevance+estimation+on+the+web+using+inter-document+similarities)|13| -|[Variance maximization via noise injection for active sampling in learning to rank](https://doi.org/10.1145/2396761.2398522)|Wenbin Cai, Ya Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Variance+maximization+via+noise+injection+for+active+sampling+in+learning+to+rank)|13| -|[Do ads compete or collaborate?: designing click models with full relationship incorporated](https://doi.org/10.1145/2396761.2398528)|Xin Xin, Irwin King, Ritesh Agrawal, Michael R. Lyu, Heyan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Do+ads+compete+or+collaborate?:+designing+click+models+with+full+relationship+incorporated)|13| -|[Differences in effectiveness across sub-collections](https://doi.org/10.1145/2396761.2398553)|Mark Sanderson, Andrew Turpin, Ying Zhang, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differences+in+effectiveness+across+sub-collections)|13| -|[Full-text citation analysis: enhancing bibliometric and scientific publication ranking](https://doi.org/10.1145/2396761.2398555)|Xiaozhong Liu, Jinsong Zhang, Chun Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Full-text+citation+analysis:+enhancing+bibliometric+and+scientific+publication+ranking)|13| -|[GTE: a distributional second-order co-occurrence approach to improve the identification of top relevant dates in web snippets](https://doi.org/10.1145/2396761.2398567)|Ricardo Campos, Gaël Dias, Alípio Jorge, Celia Nunes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GTE:+a+distributional+second-order+co-occurrence+approach+to+improve+the+identification+of+top+relevant+dates+in+web+snippets)|13| -|[CloST: a hadoop-based storage system for big spatio-temporal data analytics](https://doi.org/10.1145/2396761.2398589)|Haoyu Tan, Wuman Luo, Lionel M. Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloST:+a+hadoop-based+storage+system+for+big+spatio-temporal+data+analytics)|13| -|[Author-conference topic-connection model for academic network search](https://doi.org/10.1145/2396761.2398597)|Jianwen Wang, Xiaohua Hu, Xinhui Tu, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Author-conference+topic-connection+model+for+academic+network+search)|13| -|[Applying weighted queries on probabilistic databases](https://doi.org/10.1145/2396761.2398603)|Sebastian Lehrack||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Applying+weighted+queries+on+probabilistic+databases)|13| -|[Learning to rank for hybrid recommendation](https://doi.org/10.1145/2396761.2398610)|Jiankai Sun, Shuaiqiang Wang, Byron J. Gao, Jun Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+hybrid+recommendation)|13| -|[Infobox suggestion for Wikipedia entities](https://doi.org/10.1145/2396761.2398627)|Afroza Sultana, Quazi Mainul Hasan, Ashis Kumer Biswas, Soumyava Das, Habibur Rahman, Chris H. Q. Ding, Chengkai Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Infobox+suggestion+for+Wikipedia+entities)|13| -|[On active learning in hierarchical classification](https://doi.org/10.1145/2396761.2398668)|Yu Cheng, Kunpeng Zhang, Yusheng Xie, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+active+learning+in+hierarchical+classification)|13| -|[Evaluating reward and risk for vertical selection](https://doi.org/10.1145/2396761.2398709)|Ke Zhou, Ronan Cummins, Mounia Lalmas, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+reward+and+risk+for+vertical+selection)|13| -|[PRAVDA-live: interactive knowledge harvesting](https://doi.org/10.1145/2396761.2398722)|Yafang Wang, Maximilian Dylla, Zhaochun Ren, Marc Spaniol, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRAVDA-live:+interactive+knowledge+harvesting)|13| -|[CarbonDB: a semantic life cycle inventory database](https://doi.org/10.1145/2396761.2398725)|Benjamin Bertin, VasileMarian Scuturici, JeanMarie Pinon, Emmanuel Risler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CarbonDB:+a+semantic+life+cycle+inventory+database)|13| -|[PLEAD 2012: politics, elections and data](https://doi.org/10.1145/2396761.2398759)|Ingmar Weber, AnaMaria Popescu, Marco Pennacchiotti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PLEAD+2012:+politics,+elections+and+data)|13| -|[DTMBIO 2012: international workshop on data and text mining in biomedical informatics](https://doi.org/10.1145/2396761.2398758)|Min Song, Doheon Lee, Hua Xu, Sophia Ananiadou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DTMBIO+2012:+international+workshop+on+data+and+text+mining+in+biomedical+informatics)|13| -|[Real-time bid optimization for group-buying ads](https://doi.org/10.1145/2396761.2398502)|Raju Balakrishnan, Rushi P. Bhatt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+bid+optimization+for+group-buying+ads)|12| -|[Dynamic effects of ad impressions on commercial actions in display advertising](https://doi.org/10.1145/2396761.2398510)|Joel Barajas, Ram Akella, Marius Holtan, Jaimie Kwon, Aaron Flores, Victor Andrei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+effects+of+ad+impressions+on+commercial+actions+in+display+advertising)|12| -|[A hybrid approach for efficient provenance storage](https://doi.org/10.1145/2396761.2398511)|Yulai Xie, Dan Feng, Zhipeng Tan, Lei Chen, KiranKumar MuniswamyReddy, Yan Li, Darrell D. E. Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+hybrid+approach+for+efficient+provenance+storage)|12| -|[Towards jointly extracting aspects and aspect-specific sentiment knowledge](https://doi.org/10.1145/2396761.2398539)|Xueke Xu, Songbo Tan, Yue Liu, Xueqi Cheng, Zheng Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+jointly+extracting+aspects+and+aspect-specific+sentiment+knowledge)|12| -|[Structured query reformulations in commerce search](https://doi.org/10.1145/2396761.2398538)|Sreenivas Gollapudi, Samuel Ieong, Anitha Kannan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+query+reformulations+in+commerce+search)|12| -|[PolariCQ: polarity classification of political quotations](https://doi.org/10.1145/2396761.2398549)|Rawia Awadallah, Maya Ramanath, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PolariCQ:+polarity+classification+of+political+quotations)|12| -|[A unified optimization framework for auction and guaranteed delivery in online advertising](https://doi.org/10.1145/2396761.2398561)|Konstantin Salomatin, TieYan Liu, Yiming Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+optimization+framework+for+auction+and+guaranteed+delivery+in+online+advertising)|12| -|[Fast top-k similarity queries via matrix compression](https://doi.org/10.1145/2396761.2398574)|Yucheng Low, Alice X. Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+top-k+similarity+queries+via+matrix+compression)|12| -|[Loyalty-based selection: retrieving objects that persistently satisfy criteria](https://doi.org/10.1145/2396761.2398599)|Zhitao Shen, Muhammad Aamir Cheema, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Loyalty-based+selection:+retrieving+objects+that+persistently+satisfy+criteria)|12| -|[Optimizing data migration for cloud-based key-value stores](https://doi.org/10.1145/2396761.2398602)|Xiulei Qin, Wenbo Zhang, Wei Wang, Jun Wei, Xin Zhao, Tao Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+data+migration+for+cloud-based+key-value+stores)|12| -|[The twitaholic next door.: scalable friend recommender system using a concept-sensitive hash function](https://doi.org/10.1145/2396761.2398619)|Patrick Bamba, Julien Subercaze, Christophe Gravier, Nabil Benmira, Jimi Fontaine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+twitaholic+next+door.:+scalable+friend+recommender+system+using+a+concept-sensitive+hash+function)|12| -|[Top-N recommendation through belief propagation](https://doi.org/10.1145/2396761.2398636)|Jiwoon Ha, SoonHyoung Kwon, SangWook Kim, Christos Faloutsos, Sunju Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-N+recommendation+through+belief+propagation)|12| -|[An unsupervised method for author extraction from web pages containing user-generated content](https://doi.org/10.1145/2396761.2398647)|Jing Liu, Xinying Song, Jingtian Jiang, ChinYew Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+unsupervised+method+for+author+extraction+from+web+pages+containing+user-generated+content)|12| -|[Hierarchical image annotation using semantic hierarchies](https://doi.org/10.1145/2396761.2398659)|Hichem Bannour, Céline Hudelot||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+image+annotation+using+semantic+hierarchies)|12| -|[Climbing the app wall: enabling mobile app discovery through context-aware recommendations](https://doi.org/10.1145/2396761.2398683)|Alexandros Karatzoglou, Linas Baltrunas, Karen Church, Matthias Böhmer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Climbing+the+app+wall:+enabling+mobile+app+discovery+through+context-aware+recommendations)|12| -|[Data filtering in humor generation: comparative analysis of hit rate and co-occurrence rankings as a method to choose usable pun candidates](https://doi.org/10.1145/2396761.2398698)|Pawel Dybala, Rafal Rzepka, Kenji Araki, Kohichi Sayama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+filtering+in+humor+generation:+comparative+analysis+of+hit+rate+and+co-occurrence+rankings+as+a+method+to+choose+usable+pun+candidates)|12| -|[Information-complete and redundancy-free keyword search over large data graphs](https://doi.org/10.1145/2396761.2398712)|Byron J. Gao, Zhumin Chen, Qi Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information-complete+and+redundancy-free+keyword+search+over+large+data+graphs)|12| -|[Enabling ontology based semantic queries in biomedical database systems](https://doi.org/10.1145/2396761.2398715)|Shuai Zheng, Fusheng Wang, James J. Lu, Joel H. Saltz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+ontology+based+semantic+queries+in+biomedical+database+systems)|12| -|[4Is of social bully filtering: identity, inference, influence, and intervention](https://doi.org/10.1145/2396761.2398723)|Yunfei Chen, Lanbo Zhang, Aaron Michelony, Yi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=4Is+of+social+bully+filtering:+identity,+inference,+influence,+and+intervention)|12| -|[Delineating social network data anonymization via random edge perturbation](https://doi.org/10.1145/2396761.2396823)|Mingqiang Xue, Panagiotis Karras, Chedy Raïssi, Panos Kalnis, Hung Keng Pung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Delineating+social+network+data+anonymization+via+random+edge+perturbation)|11| -|[Web-scale multi-task feature selection for behavioral targeting](https://doi.org/10.1145/2396761.2398508)|Amr Ahmed, Mohamed Aly, Abhimanyu Das, Alexander J. Smola, Tasos Anastasakos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web-scale+multi-task+feature+selection+for+behavioral+targeting)|11| -|[Balanced coverage of aspects for text summarization](https://doi.org/10.1145/2396761.2398509)|Takuya Makino, Hiroya Takamura, Manabu Okumura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balanced+coverage+of+aspects+for+text+summarization)|11| -|[Mining noisy tagging from multi-label space](https://doi.org/10.1145/2396761.2398545)|Zhongang Qi, Ming Yang, Zhongfei (Mark) Zhang, Zhengyou Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+noisy+tagging+from+multi-label+space)|11| -|[Learning from mistakes: towards a correctable learning algorithm](https://doi.org/10.1145/2396761.2398546)|Karthik Raman, Krysta M. Svore, Ran GiladBachrach, Christopher J. C. Burges||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+from+mistakes:+towards+a+correctable+learning+algorithm)|11| -|[Location-sensitive resources recommendation in social tagging systems](https://doi.org/10.1145/2396761.2398552)|Chang Wan, Ben Kao, David W. Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-sensitive+resources+recommendation+in+social+tagging+systems)|11| -|[User guided entity similarity search using meta-path selection in heterogeneous information networks](https://doi.org/10.1145/2396761.2398565)|Xiao Yu, Yizhou Sun, Brandon Norick, Tiancheng Mao, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+guided+entity+similarity+search+using+meta-path+selection+in+heterogeneous+information+networks)|11| -|[Clustering Wikipedia infoboxes to discover their types](https://doi.org/10.1145/2396761.2398588)|Thanh Hoang Nguyen, Huong Dieu Nguyen, Viviane Pereira Moreira, Juliana Freire||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+Wikipedia+infoboxes+to+discover+their+types)|11| -|[Entity resolution using search engine results](https://doi.org/10.1145/2396761.2398641)|Madian Khabsa, Pucktada Treeratpituk, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+resolution+using+search+engine+results)|11| -|[Composing activity groups in social networks](https://doi.org/10.1145/2396761.2398644)|ChengTe Li, ManKwan Shan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Composing+activity+groups+in+social+networks)|11| -|[A co-training based method for chinese patent semantic annotation](https://doi.org/10.1145/2396761.2398645)|Xu Chen, Zhiyong Peng, Cheng Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+co-training+based+method+for+chinese+patent+semantic+annotation)|11| -|[A picture paints a thousand words: a method of generating image-text timelines](https://doi.org/10.1145/2396761.2398679)|Shize Xu, Liang Kong, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+picture+paints+a+thousand+words:+a+method+of+generating+image-text+timelines)|11| -|[A new probabilistic model for top-k ranking problem](https://doi.org/10.1145/2396761.2398681)|Shuzi Niu, Yanyan Lan, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+probabilistic+model+for+top-k+ranking+problem)|11| -|[PhotoFall: discovering weblog stories through photographs](https://doi.org/10.1145/2396761.2398695)|Christopher Wienberg, Andrew S. Gordon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PhotoFall:+discovering+weblog+stories+through+photographs)|11| -|[InCaToMi: integrative causal topic miner between textual and non-textual time series data](https://doi.org/10.1145/2396761.2398727)|Hyun Duk Kim, ChengXiang Zhai, Thomas A. Rietz, Daniel Diermeier, Meichun Hsu, Malú Castellanos, Carlos Ceja Limon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=InCaToMi:+integrative+causal+topic+miner+between+textual+and+non-textual+time+series+data)|11| -|[A summarization tool for time-sensitive social media](https://doi.org/10.1145/2396761.2398730)|Walid Magdy, Ahmed M. Ali, Kareem Darwish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+summarization+tool+for+time-sensitive+social+media)|11| -|[Gumshoe quality toolkit: administering programmable search](https://doi.org/10.1145/2396761.2398737)|Zhuowei Bao, Benny Kimelfeld, Yunyao Li, Sriram Raghavan, Huahai Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gumshoe+quality+toolkit:+administering+programmable+search)|11| -|[Demonstrating ProApproX 2.0: a predictive query engine for probabilistic XML](https://doi.org/10.1145/2396761.2398744)|Asma Souihli, Pierre Senellart||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Demonstrating+ProApproX+2.0:+a+predictive+query+engine+for+probabilistic+XML)|11| -|[Fifth workshop on exploiting semantic annotations in information retrieval: ESAIR"12)](https://doi.org/10.1145/2396761.2398761)|Jaap Kamps, Jussi Karlgren, Peter Mika, Vanessa Murdock||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fifth+workshop+on+exploiting+semantic+annotations+in+information+retrieval:+ESAIR"12))|11| -|[PIKM 2012: 5th ACM workshop for PhD students in information and knowledge management](https://doi.org/10.1145/2396761.2398763)|Aparna S. Varde, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIKM+2012:+5th+ACM+workshop+for+PhD+students+in+information+and+knowledge+management)|11| -|[GRAFT: an approximate graphlet counting algorithm for large graph analysis](https://doi.org/10.1145/2396761.2398454)|Mahmudur Rahman, Mansurul Bhuiyan, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GRAFT:+an+approximate+graphlet+counting+algorithm+for+large+graph+analysis)|10| -|[Automatically embedding newsworthy links to articles](https://doi.org/10.1145/2396761.2398461)|Hakan Ceylan, Ioannis Arapakis, Pinar Donmez, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatically+embedding+newsworthy+links+to+articles)|10| -|[Effective and efficient?: bilingual sentiment lexicon extraction using collocation alignment](https://doi.org/10.1145/2396761.2398469)|Zheng Lin, Songbo Tan, Xueqi Cheng, Xueke Xu, Weisong Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+and+efficient?:+bilingual+sentiment+lexicon+extraction+using+collocation+alignment)|10| -|[gSCorr: modeling geo-social correlations for new check-ins on location-based social networks](https://doi.org/10.1145/2396761.2398477)|Huiji Gao, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=gSCorr:+modeling+geo-social+correlations+for+new+check-ins+on+location-based+social+networks)|10| -|[PathRank: a novel node ranking measure on a heterogeneous graph for recommender systems](https://doi.org/10.1145/2396761.2398488)|Sangkeun Lee, Sungchan Park, Minsuk Kahng, Sanggoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PathRank:+a+novel+node+ranking+measure+on+a+heterogeneous+graph+for+recommender+systems)|10| -|[Interactive and context-aware tag spell check and correction](https://doi.org/10.1145/2396761.2398534)|Francesco Bonchi, Ophir Frieder, Franco Maria Nardini, Fabrizio Silvestri, Hossein Vahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+and+context-aware+tag+spell+check+and+correction)|10| -|[BiasTrust: teaching biased users about controversial topics](https://doi.org/10.1145/2396761.2398541)|V. G. Vinod Vydiswaran, ChengXiang Zhai, Dan Roth, Peter Pirolli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BiasTrust:+teaching+biased+users+about+controversial+topics)|10| -|[Automatic query expansion based on tag recommendation](https://doi.org/10.1145/2396761.2398557)|Vitor Campos de Oliveira, Guilherme de Castro Mendes Gomes, Fabiano Belém, Wladmir C. Brandão, Jussara M. Almeida, Nivio Ziviani, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+query+expansion+based+on+tag+recommendation)|10| -|[Mining sentiment terminology through time](https://doi.org/10.1145/2396761.2398572)|Hadi Amiri, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+sentiment+terminology+through+time)|10| -|[SliceSort: efficient sorting of hierarchical data](https://doi.org/10.1145/2396761.2398583)|Quoc Trung Tran, CheeYong Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SliceSort:+efficient+sorting+of+hierarchical+data)|10| +|[Using program synthesis for social recommendations](https://doi.org/10.1145/2396761.2398507)|Alvin Cheung, Armando SolarLezama, Samuel Madden||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+program+synthesis+for+social+recommendations)|13| +|[From sBoW to dCoT marginalized encoders for text representation](https://doi.org/10.1145/2396761.2398536)|Zhixiang Eddie Xu, Minmin Chen, Kilian Q. Weinberger, Fei Sha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+sBoW+to+dCoT+marginalized+encoders+for+text+representation)|13| +|[Query recommendation for children](https://doi.org/10.1145/2396761.2398562)|Sergio Duarte Torres, Djoerd Hiemstra, Ingmar Weber, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+recommendation+for+children)|13| +|[Alternative assessor disagreement and retrieval depth](https://doi.org/10.1145/2396761.2396781)|William Webber, Praveen Chandar, Ben Carterette||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Alternative+assessor+disagreement+and+retrieval+depth)|12| +|[Collective intelligence in the online social network of yahoo!answers and its implications](https://doi.org/10.1145/2396761.2396821)|Ze Li, Haiying Shen, Joseph Edward Grant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+intelligence+in+the+online+social+network+of+yahoo!answers+and+its+implications)|12| +|[From face-to-face gathering to social structure](https://doi.org/10.1145/2396761.2396822)|Chunyan Wang, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+face-to-face+gathering+to+social+structure)|12| +|[A unified learning framework for auto face annotation by mining web facial images](https://doi.org/10.1145/2396761.2398444)|Dayong Wang, Steven ChuHong Hoi, Ying He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+learning+framework+for+auto+face+annotation+by+mining+web+facial+images)|12| +|[Influence and similarity on heterogeneous networks](https://doi.org/10.1145/2396761.2398453)|Guan Wang, Qingbo Hu, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+and+similarity+on+heterogeneous+networks)|12| +|[Relational co-clustering via manifold ensemble learning](https://doi.org/10.1145/2396761.2398498)|Ping Li, Jiajun Bu, Chun Chen, Zhanying He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relational+co-clustering+via+manifold+ensemble+learning)|12| +|[More than relevance: high utility query recommendation by mining users' search behaviors](https://doi.org/10.1145/2396761.2398523)|Xiaofei Zhu, Jiafeng Guo, Xueqi Cheng, Yanyan Lan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=More+than+relevance:+high+utility+query+recommendation+by+mining+users'+search+behaviors)|12| +|[BiasTrust: teaching biased users about controversial topics](https://doi.org/10.1145/2396761.2398541)|V. G. Vinod Vydiswaran, ChengXiang Zhai, Dan Roth, Peter Pirolli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BiasTrust:+teaching+biased+users+about+controversial+topics)|12| +|[Stochastic simulation of time-biased gain](https://doi.org/10.1145/2396761.2398568)|Mark D. Smucker, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Stochastic+simulation+of+time-biased+gain)|12| +|[Learning to rank for hybrid recommendation](https://doi.org/10.1145/2396761.2398610)|Jiankai Sun, Shuaiqiang Wang, Byron J. Gao, Jun Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+hybrid+recommendation)|12| +|[AMADA: web data repositories in the amazon cloud](https://doi.org/10.1145/2396761.2398749)|Andrés ArandaAndújar, Francesca Bugiotti, Jesús CamachoRodríguez, Dario Colazzo, François Goasdoué, Zoi Kaoudi, Ioana Manolescu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AMADA:+web+data+repositories+in+the+amazon+cloud)|12| +|[Multi-scale link prediction](https://doi.org/10.1145/2396761.2396792)|Donghyuk Shin, Si Si, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-scale+link+prediction)|11| +|[Local anomaly descriptor: a robust unsupervised algorithm for anomaly detection based on diffusion space](https://doi.org/10.1145/2396761.2396815)|Hao Huang, Hong Qin, Shinjae Yoo, Dantong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+anomaly+descriptor:+a+robust+unsupervised+algorithm+for+anomaly+detection+based+on+diffusion+space)|11| +|[G-WSTD: a framework for geographic web search topic discovery](https://doi.org/10.1145/2396761.2398414)|Di Jiang, Jan Vosecky, Kenneth WaiTing Leung, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-WSTD:+a+framework+for+geographic+web+search+topic+discovery)|11| +|[Iterative relevance feedback with adaptive exploration/exploitation trade-off](https://doi.org/10.1145/2396761.2398435)|Nicolae Suditu, François Fleuret||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Iterative+relevance+feedback+with+adaptive+exploration/exploitation+trade-off)|11| +|[What is happening right now ... that interests me?: online topic discovery and recommendation in twitter](https://doi.org/10.1145/2396761.2398479)|Ernesto DiazAviles, Lucas Drumond, Zeno Gantner, Lars SchmidtThieme, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+happening+right+now+...+that+interests+me?:+online+topic+discovery+and+recommendation+in+twitter)|11| +|[Full-text citation analysis: enhancing bibliometric and scientific publication ranking](https://doi.org/10.1145/2396761.2398555)|Xiaozhong Liu, Jinsong Zhang, Chun Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Full-text+citation+analysis:+enhancing+bibliometric+and+scientific+publication+ranking)|11| +|[You should read this! let me explain you why: explaining news recommendations to users](https://doi.org/10.1145/2396761.2398559)|Roi Blanco, Diego Ceccarelli, Claudio Lucchese, Raffaele Perego, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=You+should+read+this!+let+me+explain+you+why:+explaining+news+recommendations+to+users)|11| +|[A unified optimization framework for auction and guaranteed delivery in online advertising](https://doi.org/10.1145/2396761.2398561)|Konstantin Salomatin, TieYan Liu, Yiming Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+optimization+framework+for+auction+and+guaranteed+delivery+in+online+advertising)|11| +|[GTE: a distributional second-order co-occurrence approach to improve the identification of top relevant dates in web snippets](https://doi.org/10.1145/2396761.2398567)|Ricardo Campos, Gaël Dias, Alípio Jorge, Celia Nunes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GTE:+a+distributional+second-order+co-occurrence+approach+to+improve+the+identification+of+top+relevant+dates+in+web+snippets)|11| +|[Efficient logging for enterprise workloads on column-oriented in-memory databases](https://doi.org/10.1145/2396761.2398578)|Johannes Wust, JoosHendrik Boese, Frank Renkes, Sebastian Blessing, Jens Krüger, Hasso Plattner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+logging+for+enterprise+workloads+on+column-oriented+in-memory+databases)|11| +|[Mining advices from weblogs](https://doi.org/10.1145/2396761.2398637)|Alfan Farizki Wicaksono, SungHyon Myaeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+advices+from+weblogs)|11| +|[On using category experts for improving the performance and accuracy in recommender systems](https://doi.org/10.1145/2396761.2398639)|WonSeok Hwang, HoJong Lee, SangWook Kim, Minsoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+using+category+experts+for+improving+the+performance+and+accuracy+in+recommender+systems)|11| +|[A constraint to automatically regulate document-length normalisation](https://doi.org/10.1145/2396761.2398662)|Ronan Cummins, Colm O'Riordan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+constraint+to+automatically+regulate+document-length+normalisation)|11| +|[Decomposition-by-normalization (DBN): leveraging approximate functional dependencies for efficient tensor decomposition](https://doi.org/10.1145/2396761.2396809)|Mijung Kim, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Decomposition-by-normalization+(DBN):+leveraging+approximate+functional+dependencies+for+efficient+tensor+decomposition)|10| +|[Metaphor: a system for related search recommendations](https://doi.org/10.1145/2396761.2396847)|Azarias Reda, Yubin Park, Mitul Tiwari, Christian Posse, Sam Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Metaphor:+a+system+for+related+search+recommendations)|10| +|[Segmenting web-domains and hashtags using length specific models](https://doi.org/10.1145/2396761.2398410)|Sriram Srinivasan, Sourangshu Bhattacharya, Rudrasis Chakraborty||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Segmenting+web-domains+and+hashtags+using+length+specific+models)|10| +|[A practical concurrent index for solid-state drives](https://doi.org/10.1145/2396761.2398437)|Risi Thonangi, Shivnath Babu, Jun Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+practical+concurrent+index+for+solid-state+drives)|10| +|[Authentication of moving range queries](https://doi.org/10.1145/2396761.2398441)|Duncan Yung, Eric Lo, Man Lung Yiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Authentication+of+moving+range+queries)|10| +|[Graph-based workflow recommendation: on improving business process modeling](https://doi.org/10.1145/2396761.2398466)|Bin Cao, Jianwei Yin, ShuiGuang Deng, Dongjing Wang, Zhaohui Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+workflow+recommendation:+on+improving+business+process+modeling)|10| +|[The early-adopter graph and its application to web-page recommendation](https://doi.org/10.1145/2396761.2398497)|Ida Mele, Francesco Bonchi, Aristides Gionis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+early-adopter+graph+and+its+application+to+web-page+recommendation)|10| +|[SonetRank: leveraging social networks to personalize search](https://doi.org/10.1145/2396761.2398569)|Abhijith Kashyap, Reza Amini, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SonetRank:+leveraging+social+networks+to+personalize+search)|10| |[Keyword-based k-nearest neighbor search in spatial databases](https://doi.org/10.1145/2396761.2398590)|Guoliang Li, Jing Xu, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Keyword-based+k-nearest+neighbor+search+in+spatial+databases)|10| -|[Accelerating locality preserving nonnegative matrix factorization](https://doi.org/10.1145/2396761.2398618)|Guanhong Yao, Deng Cai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accelerating+locality+preserving+nonnegative+matrix+factorization)|10| -|[An interaction framework of service-oriented ontology learning](https://doi.org/10.1145/2396761.2398626)|Jingsong Zhang, Yinglin Wang, Hao Wei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+interaction+framework+of+service-oriented+ontology+learning)|10| -|[Scalable collaborative filtering using incremental update and local link prediction](https://doi.org/10.1145/2396761.2398643)|Xiao Yang, Zhaoxin Zhang, Ke Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+collaborative+filtering+using+incremental+update+and+local+link+prediction)|10| -|[Large scale analysis of changes in english vocabulary over recent time](https://doi.org/10.1145/2396761.2398682)|Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large+scale+analysis+of+changes+in+english+vocabulary+over+recent+time)|10| -|[Predicting primary categories of business listings for local search](https://doi.org/10.1145/2396761.2398699)|Changsung Kang, Jeehaeng Lee, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+primary+categories+of+business+listings+for+local+search)|10| -|[Is wikipedia too difficult?: comparative analysis of readability of wikipedia, simple wikipedia and britannica](https://doi.org/10.1145/2396761.2398703)|Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Is+wikipedia+too+difficult?:+comparative+analysis+of+readability+of+wikipedia,+simple+wikipedia+and+britannica)|10| -|[Recency-sensitive model of web page authority](https://doi.org/10.1145/2396761.2398708)|Maxim Zhukovskiy, Dmitry Vinogradov, Gleb Gusev, Pavel Serdyukov, Andrei M. Raigorodskii||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recency-sensitive+model+of+web+page+authority)|10| -|[The nautilus analyzer: understanding and debugging data transformations](https://doi.org/10.1145/2396761.2398743)|Melanie Herschel, Hanno Eichelberger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+nautilus+analyzer:+understanding+and+debugging+data+transformations)|10| -|[Top-k retrieval using conditional preference networks](https://doi.org/10.1145/2396761.2398576)|Hongbing Wang, Xuan Zhou, Wujin Chen, Peisheng Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-k+retrieval+using+conditional+preference+networks)|9| -|[An efficient index for massive IOT data in cloud environment](https://doi.org/10.1145/2396761.2398587)|Youzhong Ma, Jia Rao, Weisong Hu, Xiaofeng Meng, Xu Han, Yu Zhang, Yunpeng Chai, Chunqiu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+index+for+massive+IOT+data+in+cloud+environment)|9| -|[Adapt: adaptive database schema design for multi-tenant applications](https://doi.org/10.1145/2396761.2398601)|Jiacai Ni, Guoliang Li, Jun Zhang, Lei Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adapt:+adaptive+database+schema+design+for+multi-tenant+applications)|9| -|[A new tool for multi-level partitioning in teradata](https://doi.org/10.1145/2396761.2398604)|YoungKyoon Suh, Ahmad Ghazal, Alain Crolotte, Pekka Kostamaa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+tool+for+multi-level+partitioning+in+teradata)|9| -|[Coarse-to-fine sentence-level emotion classification based on the intra-sentence features and sentential context](https://doi.org/10.1145/2396761.2398665)|Jun Xu, Ruifeng Xu, Qin Lu, Xiaolong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Coarse-to-fine+sentence-level+emotion+classification+based+on+the+intra-sentence+features+and+sentential+context)|9| -|[Twitter hyperlink recommendation with user-tweet-hyperlink three-way clustering](https://doi.org/10.1145/2396761.2398685)|Dehong Gao, Renxian Zhang, Wenjie Li, Yuexian Hou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twitter+hyperlink+recommendation+with+user-tweet-hyperlink+three-way+clustering)|9| -|[A latent pairwise preference learning approach for recommendation from implicit feedback](https://doi.org/10.1145/2396761.2398693)|Yi Fang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+latent+pairwise+preference+learning+approach+for+recommendation+from+implicit+feedback)|9| -|[RESQ: rank-energy selective query forwarding for distributed search systems](https://doi.org/10.1145/2396761.2398696)|Amin Y. Teymorian, Xiao Qin, Ophir Frieder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RESQ:+rank-energy+selective+query+forwarding+for+distributed+search+systems)|9| -|[ESA: emergency situation awareness via microbloggers](https://doi.org/10.1145/2396761.2398732)|Jie Yin, Sarvnaz Karimi, Bella Robinson, Mark A. Cameron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESA:+emergency+situation+awareness+via+microbloggers)|9| -|[MOUNA: mining opinions to unveil neglected arguments](https://doi.org/10.1145/2396761.2398739)|Mouna Kacimi, Johann Gamper||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MOUNA:+mining+opinions+to+unveil+neglected+arguments)|9| -|[STFMap: query- and feature-driven visualization of large time series data sets](https://doi.org/10.1145/2396761.2398747)|K. Selçuk Candan, Rosaria Rossini, Maria Luisa Sapino, Xiaolan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=STFMap:+query-+and+feature-driven+visualization+of+large+time+series+data+sets)|9| -|[Primates: a privacy management system for social networks](https://doi.org/10.1145/2396761.2398748)|Imen Ben Dhia, Talel Abdessalem, Mauro Sozio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Primates:+a+privacy+management+system+for+social+networks)|9| -|[DUBMMSM'12: international workshop on data-driven user behavioral modeling and mining from social media](https://doi.org/10.1145/2396761.2398751)|Jalal Mahmud, James Caverlee, Jeffrey Nichols, John O'Donovan, Michelle X. Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DUBMMSM'12:+international+workshop+on+data-driven+user+behavioral+modeling+and+mining+from+social+media)|9| -|[The 2012 international workshop on web-scale knowledge representation, retrieval, and reasoning](https://doi.org/10.1145/2396761.2398755)|Spyros Kotoulas, Yi Zeng, Zhisheng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+2012+international+workshop+on+web-scale+knowledge+representation,+retrieval,+and+reasoning)|9| -|[SHB 2012: international workshop on smart health and wellbeing](https://doi.org/10.1145/2396761.2398756)|Christopher C. Yang, Hsinchun Chen, Howard D. Wactlar, Carlo Combi, Xuning Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SHB+2012:+international+workshop+on+smart+health+and+wellbeing)|9| -|[Booksonline'12: 5th workshop on online books, complementary social media and their impact](https://doi.org/10.1145/2396761.2398757)|Gabriella Kazai, Monica Landoni, Carsten Eickhoff, Peter Brusilovsky||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Booksonline'12:+5th+workshop+on+online+books,+complementary+social+media+and+their+impact)|9| -|[Mining coherent anomaly collections on web data](https://doi.org/10.1145/2396761.2398472)|Hanbo Dai, Feida Zhu, EePeng Lim, HweeHwa Pang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+coherent+anomaly+collections+on+web+data)|8| -|[PriSM: discovering and prioritizing severe technical issues from product discussion forums](https://doi.org/10.1145/2396761.2398486)|Rashmi Gangadharaiah, Rose Catherine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PriSM:+discovering+and+prioritizing+severe+technical+issues+from+product+discussion+forums)|8| -|[Query-focused multi-document summarization based on query-sensitive feature space](https://doi.org/10.1145/2396761.2398491)|Wenpeng Yin, Yulong Pei, Fan Zhang, Lian'en Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-focused+multi-document+summarization+based+on+query-sensitive+feature+space)|8| +|[Scaling multiple-source entity resolution using statistically efficient transfer learning](https://doi.org/10.1145/2396761.2398606)|Sahand Negahban, Benjamin I. P. Rubinstein, Jim Gemmell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+multiple-source+entity+resolution+using+statistically+efficient+transfer+learning)|10| +|[Fast candidate generation for two-phase document ranking: postings list intersection with bloom filters](https://doi.org/10.1145/2396761.2398656)|Nima Asadi, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+candidate+generation+for+two-phase+document+ranking:+postings+list+intersection+with+bloom+filters)|10| +|[Efficient algorithms for generalized subgraph query processing](https://doi.org/10.1145/2396761.2396805)|Wenqing Lin, Xiaokui Xiao, James Cheng, Sourav S. Bhowmick||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+algorithms+for+generalized+subgraph+query+processing)|9| +|[Multi-faceted ranking of news articles using post-read actions](https://doi.org/10.1145/2396761.2396850)|Deepak Agarwal, BeeChung Chen, Xuanhui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-faceted+ranking+of+news+articles+using+post-read+actions)|9| +|[A decentralized recommender system for effective web credibility assessment](https://doi.org/10.1145/2396761.2396851)|Thanasis G. Papaioannou, JeanEudes Ranvier, Alexandra Olteanu, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+decentralized+recommender+system+for+effective+web+credibility+assessment)|9| +|[Finding top k most influential spatial facilities over uncertain objects](https://doi.org/10.1145/2396761.2396878)|Liming Zhan, Ying Zhang, Wenjie Zhang, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+top+k+most+influential+spatial+facilities+over+uncertain+objects)|9| +|[Role-explicit query identification and intent role annotation](https://doi.org/10.1145/2396761.2398416)|Haitao Yu, Fuji Ren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Role-explicit+query+identification+and+intent+role+annotation)|9| +|[Supporting factual statements with evidence from the web](https://doi.org/10.1145/2396761.2398415)|Chee Wee Leong, Silviu Cucerzan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+factual+statements+with+evidence+from+the+web)|9| +|[Automatic query expansion based on tag recommendation](https://doi.org/10.1145/2396761.2398557)|Vitor Campos de Oliveira, Guilherme de Castro Mendes Gomes, Fabiano Belém, Wladmir C. Brandão, Jussara M. Almeida, Nivio Ziviani, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+query+expansion+based+on+tag+recommendation)|9| +|[Supporting temporal analytics for health-related events in microblogs](https://doi.org/10.1145/2396761.2398726)|Nattiya Kanhabua, Sara Romano, Avaré Stewart, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+temporal+analytics+for+health-related+events+in+microblogs)|9| +|[Utilizing common substructures to speedup tensor factorization for mining dynamic graphs](https://doi.org/10.1145/2396761.2396818)|Wei Liu, Jeffrey Chan, James Bailey, Christopher Leckie, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Utilizing+common+substructures+to+speedup+tensor+factorization+for+mining+dynamic+graphs)|8| +|[Daily-deal selection for revenue maximization](https://doi.org/10.1145/2396761.2396835)|Theodoros Lappas, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Daily-deal+selection+for+revenue+maximization)|8| +|[TCSST: transfer classification of short & sparse text using external data](https://doi.org/10.1145/2396761.2396859)|Guodong Long, Ling Chen, Xingquan Zhu, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TCSST:+transfer+classification+of+short+&+sparse+text+using+external+data)|8| +|[Learning to rank by aggregating expert preferences](https://doi.org/10.1145/2396761.2396868)|Maksims Volkovs, Hugo Larochelle, Richard S. Zemel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+by+aggregating+expert+preferences)|8| +|[Predicting aggregate social activities using continuous-time stochastic process](https://doi.org/10.1145/2396761.2396885)|Shu Huang, Min Chen, Bo Luo, Dongwon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+aggregate+social+activities+using+continuous-time+stochastic+process)|8| +|[Active learning for relation type extension with local and global data views](https://doi.org/10.1145/2396761.2398409)|Ang Sun, Ralph Grishman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+learning+for+relation+type+extension+with+local+and+global+data+views)|8| +|[Predicting the effectiveness of keyword queries on databases](https://doi.org/10.1145/2396761.2398422)|Shiwen Cheng, Arash Termehchy, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+effectiveness+of+keyword+queries+on+databases)|8| +|[Improving bag-of-visual-words model with spatial-temporal correlation for video retrieval](https://doi.org/10.1145/2396761.2398433)|Lei Wang, Dawei Song, Eyad Elyan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+bag-of-visual-words+model+with+spatial-temporal+correlation+for+video+retrieval)|8| +|[Efficient jaccard-based diversity analysis of large document collections](https://doi.org/10.1145/2396761.2398445)|Fan Deng, Stefan Siersdorfer, Sergej Zerr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+jaccard-based+diversity+analysis+of+large+document+collections)|8| +|[The walls have ears: optimize sharing for visibility and privacy in online social networks](https://doi.org/10.1145/2396761.2398451)|Thang N. Dinh, Yilin Shen, My T. Thai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+walls+have+ears:+optimize+sharing+for+visibility+and+privacy+in+online+social+networks)|8| +|[Exploiting latent relevance for relational learning of ubiquitous things](https://doi.org/10.1145/2396761.2398470)|Lina Yao, Quan Z. Sheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+latent+relevance+for+relational+learning+of+ubiquitous+things)|8| +|[Providing grades and feedback for student summaries by ontology-based information extraction](https://doi.org/10.1145/2396761.2398505)|Fernando Gutierrez, Dejing Dou, Stephen Fickas, Gina Griffiths||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Providing+grades+and+feedback+for+student+summaries+by+ontology-based+information+extraction)|8| +|[Diversionary comments under political blog posts](https://doi.org/10.1145/2396761.2398518)|Jing Wang, Clement T. Yu, Philip S. Yu, Bing Liu, Weiyi Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversionary+comments+under+political+blog+posts)|8| +|[Sentiment-focused web crawling](https://doi.org/10.1145/2396761.2398564)|A. Gural Vural, Berkant Barla Cambazoglu, Pinar Senkul||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment-focused+web+crawling)|8| +|[Modeling browsing behavior for click analysis in sponsored search](https://doi.org/10.1145/2396761.2398563)|Azin Ashkan, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+browsing+behavior+for+click+analysis+in+sponsored+search)|8| |[Schema-free structured querying of DBpedia data](https://doi.org/10.1145/2396761.2398579)|Lushan Han, Tim Finin, Anupam Joshi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Schema-free+structured+querying+of+DBpedia+data)|8| -|[An effective category classification method based on a language model for question category recommendation on a cQA service](https://doi.org/10.1145/2396761.2398614)|Kyoungman Bae, Youngjoong Ko||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+category+classification+method+based+on+a+language+model+for+question+category+recommendation+on+a+cQA+service)|8| -|[Information propagation in social rating networks](https://doi.org/10.1145/2396761.2398620)|Priyanka Garg, Irwin King, Michael R. Lyu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+propagation+in+social+rating+networks)|8| -|[Time feature selection for identifying active household members](https://doi.org/10.1145/2396761.2398628)|Pedro G. Campos, Alejandro Bellogín, Fernando Díez, Iván Cantador||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time+feature+selection+for+identifying+active+household+members)|8| -|[On compressing weighted time-evolving graphs](https://doi.org/10.1145/2396761.2398630)|Wei Liu, Andrey Kan, Jeffrey Chan, James Bailey, Christopher Leckie, Jian Pei, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+compressing+weighted+time-evolving+graphs)|8| -|[Graph-based collective classification for tweets](https://doi.org/10.1145/2396761.2398631)|Yajuan Duan, Furu Wei, Ming Zhou, HeungYeung Shum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+collective+classification+for+tweets)|8| -|[Mining advices from weblogs](https://doi.org/10.1145/2396761.2398637)|Alfan Farizki Wicaksono, SungHyon Myaeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+advices+from+weblogs)|8| -|[On using category experts for improving the performance and accuracy in recommender systems](https://doi.org/10.1145/2396761.2398639)|WonSeok Hwang, HoJong Lee, SangWook Kim, Minsoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+using+category+experts+for+improving+the+performance+and+accuracy+in+recommender+systems)|8| -|[Tweet classification based on their lifetime duration](https://doi.org/10.1145/2396761.2398642)|Hikaru Takemura, Keishi Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tweet+classification+based+on+their+lifetime+duration)|8| -|[Finding influential products on social domination game](https://doi.org/10.1145/2396761.2398640)|Jinyoung Yeo, JinWoo Park, Seungwon Hwang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+influential+products+on+social+domination+game)|8| -|[Mathematical equation retrieval using plain words as a query](https://doi.org/10.1145/2396761.2398653)|Shinil Kim, Seon Yang, Youngjoong Ko||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mathematical+equation+retrieval+using+plain+words+as+a+query)|8| -|[Relation regularized subspace recommending for related scientific articles](https://doi.org/10.1145/2396761.2398677)|Qing Zhang, Jianwu Li, Zhiping Zhang, Li Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relation+regularized+subspace+recommending+for+related+scientific+articles)|8| -|[Extracting interesting association rules from toolbar data](https://doi.org/10.1145/2396761.2398687)|Ilaria Bordino, Debora Donato, Barbara Poblete||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+interesting+association+rules+from+toolbar+data)|8| -|[An examination of content farms in web search using crowdsourcing](https://doi.org/10.1145/2396761.2398689)|Richard McCreadie, Craig Macdonald, Iadh Ounis, Jim Giles, Ferris Jabr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+examination+of+content+farms+in+web+search+using+crowdsourcing)|8| -|[Demographic context in web search re-ranking](https://doi.org/10.1145/2396761.2398690)|Eugene Kharitonov, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Demographic+context+in+web+search+re-ranking)|8| +|[On bundle configuration for viral marketing in social networks](https://doi.org/10.1145/2396761.2398608)|DeNian Yang, WangChien Lee, NaiHui Chia, Mao Ye, HuiJu Hung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+bundle+configuration+for+viral+marketing+in+social+networks)|8| |[Learning to recommend with social relation ensemble](https://doi.org/10.1145/2396761.2398701)|Lei Guo, Jun Ma, Zhumin Chen, Haoran Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+recommend+with+social+relation+ensemble)|8| -|[SRGSIS: a novel framework based on social relationship graph for social image search](https://doi.org/10.1145/2396761.2398705)|Bo Lu, Ye Yuan, Guoren Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SRGSIS:+a+novel+framework+based+on+social+relationship+graph+for+social+image+search)|8| -|[Exploring simultaneous keyword and key sentence extraction: improve graph-based ranking using wikipedia](https://doi.org/10.1145/2396761.2398706)|Xun Wang, Lei Wang, Jiwei Li, Sujian Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+simultaneous+keyword+and+key+sentence+extraction:+improve+graph-based+ranking+using+wikipedia)|8| -|[LUKe and MIKe: learning from user knowledge and managing interactive knowledge extraction](https://doi.org/10.1145/2396761.2398721)|Steffen Metzger, Michael Stoll, Katja Hose, Ralf Schenkel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LUKe+and+MIKe:+learning+from+user+knowledge+and+managing+interactive+knowledge+extraction)|8| -|[Cager: a framework for cross-page search](https://doi.org/10.1145/2396761.2398733)|Zhumin Chen, Byron J. Gao, Qi Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cager:+a+framework+for+cross-page+search)|8| -|[TASE: a time-aware search engine](https://doi.org/10.1145/2396761.2398736)|Sheng Lin, Peiquan Jin, Xujian Zhao, Lihua Yue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TASE:+a+time-aware+search+engine)|8| -|[Mixed-initiative conversational system using question-answer pairs mined from the web](https://doi.org/10.1145/2396761.2398734)|Wilson Wong, Lawrence Cavedon, John Thangarajah, Lin Padgham||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mixed-initiative+conversational+system+using+question-answer+pairs+mined+from+the+web)|8| -|[HadoopXML: a suite for parallel processing of massive XML data with multiple twig pattern queries](https://doi.org/10.1145/2396761.2398745)|Hyebong Choi, KyongHa Lee, SooHyong Kim, YoonJoon Lee, Bongki Moon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HadoopXML:+a+suite+for+parallel+processing+of+massive+XML+data+with+multiple+twig+pattern+queries)|8| -|[A simple approach to the design of site-level extractors using domain-centric principles](https://doi.org/10.1145/2396761.2398464)|Chong Long, Xiubo Geng, Chang Xu, Sathiya Keerthi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+simple+approach+to+the+design+of+site-level+extractors+using+domain-centric+principles)|7| -|[Characterizing web search queries that match very few or no results](https://doi.org/10.1145/2396761.2398560)|Ismail Sengör Altingövde, Roi Blanco, Berkant Barla Cambazoglu, Rifat Ozcan, Erdem Sarigil, Özgür Ulusoy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+web+search+queries+that+match+very+few+or+no+results)|7| -|[User activity profiling with multi-layer analysis](https://doi.org/10.1145/2396761.2398566)|Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+activity+profiling+with+multi-layer+analysis)|7| +|[Finding food entity relationships using user-generated data in recipe service](https://doi.org/10.1145/2396761.2398704)|Youngjoo Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+food+entity+relationships+using+user-generated+data+in+recipe+service)|8| +|[Evaluating reward and risk for vertical selection](https://doi.org/10.1145/2396761.2398709)|Ke Zhou, Ronan Cummins, Mounia Lalmas, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+reward+and+risk+for+vertical+selection)|8| +|[Fast and accurate incremental entity resolution relative to an entity knowledge base](https://doi.org/10.1145/2396761.2398719)|Michael J. Welch, Aamod Sane, Chris Drome||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+accurate+incremental+entity+resolution+relative+to+an+entity+knowledge+base)|8| +|[Constructing test collections by inferring document relevance via extracted relevant information](https://doi.org/10.1145/2396761.2396783)|Shahzad Rajput, Matthew EkstrandAbueg, Virgiliu Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constructing+test+collections+by+inferring+document+relevance+via+extracted+relevant+information)|7| +|[An analysis of how ensembles of collective classifiers improve predictions in graphs](https://doi.org/10.1145/2396761.2396793)|Hoda Eldardiry, Jennifer Neville||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+how+ensembles+of+collective+classifiers+improve+predictions+in+graphs)|7| +|[Improving document clustering using automated machine translation](https://doi.org/10.1145/2396761.2396844)|Xiang Wang, Buyue Qian, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+document+clustering+using+automated+machine+translation)|7| +|[Monochromatic and bichromatic reverse nearest neighbor queries on land surfaces](https://doi.org/10.1145/2396761.2396880)|Da Yan, Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Monochromatic+and+bichromatic+reverse+nearest+neighbor+queries+on+land+surfaces)|7| +|[Efficient provenance storage for relational queries](https://doi.org/10.1145/2396761.2398439)|Zhifeng Bao, Henning Köhler, Liwei Wang, Xiaofang Zhou, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+provenance+storage+for+relational+queries)|7| +|[WiSeNet: building a wikipedia-based semantic network with ontologized relations](https://doi.org/10.1145/2396761.2398495)|Andrea Moro, Roberto Navigli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WiSeNet:+building+a+wikipedia-based+semantic+network+with+ontologized+relations)|7| +|[Ranking news events by influence decay and information fusion for media and users](https://doi.org/10.1145/2396761.2398530)|Liang Kong, Shan Jiang, Rui Yan, Shize Xu, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+news+events+by+influence+decay+and+information+fusion+for+media+and+users)|7| +|[Map to humans and reduce error: crowdsourcing for deduplication applied to digital libraries](https://doi.org/10.1145/2396761.2398554)|Mihai Georgescu, Dang Duc Pham, Claudiu S. Firan, Wolfgang Nejdl, Julien Gaugaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Map+to+humans+and+reduce+error:+crowdsourcing+for+deduplication+applied+to+digital+libraries)|7| |[Diversifying query results on semi-structured data](https://doi.org/10.1145/2396761.2398581)|Mahbub Hasan, Abdullah Mueen, Vassilis J. Tsotras, Eamonn J. Keogh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversifying+query+results+on+semi-structured+data)|7| -|[Finding the optimal path over multi-cost graphs](https://doi.org/10.1145/2396761.2398586)|Yajun Yang, Jeffrey Xu Yu, Hong Gao, Jianzhong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+the+optimal+path+over+multi-cost+graphs)|7| -|[Polygene-based evolution: a novel framework for evolutionary algorithms](https://doi.org/10.1145/2396761.2398616)|Shuaiqiang Wang, Byron J. Gao, Shuangling Wang, Guibao Cao, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Polygene-based+evolution:+a+novel+framework+for+evolutionary+algorithms)|7| -|[On empirical tradeoffs in large scale hierarchical classification](https://doi.org/10.1145/2396761.2398625)|Rohit Babbar, Ioannis Partalas, Éric Gaussier, Cécile Amblard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+empirical+tradeoffs+in+large+scale+hierarchical+classification)|7| -|[Parallel proximal support vector machine for high-dimensional pattern classification](https://doi.org/10.1145/2396761.2398638)|Zhenfeng Zhu, Xingquan Zhu, Yangdong Ye, YueFei Guo, Xiangyang Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+proximal+support+vector+machine+for+high-dimensional+pattern+classification)|7| -|[An evaluation and enhancement of densitometric fragmentation for content slicing reuse](https://doi.org/10.1145/2396761.2398652)|Killian Levacher, Séamus Lawless, Vincent Wade||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+evaluation+and+enhancement+of+densitometric+fragmentation+for+content+slicing+reuse)|7| -|[Semantically coherent image annotation with a learning-based keyword propagation strategy](https://doi.org/10.1145/2396761.2398657)|Chaoran Cui, Jun Ma, Shuaiqiang Wang, Shuai Gao, Tao Lian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantically+coherent+image+annotation+with+a+learning-based+keyword+propagation+strategy)|7| -|[How do humans distinguish different people with identical names on the web?](https://doi.org/10.1145/2396761.2398670)|Harumi Murakami, Yuki Miyake||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+do+humans+distinguish+different+people+with+identical+names+on+the+web?)|7| -|[Enhancing product search by best-selling prediction in e-commerce](https://doi.org/10.1145/2396761.2398671)|Bo Long, Jiang Bian, Anlei Dong, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+product+search+by+best-selling+prediction+in+e-commerce)|7| -|[Concavity in IR models](https://doi.org/10.1145/2396761.2398686)|Stéphane Clinchant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concavity+in+IR+models)|7| -|[Session-based query performance prediction](https://doi.org/10.1145/2396761.2398692)|Andrey Kustarev, Yury Ustinovsky, Anna Mazur, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Session-based+query+performance+prediction)|7| -|[Where do the query terms come from?: an analysis of query reformulation in collaborative web search](https://doi.org/10.1145/2396761.2398700)|Zhen Yue, Jiepu Jiang, Shuguang Han, Daqing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+do+the+query+terms+come+from?:+an+analysis+of+query+reformulation+in+collaborative+web+search)|7| -|[Supporting temporal analytics for health-related events in microblogs](https://doi.org/10.1145/2396761.2398726)|Nattiya Kanhabua, Sara Romano, Avaré Stewart, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+temporal+analytics+for+health-related+events+in+microblogs)|7| -|[CDMW 2012 - city data management workshop: workshop summary](https://doi.org/10.1145/2396761.2398753)|Veli Bicer, Thanh Tran, Fatma Ozcan, Opher Etzion||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CDMW+2012+-+city+data+management+workshop:+workshop+summary)|7| +|[Efficient estimation of dynamic density functions with an application to outlier detection](https://doi.org/10.1145/2396761.2398593)|Abdulhakim Ali Qahtan, Xiangliang Zhang, Suojin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+estimation+of+dynamic+density+functions+with+an+application+to+outlier+detection)|7| +|[Graph-based collective classification for tweets](https://doi.org/10.1145/2396761.2398631)|Yajuan Duan, Furu Wei, Ming Zhou, HeungYeung Shum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+collective+classification+for+tweets)|7| +|[An efficient and simple under-sampling technique for imbalanced time series classification](https://doi.org/10.1145/2396761.2398635)|Guohua Liang, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+and+simple+under-sampling+technique+for+imbalanced+time+series+classification)|7| +|[Predicting the performance of passage retrieval for question answering](https://doi.org/10.1145/2396761.2398664)|Eyal Krikon, David Carmel, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+performance+of+passage+retrieval+for+question+answering)|7| +|[Query-performance prediction and cluster ranking: two sides of the same coin](https://doi.org/10.1145/2396761.2398666)|Oren Kurland, Fiana Raiber, Anna Shtok||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-performance+prediction+and+cluster+ranking:+two+sides+of+the+same+coin)|7| +|[Exploring the cluster hypothesis, and cluster-based retrieval, over the web](https://doi.org/10.1145/2396761.2398678)|Fiana Raiber, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+cluster+hypothesis,+and+cluster-based+retrieval,+over+the+web)|7| +|[Mixed-initiative conversational system using question-answer pairs mined from the web](https://doi.org/10.1145/2396761.2398734)|Wilson Wong, Lawrence Cavedon, John Thangarajah, Lin Padgham||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mixed-initiative+conversational+system+using+question-answer+pairs+mined+from+the+web)|7| |[User engagement: the network effect matters!](https://doi.org/10.1145/2396761.2396763)|Ricardo BaezaYates, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+engagement:+the+network+effect+matters!)|6| -|[Influence and similarity on heterogeneous networks](https://doi.org/10.1145/2396761.2398453)|Guan Wang, Qingbo Hu, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+and+similarity+on+heterogeneous+networks)|6| -|[Graph-based workflow recommendation: on improving business process modeling](https://doi.org/10.1145/2396761.2398466)|Bin Cao, Jianwei Yin, ShuiGuang Deng, Dongjing Wang, Zhaohui Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+workflow+recommendation:+on+improving+business+process+modeling)|6| -|[Meta path-based collective classification in heterogeneous information networks](https://doi.org/10.1145/2396761.2398474)|Xiangnan Kong, Philip S. Yu, Ying Ding, David J. Wild||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Meta+path-based+collective+classification+in+heterogeneous+information+networks)|6| -|[Finding nuggets in IP portfolios: core patent mining through textual temporal analysis](https://doi.org/10.1145/2396761.2398524)|Po Hu, Minlie Huang, Peng Xu, Weichang Li, Adam K. Usadi, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+nuggets+in+IP+portfolios:+core+patent+mining+through+textual+temporal+analysis)|6| -|[Theme chronicle model: chronicle consists of timestamp and topical words over each theme](https://doi.org/10.1145/2396761.2398573)|Noriaki Kawamae||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Theme+chronicle+model:+chronicle+consists+of+timestamp+and+topical+words+over+each+theme)|6| -|[Importance weighted passive learning](https://doi.org/10.1145/2396761.2398611)|Shuaiqiang Wang, Xiaoming Xi, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Importance+weighted+passive+learning)|6| -|[Outlier detection using centrality and center-proximity](https://doi.org/10.1145/2396761.2398613)|DuckHo Bae, Seo Jeong, SangWook Kim, Minsoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Outlier+detection+using+centrality+and+center-proximity)|6| -|[Text classification with relatively small positive documents and unlabeled data](https://doi.org/10.1145/2396761.2398629)|Fumiyo Fukumoto, Takeshi Yamamoto, Suguru Matsuyoshi, Yoshimi Suzuki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+classification+with+relatively+small+positive+documents+and+unlabeled+data)|6| -|[Information preservation in static index pruning](https://doi.org/10.1145/2396761.2398673)|RueyCheng Chen, ChiaJung Lee, ChiungMin Tsai, Jieh Hsiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+preservation+in+static+index+pruning)|6| +|[Visualizing timelines: evolutionary summarization via iterative reinforcement between text and image streams](https://doi.org/10.1145/2396761.2396799)|Rui Yan, Xiaojun Wan, Mirella Lapata, Wayne Xin Zhao, PuJen Cheng, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visualizing+timelines:+evolutionary+summarization+via+iterative+reinforcement+between+text+and+image+streams)|6| +|[Cross-argument inference for implicit discourse relation recognition](https://doi.org/10.1145/2396761.2396801)|Yu Hong, Xiaopei Zhou, Tingting Che, JianMin Yao, Qiaoming Zhu, Guodong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-argument+inference+for+implicit+discourse+relation+recognition)|6| +|[Understanding book search behavior on the web](https://doi.org/10.1145/2396761.2396856)|Jin Young Kim, Henry Allen Feild, MarcAllen Cartright||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+book+search+behavior+on+the+web)|6| +|[GPU acceleration of probabilistic frequent itemset mining from uncertain databases](https://doi.org/10.1145/2396761.2396874)|Yusuke Kozawa, Toshiyuki Amagasa, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPU+acceleration+of+probabilistic+frequent+itemset+mining+from+uncertain+databases)|6| +|[Click patterns: an empirical representation of complex query intents](https://doi.org/10.1145/2396761.2398400)|Huizhong Duan, Emre Kiciman, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Click+patterns:+an+empirical+representation+of+complex+query+intents)|6| +|[Processing continuous text queries featuring non-homogeneous scoring functions](https://doi.org/10.1145/2396761.2398404)|Nelly Vouzoukidou, Bernd Amann, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Processing+continuous+text+queries+featuring+non-homogeneous+scoring+functions)|6| +|[CoNet: feature generation for multi-view semi-supervised learning with partially observed views](https://doi.org/10.1145/2396761.2398429)|Brian Quanz, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoNet:+feature+generation+for+multi-view+semi-supervised+learning+with+partially+observed+views)|6| +|[Fast approximation of steiner trees in large graphs](https://doi.org/10.1145/2396761.2398460)|Andrey Gubichev, Thomas Neumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+approximation+of+steiner+trees+in+large+graphs)|6| +|[Incorporating word correlation into tag-topic model for semantic knowledge acquisition](https://doi.org/10.1145/2396761.2398485)|Fang Li, Tingting He, Xinhui Tu, Xiaohua Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+word+correlation+into+tag-topic+model+for+semantic+knowledge+acquisition)|6| +|[Web-scale multi-task feature selection for behavioral targeting](https://doi.org/10.1145/2396761.2398508)|Amr Ahmed, Mohamed Aly, Abhimanyu Das, Alexander J. Smola, Tasos Anastasakos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web-scale+multi-task+feature+selection+for+behavioral+targeting)|6| +|[Fast top-k similarity queries via matrix compression](https://doi.org/10.1145/2396761.2398574)|Yucheng Low, Alice X. Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+top-k+similarity+queries+via+matrix+compression)|6| +|[Author-conference topic-connection model for academic network search](https://doi.org/10.1145/2396761.2398597)|Jianwen Wang, Xiaohua Hu, Xinhui Tu, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Author-conference+topic-connection+model+for+academic+network+search)|6| +|[Adapt: adaptive database schema design for multi-tenant applications](https://doi.org/10.1145/2396761.2398601)|Jiacai Ni, Guoliang Li, Jun Zhang, Lei Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adapt:+adaptive+database+schema+design+for+multi-tenant+applications)|6| +|[Dual word and document seed selection for semi-supervised sentiment classification](https://doi.org/10.1145/2396761.2398624)|Shengfeng Ju, Shoushan Li, Yan Su, Guodong Zhou, Yu Hong, Xiaojun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual+word+and+document+seed+selection+for+semi-supervised+sentiment+classification)|6| +|[Infobox suggestion for Wikipedia entities](https://doi.org/10.1145/2396761.2398627)|Afroza Sultana, Quazi Mainul Hasan, Ashis Kumer Biswas, Soumyava Das, Habibur Rahman, Chris H. Q. Ding, Chengkai Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Infobox+suggestion+for+Wikipedia+entities)|6| +|[A co-training based method for chinese patent semantic annotation](https://doi.org/10.1145/2396761.2398645)|Xu Chen, Zhiyong Peng, Cheng Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+co-training+based+method+for+chinese+patent+semantic+annotation)|6| +|[Dictionary based sparse representation for domain adaptation](https://doi.org/10.1145/2396761.2398649)|Rishabh Mehrotra, Rushabh Agrawal, Syed Aqueel Haider||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dictionary+based+sparse+representation+for+domain+adaptation)|6| +|[Towards measuring the visualness of a concept](https://doi.org/10.1145/2396761.2398655)|JinWoo Jeong, XinJing Wang, DongHo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+measuring+the+visualness+of+a+concept)|6| +|[I want what i need!: analyzing subjectivity of online forum threads](https://doi.org/10.1145/2396761.2398675)|Prakhar Biyani, Cornelia Caragea, Amit Singh, Prasenjit Mitra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=I+want+what+i+need!:+analyzing+subjectivity+of+online+forum+threads)|6| +|[Short-text domain specific key terms/phrases extraction using an n-gram model with wikipedia](https://doi.org/10.1145/2396761.2398680)|Muhammad Atif Qureshi, Colm O'Riordan, Gabriella Pasi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short-text+domain+specific+key+terms/phrases+extraction+using+an+n-gram+model+with+wikipedia)|6| +|[Twitter hyperlink recommendation with user-tweet-hyperlink three-way clustering](https://doi.org/10.1145/2396761.2398685)|Dehong Gao, Renxian Zhang, Wenjie Li, Yuexian Hou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twitter+hyperlink+recommendation+with+user-tweet-hyperlink+three-way+clustering)|6| +|[Demographic context in web search re-ranking](https://doi.org/10.1145/2396761.2398690)|Eugene Kharitonov, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Demographic+context+in+web+search+re-ranking)|6| +|[A latent pairwise preference learning approach for recommendation from implicit feedback](https://doi.org/10.1145/2396761.2398693)|Yi Fang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+latent+pairwise+preference+learning+approach+for+recommendation+from+implicit+feedback)|6| +|[Is wikipedia too difficult?: comparative analysis of readability of wikipedia, simple wikipedia and britannica](https://doi.org/10.1145/2396761.2398703)|Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Is+wikipedia+too+difficult?:+comparative+analysis+of+readability+of+wikipedia,+simple+wikipedia+and+britannica)|6| |[Spatial-aware interest group queries in location-based social networks](https://doi.org/10.1145/2396761.2398713)|Yafei Li, Dingming Wu, Jianliang Xu, Byron Choi, Weifeng Su||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial-aware+interest+group+queries+in+location-based+social+networks)|6| -|[Continuous top-k query for graph streams](https://doi.org/10.1145/2396761.2398717)|Shirui Pan, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Continuous+top-k+query+for+graph+streams)|6| -|[CrowdTiles: presenting crowd-based information for event-driven information needs](https://doi.org/10.1145/2396761.2398731)|Stewart Whiting, Ke Zhou, Joemon M. Jose, Omar Alonso, Teerapong Leelanupab||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CrowdTiles:+presenting+crowd-based+information+for+event-driven+information+needs)|6| -|[PicAlert!: a system for privacy-aware image classification and retrieval](https://doi.org/10.1145/2396761.2398735)|Sergej Zerr, Stefan Siersdorfer, Jonathon S. Hare||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PicAlert!:+a+system+for+privacy-aware+image+classification+and+retrieval)|6| -|[Simultaneous realization of page-centric communication and search](https://doi.org/10.1145/2396761.2398738)|Yuhki Shiraishi, Jianwei Zhang, Yukiko Kawai, Toyokazu Akiyama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simultaneous+realization+of+page-centric+communication+and+search)|6| -|[MAGIK: managing completeness of data](https://doi.org/10.1145/2396761.2398741)|Ognjen Savkovic, Paramita Mirza, Sergey Paramonov, Werner Nutt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MAGIK:+managing+completeness+of+data)|6| -|[MADden: query-driven statistical text analytics](https://doi.org/10.1145/2396761.2398746)|Christan Earl Grant, Joirdan Gumbs, Kun Li, Daisy Zhe Wang, George Chitouras||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MADden:+query-driven+statistical+text+analytics)|6| -|[The downside of markup: examining the harmful effects of CSS and javascript on indexing today's web](https://doi.org/10.1145/2396761.2398558)|Karl Gyllstrom, Carsten Eickhoff, Arjen P. de Vries, MarieFrancine Moens||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+downside+of+markup:+examining+the+harmful+effects+of+CSS+and+javascript+on+indexing+today's+web)|5| -|[You should read this! let me explain you why: explaining news recommendations to users](https://doi.org/10.1145/2396761.2398559)|Roi Blanco, Diego Ceccarelli, Claudio Lucchese, Raffaele Perego, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=You+should+read+this!+let+me+explain+you+why:+explaining+news+recommendations+to+users)|5| -|[Fast PCA computation in a DBMS with aggregate UDFs and LAPACK](https://doi.org/10.1145/2396761.2398605)|Carlos Ordonez, Naveen Mohanam, Carlos GarciaAlvarado, Predrag T. Tosic, Edgar Martinez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+PCA+computation+in+a+DBMS+with+aggregate+UDFs+and+LAPACK)|5| -|[Clustering short text using Ncut-weighted non-negative matrix factorization](https://doi.org/10.1145/2396761.2398615)|Xiaohui Yan, Jiafeng Guo, Shenghua Liu, Xueqi Cheng, Yanfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+short+text+using+Ncut-weighted+non-negative+matrix+factorization)|5| +|[A summarization tool for time-sensitive social media](https://doi.org/10.1145/2396761.2398730)|Walid Magdy, Ahmed M. Ali, Kareem Darwish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+summarization+tool+for+time-sensitive+social+media)|6| +|[The wisdom of advertisers: mining subgoals via query clustering](https://doi.org/10.1145/2396761.2396827)|Takehiro Yamamoto, Tetsuya Sakai, Mayu Iwata, Chen Yu, JiRong Wen, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+wisdom+of+advertisers:+mining+subgoals+via+query+clustering)|5| +|[What is the IQ of your data transformation system?](https://doi.org/10.1145/2396761.2396872)|Giansalvatore Mecca, Paolo Papotti, Salvatore Raunich, Donatello Santoro||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+the+IQ+of+your+data+transformation+system?)|5| +|[Pay-as-you-go maintenance of precomputed nearest neighbors in large graphs](https://doi.org/10.1145/2396761.2396881)|Tom Crecelius, Ralf Schenkel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pay-as-you-go+maintenance+of+precomputed+nearest+neighbors+in+large+graphs)|5| +|[CGStream: continuous correlated graph query for data streams](https://doi.org/10.1145/2396761.2398419)|Shirui Pan, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CGStream:+continuous+correlated+graph+query+for+data+streams)|5| +|[Mining long-lasting exploratory user interests from search history](https://doi.org/10.1145/2396761.2398456)|Bin Tan, Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+long-lasting+exploratory+user+interests+from+search+history)|5| +|[Learning spectral embedding via iterative eigenvalue thresholding](https://doi.org/10.1145/2396761.2398462)|Fanhua Shang, Licheng Jiao, Yuanyuan Liu, Fei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+spectral+embedding+via+iterative+eigenvalue+thresholding)|5| +|[Empirical validation of the buckley-osthus model for the web host graph: degree and edge distributions](https://doi.org/10.1145/2396761.2398476)|Maxim Zhukovskiy, Dmitry Vinogradov, Yuri Pritykin, Liudmila Ostroumova, Evgeny Grechnikov, Gleb Gusev, Pavel Serdyukov, Andrei M. Raigorodskii||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Empirical+validation+of+the+buckley-osthus+model+for+the+web+host+graph:+degree+and+edge+distributions)|5| +|[Community-based classification of noun phrases in twitter](https://doi.org/10.1145/2396761.2398501)|Freddy Chong Tat Chua, William W. Cohen, Justin Betteridge, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-based+classification+of+noun+phrases+in+twitter)|5| +|[Automatic image annotation using tag-related random search over visual neighbors](https://doi.org/10.1145/2396761.2398517)|Zijia Lin, Guiguang Ding, Mingqing Hu, Jianmin Wang, Jiaguang Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+image+annotation+using+tag-related+random+search+over+visual+neighbors)|5| +|[CONSENTO: a new framework for opinion based entity search and summarization](https://doi.org/10.1145/2396761.2398547)|Jaehoon Choi, Donghyeon Kim, Seongsoon Kim, Junkyu Lee, Sangrak Lim, Sunwon Lee, Jaewoo Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONSENTO:+a+new+framework+for+opinion+based+entity+search+and+summarization)|5| +|[PolariCQ: polarity classification of political quotations](https://doi.org/10.1145/2396761.2398549)|Rawia Awadallah, Maya Ramanath, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PolariCQ:+polarity+classification+of+political+quotations)|5| +|[Theme chronicle model: chronicle consists of timestamp and topical words over each theme](https://doi.org/10.1145/2396761.2398573)|Noriaki Kawamae||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Theme+chronicle+model:+chronicle+consists+of+timestamp+and+topical+words+over+each+theme)|5| +|[An interaction framework of service-oriented ontology learning](https://doi.org/10.1145/2396761.2398626)|Jingsong Zhang, Yinglin Wang, Hao Wei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+interaction+framework+of+service-oriented+ontology+learning)|5| |[Bridging offline and online social graph dynamics](https://doi.org/10.1145/2396761.2398663)|Manuel GomezRodriguez, Monica Rogati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bridging+offline+and+online+social+graph+dynamics)|5| -|[Finding food entity relationships using user-generated data in recipe service](https://doi.org/10.1145/2396761.2398704)|Youngjoo Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+food+entity+relationships+using+user-generated+data+in+recipe+service)|5| -|[Latent topics in graph-structured data](https://doi.org/10.1145/2396761.2398718)|Christoph Böhm, Gjergji Kasneci, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latent+topics+in+graph-structured+data)|5| -|[Lonomics Atlas: a tool to explore interconnected ionomic, genomic and environmental data](https://doi.org/10.1145/2396761.2398724)|Eduard C. Dragut, Mourad Ouzzani, Amgad Madkour, Nabeel Mohamed, Peter Baker, David E. Salt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lonomics+Atlas:+a+tool+to+explore+interconnected+ionomic,+genomic+and+environmental+data)|5| -|[A tool for automated evaluation of algorithms](https://doi.org/10.1145/2396761.2398728)|Philipp Kranen, Stephan Wels, Tim Rohlfs, Sebastian Raubach, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tool+for+automated+evaluation+of+algorithms)|4| +|[Extracting interesting association rules from toolbar data](https://doi.org/10.1145/2396761.2398687)|Ilaria Bordino, Debora Donato, Barbara Poblete||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+interesting+association+rules+from+toolbar+data)|5| +|[Where do the query terms come from?: an analysis of query reformulation in collaborative web search](https://doi.org/10.1145/2396761.2398700)|Zhen Yue, Jiepu Jiang, Shuguang Han, Daqing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+do+the+query+terms+come+from?:+an+analysis+of+query+reformulation+in+collaborative+web+search)|5| +|[Exploring simultaneous keyword and key sentence extraction: improve graph-based ranking using wikipedia](https://doi.org/10.1145/2396761.2398706)|Xun Wang, Lei Wang, Jiwei Li, Sujian Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+simultaneous+keyword+and+key+sentence+extraction:+improve+graph-based+ranking+using+wikipedia)|5| +|[Continuous top-k query for graph streams](https://doi.org/10.1145/2396761.2398717)|Shirui Pan, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Continuous+top-k+query+for+graph+streams)|5| +|[CrowdTiles: presenting crowd-based information for event-driven information needs](https://doi.org/10.1145/2396761.2398731)|Stewart Whiting, Ke Zhou, Joemon M. Jose, Omar Alonso, Teerapong Leelanupab||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CrowdTiles:+presenting+crowd-based+information+for+event-driven+information+needs)|5| +|[TASE: a time-aware search engine](https://doi.org/10.1145/2396761.2398736)|Sheng Lin, Peiquan Jin, Xujian Zhao, Lihua Yue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TASE:+a+time-aware+search+engine)|5| +|[Content-based crowd retrieval on the real-time web](https://doi.org/10.1145/2396761.2396789)|Krishna Yeswanth Kamath, James Caverlee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-based+crowd+retrieval+on+the+real-time+web)|4| +|[Leveraging read rates of passive RFID tags for real-time indoor location tracking](https://doi.org/10.1145/2396761.2396811)|Da Yan, Zhou Zhao, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+read+rates+of+passive+RFID+tags+for+real-time+indoor+location+tracking)|4| +|[Diversity in blog feed retrieval](https://doi.org/10.1145/2396761.2396830)|Mostafa Keikha, Fabio Crestani, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversity+in+blog+feed+retrieval)|4| +|[Contextualization using hyperlinks and internal hierarchical structure of Wikipedia documents](https://doi.org/10.1145/2396761.2396855)|Muhammad Ali Norozi, Paavo Arvola, Arjen P. de Vries||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextualization+using+hyperlinks+and+internal+hierarchical+structure+of+Wikipedia+documents)|4| +|[Completeness of queries over SQL databases](https://doi.org/10.1145/2396761.2396875)|Werner Nutt, Simon Razniewski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Completeness+of+queries+over+SQL+databases)|4| +|[On the foundations of probabilistic information integration](https://doi.org/10.1145/2396761.2396873)|Fereidoon Sadri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+foundations+of+probabilistic+information+integration)|4| +|[Learning to discover complex mappings from web forms to ontologies](https://doi.org/10.1145/2396761.2398427)|Yuan An, Xiaohua Hu, IlYeol Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+discover+complex+mappings+from+web+forms+to+ontologies)|4| +|[Generically extending anonymization algorithms to deal with successive queries](https://doi.org/10.1145/2396761.2398440)|Manuel Barbosa, Alexandre Pinto, Bruno Gomes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generically+extending+anonymization+algorithms+to+deal+with+successive+queries)|4| +|[Model the complex dependence structures of financial variables by using canonical vine](https://doi.org/10.1145/2396761.2398443)|Wei Wei, Xuhui Fan, Jinyan Li, Longbing Cao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model+the+complex+dependence+structures+of+financial+variables+by+using+canonical+vine)|4| +|[Efficient extraction of ontologies from domain specific text corpora](https://doi.org/10.1145/2396761.2398468)|Tianyu Li, Pirooz Chubak, Laks V. S. Lakshmanan, Rachel Pottinger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+extraction+of+ontologies+from+domain+specific+text+corpora)|4| +|[SemaFor: semantic document indexing using semantic forests](https://doi.org/10.1145/2396761.2398499)|George Tsatsaronis, Iraklis Varlamis, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemaFor:+semantic+document+indexing+using+semantic+forests)|4| +|[On the connections between explicit semantic analysis and latent semantic analysis](https://doi.org/10.1145/2396761.2398521)|Chao Liu, YiMin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+connections+between+explicit+semantic+analysis+and+latent+semantic+analysis)|4| +|[Variance maximization via noise injection for active sampling in learning to rank](https://doi.org/10.1145/2396761.2398522)|Wenbin Cai, Ya Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Variance+maximization+via+noise+injection+for+active+sampling+in+learning+to+rank)|4| +|[Exploiting concept hierarchy for result diversification](https://doi.org/10.1145/2396761.2398529)|Wei Zheng, Hui Fang, Conglei Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+concept+hierarchy+for+result+diversification)|4| +|[Semantic context learning with large-scale weakly-labeled image set](https://doi.org/10.1145/2396761.2398532)|Yao Lu, Wei Zhang, Ke Zhang, Xiangyang Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+context+learning+with+large-scale+weakly-labeled+image+set)|4| +|[Collaborative ranking: improving the relevance for tail queries](https://doi.org/10.1145/2396761.2398540)|Ke Zhou, Xin Li, Hongyuan Zha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+ranking:+improving+the+relevance+for+tail+queries)|4| +|[Mining noisy tagging from multi-label space](https://doi.org/10.1145/2396761.2398545)|Zhongang Qi, Ming Yang, Zhongfei (Mark) Zhang, Zhengyou Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+noisy+tagging+from+multi-label+space)|4| +|[A comprehensive analysis of parameter settings for novelty-biased cumulative gain](https://doi.org/10.1145/2396761.2398550)|Teerapong Leelanupab, Guido Zuccon, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+comprehensive+analysis+of+parameter+settings+for+novelty-biased+cumulative+gain)|4| +|[Location-sensitive resources recommendation in social tagging systems](https://doi.org/10.1145/2396761.2398552)|Chang Wan, Ben Kao, David W. Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-sensitive+resources+recommendation+in+social+tagging+systems)|4| +|[The downside of markup: examining the harmful effects of CSS and javascript on indexing today's web](https://doi.org/10.1145/2396761.2398558)|Karl Gyllstrom, Carsten Eickhoff, Arjen P. de Vries, MarieFrancine Moens||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+downside+of+markup:+examining+the+harmful+effects+of+CSS+and+javascript+on+indexing+today's+web)|4| +|[Multi-session re-search: in pursuit of repetition and diversification](https://doi.org/10.1145/2396761.2398571)|Sarah K. Tyler, Yi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-session+re-search:+in+pursuit+of+repetition+and+diversification)|4| +|[An effective category classification method based on a language model for question category recommendation on a cQA service](https://doi.org/10.1145/2396761.2398614)|Kyoungman Bae, Youngjoong Ko||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+category+classification+method+based+on+a+language+model+for+question+category+recommendation+on+a+cQA+service)|4| +|[Weighted linear kernel with tree transformed features for malware detection](https://doi.org/10.1145/2396761.2398622)|Prakash Mandayam Comar, Lei Liu, Sabyasachi Saha, Antonio Nucci, PangNing Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+linear+kernel+with+tree+transformed+features+for+malware+detection)|4| +|[Time feature selection for identifying active household members](https://doi.org/10.1145/2396761.2398628)|Pedro G. Campos, Alejandro Bellogín, Fernando Díez, Iván Cantador||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time+feature+selection+for+identifying+active+household+members)|4| +|[A word-order based graph representation for relevance identification](https://doi.org/10.1145/2396761.2398632)|Lakshmi Ramachandran, Edward F. Gehringer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+word-order+based+graph+representation+for+relevance+identification)|4| +|[Tracing clusters in evolving graphs with node attributes](https://doi.org/10.1145/2396761.2398633)|Brigitte Boden, Stephan Günnemann, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracing+clusters+in+evolving+graphs+with+node+attributes)|4| +|[Semantically coherent image annotation with a learning-based keyword propagation strategy](https://doi.org/10.1145/2396761.2398657)|Chaoran Cui, Jun Ma, Shuaiqiang Wang, Shuai Gao, Tao Lian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantically+coherent+image+annotation+with+a+learning-based+keyword+propagation+strategy)|4| +|[On active learning in hierarchical classification](https://doi.org/10.1145/2396761.2398668)|Yu Cheng, Kunpeng Zhang, Yusheng Xie, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+active+learning+in+hierarchical+classification)|4| +|[Information preservation in static index pruning](https://doi.org/10.1145/2396761.2398673)|RueyCheng Chen, ChiaJung Lee, ChiungMin Tsai, Jieh Hsiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+preservation+in+static+index+pruning)|4| +|[Predicting CTR of new ads via click prediction](https://doi.org/10.1145/2396761.2398688)|Alexander Kolesnikov, Yury Logachev, Valeriy A. Topinskiy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+CTR+of+new+ads+via+click+prediction)|4| +|[Contextual evaluation of query reformulations in a search session by user simulation](https://doi.org/10.1145/2396761.2398710)|Jiepu Jiang, Daqing He, Shuguang Han, Zhen Yue, Chaoqun Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextual+evaluation+of+query+reformulations+in+a+search+session+by+user+simulation)|4| +|[PRAVDA-live: interactive knowledge harvesting](https://doi.org/10.1145/2396761.2398722)|Yafang Wang, Maximilian Dylla, Zhaochun Ren, Marc Spaniol, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRAVDA-live:+interactive+knowledge+harvesting)|4| +|[InCaToMi: integrative causal topic miner between textual and non-textual time series data](https://doi.org/10.1145/2396761.2398727)|Hyun Duk Kim, ChengXiang Zhai, Thomas A. Rietz, Daniel Diermeier, Meichun Hsu, Malú Castellanos, Carlos Ceja Limon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=InCaToMi:+integrative+causal+topic+miner+between+textual+and+non-textual+time+series+data)|4| |[Exploration of monte-carlo based probabilistic query processing in uncertain graphs](https://doi.org/10.1145/2396761.2398742)|Tobias Emrich, HansPeter Kriegel, Johannes Niedermayer, Matthias Renz, André Suhartha, Andreas Züfle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploration+of+monte-carlo+based+probabilistic+query+processing+in+uncertain+graphs)|4| -|[Efficient buffer management for piecewise linear representation of multiple data streams](https://doi.org/10.1145/2396761.2398584)|Qing Xie, Jia Zhu, Mohamed A. Sharaf, Xiaofang Zhou, Chaoyi Pang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+buffer+management+for+piecewise+linear+representation+of+multiple+data+streams)|3| -|[Managing interoperability and compleXity in health systems - MIXHS'12](https://doi.org/10.1145/2396761.2398754)|Cui Tao, MattMouley Bouamrane||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Managing+interoperability+and+compleXity+in+health+systems+-+MIXHS'12)|3| -|[Weighted linear kernel with tree transformed features for malware detection](https://doi.org/10.1145/2396761.2398622)|Prakash Mandayam Comar, Lei Liu, Sabyasachi Saha, Antonio Nucci, PangNing Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+linear+kernel+with+tree+transformed+features+for+malware+detection)|2| -|[Predicting CTR of new ads via click prediction](https://doi.org/10.1145/2396761.2398688)|Alexander Kolesnikov, Yury Logachev, Valeriy A. Topinskiy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+CTR+of+new+ads+via+click+prediction)|2| +|[Dynamic covering for recommendation systems](https://doi.org/10.1145/2396761.2396769)|Ioannis Antonellis, Anish Das Sarma, Shaddin Dughmi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+covering+for+recommendation+systems)|3| +|[A general framework to encode heterogeneous information sources for contextual pattern mining](https://doi.org/10.1145/2396761.2396774)|Weishan Dong, Wei Fan, Lei Shi, Changjin Zhou, Xifeng Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+general+framework+to+encode+heterogeneous+information+sources+for+contextual+pattern+mining)|3| +|[A filter-based protocol for continuous queries over imprecise location data](https://doi.org/10.1145/2396761.2396810)|Yifan Jin, Reynold Cheng, Ben Kao, Kamyiu Lam, Yinuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+filter-based+protocol+for+continuous+queries+over+imprecise+location+data)|3| +|[Comprehension-based result snippets](https://doi.org/10.1145/2396761.2398405)|Abhijith Kashyap, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Comprehension-based+result+snippets)|3| +|[Discretionary social network data revelation with a user-centric utility guarantee](https://doi.org/10.1145/2396761.2398475)|Yi Song, Panagiotis Karras, Sadegh Nobari, Giorgos Cheliotis, Mingqiang Xue, Stéphane Bressan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discretionary+social+network+data+revelation+with+a+user-centric+utility+guarantee)|3| +|[Hierarchical topic integration through semi-supervised hierarchical topic modeling](https://doi.org/10.1145/2396761.2398483)|Xianling Mao, Jing He, Hongfei Yan, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+topic+integration+through+semi-supervised+hierarchical+topic+modeling)|3| +|[Query-focused multi-document summarization based on query-sensitive feature space](https://doi.org/10.1145/2396761.2398491)|Wenpeng Yin, Yulong Pei, Fan Zhang, Lian'en Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-focused+multi-document+summarization+based+on+query-sensitive+feature+space)|3| +|[Exploring the existing category hierarchy to automatically label the newly-arising topics in cQA](https://doi.org/10.1145/2396761.2398490)|Guangyou Zhou, Li Cai, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+existing+category+hierarchy+to+automatically+label+the+newly-arising+topics+in+cQA)|3| +|[Measuring website similarity using an entity-aware click graph](https://doi.org/10.1145/2396761.2398500)|Pablo N. Mendes, Peter Mika, Hugo Zaragoza, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+website+similarity+using+an+entity-aware+click+graph)|3| +|[Real-time bid optimization for group-buying ads](https://doi.org/10.1145/2396761.2398502)|Raju Balakrishnan, Rushi P. Bhatt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+bid+optimization+for+group-buying+ads)|3| +|[Content-based relevance estimation on the web using inter-document similarities](https://doi.org/10.1145/2396761.2398514)|Fiana Raiber, Oren Kurland, Moshe Tennenholtz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-based+relevance+estimation+on+the+web+using+inter-document+similarities)|3| +|[Query likelihood with negative query generation](https://doi.org/10.1145/2396761.2398520)|Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+likelihood+with+negative+query+generation)|3| +|[Sketch-based indexing of n-words](https://doi.org/10.1145/2396761.2398533)|Samuel J. Huston, J. Shane Culpepper, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sketch-based+indexing+of+n-words)|3| +|[Learning from mistakes: towards a correctable learning algorithm](https://doi.org/10.1145/2396761.2398546)|Karthik Raman, Krysta M. Svore, Ran GiladBachrach, Christopher J. C. Burges||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+from+mistakes:+towards+a+correctable+learning+algorithm)|3| +|[Credibility-based product ranking for C2C transactions](https://doi.org/10.1145/2396761.2398591)|Rong Zhang, Chaofeng Sha, Minqi Zhou, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Credibility-based+product+ranking+for+C2C+transactions)|3| +|[Outlier detection using centrality and center-proximity](https://doi.org/10.1145/2396761.2398613)|DuckHo Bae, Seo Jeong, SangWook Kim, Minsoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Outlier+detection+using+centrality+and+center-proximity)|3| +|[Learning to predict the cost-per-click for your ad words](https://doi.org/10.1145/2396761.2398623)|ChiehJen Wang, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+predict+the+cost-per-click+for+your+ad+words)|3| +|[Information propagation in social rating networks](https://doi.org/10.1145/2396761.2398620)|Priyanka Garg, Irwin King, Michael R. Lyu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+propagation+in+social+rating+networks)|3| +|[Entity resolution using search engine results](https://doi.org/10.1145/2396761.2398641)|Madian Khabsa, Pucktada Treeratpituk, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+resolution+using+search+engine+results)|3| +|[An unsupervised method for author extraction from web pages containing user-generated content](https://doi.org/10.1145/2396761.2398647)|Jing Liu, Xinying Song, Jingtian Jiang, ChinYew Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+unsupervised+method+for+author+extraction+from+web+pages+containing+user-generated+content)|3| +|[Serial position effects of clicking behavior on result pages returned by search engines](https://doi.org/10.1145/2396761.2398654)|Mingda Wu, Shan Jiang, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Serial+position+effects+of+clicking+behavior+on+result+pages+returned+by+search+engines)|3| +|[On the inference of average precision from score distributions](https://doi.org/10.1145/2396761.2398660)|Ronan Cummins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+inference+of+average+precision+from+score+distributions)|3| +|[A scalable approach for performing proximal search for verbose patent search queries](https://doi.org/10.1145/2396761.2398702)|Sumit Bhatia, Bin He, Qi He, W. Scott Spangler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+scalable+approach+for+performing+proximal+search+for+verbose+patent+search+queries)|3| +|[Recency-sensitive model of web page authority](https://doi.org/10.1145/2396761.2398708)|Maxim Zhukovskiy, Dmitry Vinogradov, Gleb Gusev, Pavel Serdyukov, Andrei M. Raigorodskii||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recency-sensitive+model+of+web+page+authority)|3| +|[Probabilistic ranking in fuzzy object databases](https://doi.org/10.1145/2396761.2398714)|Thomas Bernecker, Tobias Emrich, HansPeter Kriegel, Matthias Renz, Andreas Züfle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+ranking+in+fuzzy+object+databases)|3| +|[4Is of social bully filtering: identity, inference, influence, and intervention](https://doi.org/10.1145/2396761.2398723)|Yunfei Chen, Lanbo Zhang, Aaron Michelony, Yi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=4Is+of+social+bully+filtering:+identity,+inference,+influence,+and+intervention)|3| +|[Simultaneous realization of page-centric communication and search](https://doi.org/10.1145/2396761.2398738)|Yuhki Shiraishi, Jianwei Zhang, Yukiko Kawai, Toyokazu Akiyama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simultaneous+realization+of+page-centric+communication+and+search)|3| +|[MOUNA: mining opinions to unveil neglected arguments](https://doi.org/10.1145/2396761.2398739)|Mouna Kacimi, Johann Gamper||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MOUNA:+mining+opinions+to+unveil+neglected+arguments)|3| +|[Primates: a privacy management system for social networks](https://doi.org/10.1145/2396761.2398748)|Imen Ben Dhia, Talel Abdessalem, Mauro Sozio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Primates:+a+privacy+management+system+for+social+networks)|3| +|[Fast multi-task learning for query spelling correction](https://doi.org/10.1145/2396761.2396800)|Xu Sun, Anshumali Shrivastava, Ping Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+multi-task+learning+for+query+spelling+correction)|2| +|[Domain dependent query reformulation for web search](https://doi.org/10.1145/2396761.2398401)|Van Dang, Giridhar Kumaran, Adam D. Troy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain+dependent+query+reformulation+for+web+search)|2| +|[Crosslingual distant supervision for extracting relations of different complexity](https://doi.org/10.1145/2396761.2398411)|André Blessing, Hinrich Schütze||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crosslingual+distant+supervision+for+extracting+relations+of+different+complexity)|2| +|[Robust distributed indexing for locality-skewed workloads](https://doi.org/10.1145/2396761.2398438)|MuWoong Lee, Seungwon Hwang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+distributed+indexing+for+locality-skewed+workloads)|2| +|[Hierarchical co-clustering based on entropy splitting](https://doi.org/10.1145/2396761.2398455)|Wei Cheng, Xiang Zhang, Feng Pan, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+co-clustering+based+on+entropy+splitting)|2| +|[Automatically embedding newsworthy links to articles](https://doi.org/10.1145/2396761.2398461)|Hakan Ceylan, Ioannis Arapakis, Pinar Donmez, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatically+embedding+newsworthy+links+to+articles)|2| +|[A simple approach to the design of site-level extractors using domain-centric principles](https://doi.org/10.1145/2396761.2398464)|Chong Long, Xiubo Geng, Chang Xu, Sathiya Keerthi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+simple+approach+to+the+design+of+site-level+extractors+using+domain-centric+principles)|2| +|[Extraction of topic evolutions from references in scientific articles and its GPU acceleration](https://doi.org/10.1145/2396761.2398465)|Tomonari Masada, Atsuhiro Takasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extraction+of+topic+evolutions+from+references+in+scientific+articles+and+its+GPU+acceleration)|2| +|[Mining coherent anomaly collections on web data](https://doi.org/10.1145/2396761.2398472)|Hanbo Dai, Feida Zhu, EePeng Lim, HweeHwa Pang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+coherent+anomaly+collections+on+web+data)|2| +|[Preprocessing of informal mathematical discourse in context ofcontrolled natural language](https://doi.org/10.1145/2396761.2398487)|Raúl Ernesto Gutiérrez de Piñerez Reyes, Juan Francisco DíazFrías||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Preprocessing+of+informal+mathematical+discourse+in+context+ofcontrolled+natural+language)|2| +|[Dynamic effects of ad impressions on commercial actions in display advertising](https://doi.org/10.1145/2396761.2398510)|Joel Barajas, Ram Akella, Marius Holtan, Jaimie Kwon, Aaron Flores, Victor Andrei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+effects+of+ad+impressions+on+commercial+actions+in+display+advertising)|2| +|[Interactive and context-aware tag spell check and correction](https://doi.org/10.1145/2396761.2398534)|Francesco Bonchi, Ophir Frieder, Franco Maria Nardini, Fabrizio Silvestri, Hossein Vahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+and+context-aware+tag+spell+check+and+correction)|2| +|[Search result presentation based on faceted clustering](https://doi.org/10.1145/2396761.2398548)|Benno Stein, Tim Gollub, Dennis Hoppe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+result+presentation+based+on+faceted+clustering)|2| +|[Characterizing web search queries that match very few or no results](https://doi.org/10.1145/2396761.2398560)|Ismail Sengör Altingövde, Roi Blanco, Berkant Barla Cambazoglu, Rifat Ozcan, Erdem Sarigil, Özgür Ulusoy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+web+search+queries+that+match+very+few+or+no+results)|2| +|[Efficient buffer management for piecewise linear representation of multiple data streams](https://doi.org/10.1145/2396761.2398584)|Qing Xie, Jia Zhu, Mohamed A. Sharaf, Xiaofang Zhou, Chaoyi Pang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+buffer+management+for+piecewise+linear+representation+of+multiple+data+streams)|2| +|[Loyalty-based selection: retrieving objects that persistently satisfy criteria](https://doi.org/10.1145/2396761.2398599)|Zhitao Shen, Muhammad Aamir Cheema, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Loyalty-based+selection:+retrieving+objects+that+persistently+satisfy+criteria)|2| +|[Impact neighborhood indexing (INI) in diffusion graphs](https://doi.org/10.1145/2396761.2398598)|Jung Hyun Kim, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Impact+neighborhood+indexing+(INI)+in+diffusion+graphs)|2| +|[Optimizing data migration for cloud-based key-value stores](https://doi.org/10.1145/2396761.2398602)|Xiulei Qin, Wenbo Zhang, Wei Wang, Jun Wei, Xin Zhao, Tao Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+data+migration+for+cloud-based+key-value+stores)|2| +|[Applying weighted queries on probabilistic databases](https://doi.org/10.1145/2396761.2398603)|Sebastian Lehrack||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Applying+weighted+queries+on+probabilistic+databases)|2| +|[Fast PCA computation in a DBMS with aggregate UDFs and LAPACK](https://doi.org/10.1145/2396761.2398605)|Carlos Ordonez, Naveen Mohanam, Carlos GarciaAlvarado, Predrag T. Tosic, Edgar Martinez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+PCA+computation+in+a+DBMS+with+aggregate+UDFs+and+LAPACK)|2| +|[A probabilistic approach to correlation queries in uncertain time series data](https://doi.org/10.1145/2396761.2398607)|Mahsa Orang, Nematollaah Shiri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+approach+to+correlation+queries+in+uncertain+time+series+data)|2| +|[Maximizing revenue from strategic recommendations under decaying trust](https://doi.org/10.1145/2396761.2398621)|Paul Dütting, Monika Henzinger, Ingmar Weber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximizing+revenue+from+strategic+recommendations+under+decaying+trust)|2| +|[Mathematical equation retrieval using plain words as a query](https://doi.org/10.1145/2396761.2398653)|Shinil Kim, Seon Yang, Youngjoong Ko||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mathematical+equation+retrieval+using+plain+words+as+a+query)|2| +|[A picture paints a thousand words: a method of generating image-text timelines](https://doi.org/10.1145/2396761.2398679)|Shize Xu, Liang Kong, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+picture+paints+a+thousand+words:+a+method+of+generating+image-text+timelines)|2| +|[A new probabilistic model for top-k ranking problem](https://doi.org/10.1145/2396761.2398681)|Shuzi Niu, Yanyan Lan, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+probabilistic+model+for+top-k+ranking+problem)|2| +|[Enabling ontology based semantic queries in biomedical database systems](https://doi.org/10.1145/2396761.2398715)|Shuai Zheng, Fusheng Wang, James J. Lu, Joel H. Saltz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+ontology+based+semantic+queries+in+biomedical+database+systems)|2| +|[The nautilus analyzer: understanding and debugging data transformations](https://doi.org/10.1145/2396761.2398743)|Melanie Herschel, Hanno Eichelberger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+nautilus+analyzer:+understanding+and+debugging+data+transformations)|2| +|[Demonstrating ProApproX 2.0: a predictive query engine for probabilistic XML](https://doi.org/10.1145/2396761.2398744)|Asma Souihli, Pierre Senellart||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Demonstrating+ProApproX+2.0:+a+predictive+query+engine+for+probabilistic+XML)|2| +|[MADden: query-driven statistical text analytics](https://doi.org/10.1145/2396761.2398746)|Christan Earl Grant, Joirdan Gumbs, Kun Li, Daisy Zhe Wang, George Chitouras||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MADden:+query-driven+statistical+text+analytics)|2| +|[The 2012 international workshop on web-scale knowledge representation, retrieval, and reasoning](https://doi.org/10.1145/2396761.2398755)|Spyros Kotoulas, Yi Zeng, Zhisheng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+2012+international+workshop+on+web-scale+knowledge+representation,+retrieval,+and+reasoning)|2| +|[PLEAD 2012: politics, elections and data](https://doi.org/10.1145/2396761.2398759)|Ingmar Weber, AnaMaria Popescu, Marco Pennacchiotti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PLEAD+2012:+politics,+elections+and+data)|2| +|[Booksonline'12: 5th workshop on online books, complementary social media and their impact](https://doi.org/10.1145/2396761.2398757)|Gabriella Kazai, Monica Landoni, Carsten Eickhoff, Peter Brusilovsky||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Booksonline'12:+5th+workshop+on+online+books,+complementary+social+media+and+their+impact)|2| +|[Fifth workshop on exploiting semantic annotations in information retrieval: ESAIR"12)](https://doi.org/10.1145/2396761.2398761)|Jaap Kamps, Jussi Karlgren, Peter Mika, Vanessa Murdock||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fifth+workshop+on+exploiting+semantic+annotations+in+information+retrieval:+ESAIR"12))|2| +|[PIKM 2012: 5th ACM workshop for PhD students in information and knowledge management](https://doi.org/10.1145/2396761.2398763)|Aparna S. Varde, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIKM+2012:+5th+ACM+workshop+for+PhD+students+in+information+and+knowledge+management)|2| +|[Compressed data structures with relevance](https://doi.org/10.1145/2396761.2396765)|Jeffrey Scott Vitter||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compressed+data+structures+with+relevance)|1| +|[Density index and proximity search in large graphs](https://doi.org/10.1145/2396761.2396794)|Nan Li, Xifeng Yan, Zhen Wen, Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Density+index+and+proximity+search+in+large+graphs)|1| +|[RDF pattern matching using sortable views](https://doi.org/10.1145/2396761.2396804)|Zhihong Chong, He Chen, Zhenjie Zhang, Hu Shu, Guilin Qi, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RDF+pattern+matching+using+sortable+views)|1| +|[Multiview hierarchical bayesian regression model andapplication to online advertising](https://doi.org/10.1145/2396761.2396825)|Tianbing Xu, Ruofei Zhang, Zhen Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiview+hierarchical+bayesian+regression+model+andapplication+to+online+advertising)|1| +|[Enabling direct interest-aware audience selection](https://doi.org/10.1145/2396761.2396836)|Ariel Fuxman, Anitha Kannan, Zhenhui Li, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+direct+interest-aware+audience+selection)|1| +|[Two-part segmentation of text documents](https://doi.org/10.1145/2396761.2396862)|P. Deepak, Karthik Visweswariah, Nirmalie Wiratunga, Sadiq Sani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Two-part+segmentation+of+text+documents)|1| +|[Being picky: processing top-k queries with set-defined selections](https://doi.org/10.1145/2396761.2396877)|Aleksandar Stupar, Sebastian Michel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Being+picky:+processing+top-k+queries+with+set-defined+selections)|1| +|[Labeling by landscaping: classifying tokens in context by pruning and decorating trees](https://doi.org/10.1145/2396761.2398412)|Siddharth Patwardhan, Branimir Boguraev, Apoorv Agarwal, Alessandro Moschitti, Jennifer ChuCarroll||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Labeling+by+landscaping:+classifying+tokens+in+context+by+pruning+and+decorating+trees)|1| +|[A novel local patch framework for fixing supervised learning models](https://doi.org/10.1145/2396761.2398425)|Yilei Wang, Bingzheng Wei, Jun Yan, Yang Hu, ZhiHong Deng, Zheng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+novel+local+patch+framework+for+fixing+supervised+learning+models)|1| +|[Modeling semantic relations between visual attributes and object categories via dirichlet forest prior](https://doi.org/10.1145/2396761.2398428)|Xin Chen, Xiaohua Hu, Zhongna Zhou, Yuan An, Tingting He, E. K. Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+semantic+relations+between+visual+attributes+and+object+categories+via+dirichlet+forest+prior)|1| +|[Generating facets for phone-based navigation of structured data](https://doi.org/10.1145/2396761.2398431)|Krishna Kummamuru, Ajith Jujjuru, Mayuri Duggirala||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+facets+for+phone-based+navigation+of+structured+data)|1| +|[Effective and efficient?: bilingual sentiment lexicon extraction using collocation alignment](https://doi.org/10.1145/2396761.2398469)|Zheng Lin, Songbo Tan, Xueqi Cheng, Xueke Xu, Weisong Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+and+efficient?:+bilingual+sentiment+lexicon+extraction+using+collocation+alignment)|1| +|[PriSM: discovering and prioritizing severe technical issues from product discussion forums](https://doi.org/10.1145/2396761.2398486)|Rashmi Gangadharaiah, Rose Catherine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PriSM:+discovering+and+prioritizing+severe+technical+issues+from+product+discussion+forums)|1| +|[A probabilistic approach to mining geospatial knowledge from social annotations](https://doi.org/10.1145/2396761.2398504)|Suradej Intagorn, Kristina Lerman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+approach+to+mining+geospatial+knowledge+from+social+annotations)|1| +|[Balanced coverage of aspects for text summarization](https://doi.org/10.1145/2396761.2398509)|Takuya Makino, Hiroya Takamura, Manabu Okumura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balanced+coverage+of+aspects+for+text+summarization)|1| +|[Customizing search results for non-native speakers](https://doi.org/10.1145/2396761.2398526)|Theodoros Lappas, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Customizing+search+results+for+non-native+speakers)|1| +|[Do ads compete or collaborate?: designing click models with full relationship incorporated](https://doi.org/10.1145/2396761.2398528)|Xin Xin, Irwin King, Ritesh Agrawal, Michael R. Lyu, Heyan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Do+ads+compete+or+collaborate?:+designing+click+models+with+full+relationship+incorporated)|1| +|[Structured query reformulations in commerce search](https://doi.org/10.1145/2396761.2398538)|Sreenivas Gollapudi, Samuel Ieong, Anitha Kannan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+query+reformulations+in+commerce+search)|1| +|[Discovering logical knowledge for deep question answering](https://doi.org/10.1145/2396761.2398544)|Zhao Liu, Xipeng Qiu, Ling Cao, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+logical+knowledge+for+deep+question+answering)|1| +|[Entity centric query expansion for enterprise search](https://doi.org/10.1145/2396761.2398551)|Xitong Liu, Hui Fang, Fei Chen, Min Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+centric+query+expansion+for+enterprise+search)|1| +|[User activity profiling with multi-layer analysis](https://doi.org/10.1145/2396761.2398566)|Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+activity+profiling+with+multi-layer+analysis)|1| +|[Mining sentiment terminology through time](https://doi.org/10.1145/2396761.2398572)|Hadi Amiri, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+sentiment+terminology+through+time)|1| +|[Finding the optimal path over multi-cost graphs](https://doi.org/10.1145/2396761.2398586)|Yajun Yang, Jeffrey Xu Yu, Hong Gao, Jianzhong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+the+optimal+path+over+multi-cost+graphs)|1| +|[A new tool for multi-level partitioning in teradata](https://doi.org/10.1145/2396761.2398604)|YoungKyoon Suh, Ahmad Ghazal, Alain Crolotte, Pekka Kostamaa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+tool+for+multi-level+partitioning+in+teradata)|1| +|[A tensor encoding model for semantic processing](https://doi.org/10.1145/2396761.2398617)|Michael Symonds, Peter D. Bruza, Laurianne Sitbon, Ian W. Turner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tensor+encoding+model+for+semantic+processing)|1| +|[Polygene-based evolution: a novel framework for evolutionary algorithms](https://doi.org/10.1145/2396761.2398616)|Shuaiqiang Wang, Byron J. Gao, Shuangling Wang, Guibao Cao, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Polygene-based+evolution:+a+novel+framework+for+evolutionary+algorithms)|1| +|[The twitaholic next door.: scalable friend recommender system using a concept-sensitive hash function](https://doi.org/10.1145/2396761.2398619)|Patrick Bamba, Julien Subercaze, Christophe Gravier, Nabil Benmira, Jimi Fontaine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+twitaholic+next+door.:+scalable+friend+recommender+system+using+a+concept-sensitive+hash+function)|1| +|[On empirical tradeoffs in large scale hierarchical classification](https://doi.org/10.1145/2396761.2398625)|Rohit Babbar, Ioannis Partalas, Éric Gaussier, Cécile Amblard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+empirical+tradeoffs+in+large+scale+hierarchical+classification)|1| +|[Large scale analysis of changes in english vocabulary over recent time](https://doi.org/10.1145/2396761.2398682)|Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large+scale+analysis+of+changes+in+english+vocabulary+over+recent+time)|1| +|[Concavity in IR models](https://doi.org/10.1145/2396761.2398686)|Stéphane Clinchant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concavity+in+IR+models)|1| +|[An examination of content farms in web search using crowdsourcing](https://doi.org/10.1145/2396761.2398689)|Richard McCreadie, Craig Macdonald, Iadh Ounis, Jim Giles, Ferris Jabr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+examination+of+content+farms+in+web+search+using+crowdsourcing)|1| +|[Session-based query performance prediction](https://doi.org/10.1145/2396761.2398692)|Andrey Kustarev, Yury Ustinovsky, Anna Mazur, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Session-based+query+performance+prediction)|1| +|[PhotoFall: discovering weblog stories through photographs](https://doi.org/10.1145/2396761.2398695)|Christopher Wienberg, Andrew S. Gordon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PhotoFall:+discovering+weblog+stories+through+photographs)|1| +|[Data filtering in humor generation: comparative analysis of hit rate and co-occurrence rankings as a method to choose usable pun candidates](https://doi.org/10.1145/2396761.2398698)|Pawel Dybala, Rafal Rzepka, Kenji Araki, Kohichi Sayama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+filtering+in+humor+generation:+comparative+analysis+of+hit+rate+and+co-occurrence+rankings+as+a+method+to+choose+usable+pun+candidates)|1| +|[Predicting primary categories of business listings for local search](https://doi.org/10.1145/2396761.2398699)|Changsung Kang, Jeehaeng Lee, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+primary+categories+of+business+listings+for+local+search)|1| +|[Information-complete and redundancy-free keyword search over large data graphs](https://doi.org/10.1145/2396761.2398712)|Byron J. Gao, Zhumin Chen, Qi Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information-complete+and+redundancy-free+keyword+search+over+large+data+graphs)|1| +|[Lonomics Atlas: a tool to explore interconnected ionomic, genomic and environmental data](https://doi.org/10.1145/2396761.2398724)|Eduard C. Dragut, Mourad Ouzzani, Amgad Madkour, Nabeel Mohamed, Peter Baker, David E. Salt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lonomics+Atlas:+a+tool+to+explore+interconnected+ionomic,+genomic+and+environmental+data)|1| +|[CarbonDB: a semantic life cycle inventory database](https://doi.org/10.1145/2396761.2398725)|Benjamin Bertin, VasileMarian Scuturici, JeanMarie Pinon, Emmanuel Risler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CarbonDB:+a+semantic+life+cycle+inventory+database)|1| +|[MAGIK: managing completeness of data](https://doi.org/10.1145/2396761.2398741)|Ognjen Savkovic, Paramita Mirza, Sergey Paramonov, Werner Nutt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MAGIK:+managing+completeness+of+data)|1| +|[CloudDB 2012: fourth international workshop on cloud data management](https://doi.org/10.1145/2396761.2398752)|Xiaofeng Meng, Adam Silberstein, Fusheng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloudDB+2012:+fourth+international+workshop+on+cloud+data+management)|1| +|[CDMW 2012 - city data management workshop: workshop summary](https://doi.org/10.1145/2396761.2398753)|Veli Bicer, Thanh Tran, Fatma Ozcan, Opher Etzion||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CDMW+2012+-+city+data+management+workshop:+workshop+summary)|1| +|[Managing interoperability and compleXity in health systems - MIXHS'12](https://doi.org/10.1145/2396761.2398754)|Cui Tao, MattMouley Bouamrane||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Managing+interoperability+and+compleXity+in+health+systems+-+MIXHS'12)|1| |[Learning similarity measures based on random walks](https://doi.org/10.1145/2396761.2396764)|William W. Cohen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+similarity+measures+based+on+random+walks)|0| -|[CloudDB 2012: fourth international workshop on cloud data management](https://doi.org/10.1145/2396761.2398752)|Xiaofeng Meng, Adam Silberstein, Fusheng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloudDB+2012:+fourth+international+workshop+on+cloud+data+management)|0| +|[Maximum margin clustering on evolutionary data](https://doi.org/10.1145/2396761.2396842)|Xuhui Fan, Lin Zhu, Longbing Cao, Xia Cui, YewSoon Ong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximum+margin+clustering+on+evolutionary+data)|0| +|[Right-protected data publishing with hierarchical clustering preservation](https://doi.org/10.1145/2396761.2396845)|Michail Vlachos, Aleksander Wieczorek, Johannes Schneider||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Right-protected+data+publishing+with+hierarchical+clustering+preservation)|0| +|[Non-stationary bayesian networks based on perfect simulation](https://doi.org/10.1145/2396761.2398408)|Yi Jia, Wenrong Zeng, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-stationary+bayesian+networks+based+on+perfect+simulation)|0| +|[iSampling: framework for developing sampling methods considering user's interest](https://doi.org/10.1145/2396761.2398494)|Jinoh Oh, Hwanjo Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iSampling:+framework+for+developing+sampling+methods+considering+user's+interest)|0| +|[Top-k retrieval using conditional preference networks](https://doi.org/10.1145/2396761.2398576)|Hongbing Wang, Xuan Zhou, Wujin Chen, Peisheng Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-k+retrieval+using+conditional+preference+networks)|0| +|[SliceSort: efficient sorting of hierarchical data](https://doi.org/10.1145/2396761.2398583)|Quoc Trung Tran, CheeYong Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SliceSort:+efficient+sorting+of+hierarchical+data)|0| +|[Clustering Wikipedia infoboxes to discover their types](https://doi.org/10.1145/2396761.2398588)|Thanh Hoang Nguyen, Huong Dieu Nguyen, Viviane Pereira Moreira, Juliana Freire||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+Wikipedia+infoboxes+to+discover+their+types)|0| +|[A positional access method for relational databases](https://doi.org/10.1145/2396761.2398594)|Dongzhe Ma, Jianhua Feng, Guoliang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+positional+access+method+for+relational+databases)|0| +|[Importance weighted passive learning](https://doi.org/10.1145/2396761.2398611)|Shuaiqiang Wang, Xiaoming Xi, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Importance+weighted+passive+learning)|0| +|[A tag-centric discriminative model for web objects classification](https://doi.org/10.1145/2396761.2398612)|Lina Yao, Quan Z. Sheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tag-centric+discriminative+model+for+web+objects+classification)|0| +|[Accelerating locality preserving nonnegative matrix factorization](https://doi.org/10.1145/2396761.2398618)|Guanhong Yao, Deng Cai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accelerating+locality+preserving+nonnegative+matrix+factorization)|0| +|[Text classification with relatively small positive documents and unlabeled data](https://doi.org/10.1145/2396761.2398629)|Fumiyo Fukumoto, Takeshi Yamamoto, Suguru Matsuyoshi, Yoshimi Suzuki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+classification+with+relatively+small+positive+documents+and+unlabeled+data)|0| +|[Parallel proximal support vector machine for high-dimensional pattern classification](https://doi.org/10.1145/2396761.2398638)|Zhenfeng Zhu, Xingquan Zhu, Yangdong Ye, YueFei Guo, Xiangyang Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+proximal+support+vector+machine+for+high-dimensional+pattern+classification)|0| +|[Finding influential products on social domination game](https://doi.org/10.1145/2396761.2398640)|Jinyoung Yeo, JinWoo Park, Seungwon Hwang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+influential+products+on+social+domination+game)|0| +|[Selecting expansion terms as a set via integer linear programming](https://doi.org/10.1145/2396761.2398651)|Qi Zhang, Yan Wu, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selecting+expansion+terms+as+a+set+via+integer+linear+programming)|0| +|[An evaluation and enhancement of densitometric fragmentation for content slicing reuse](https://doi.org/10.1145/2396761.2398652)|Killian Levacher, Séamus Lawless, Vincent Wade||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+evaluation+and+enhancement+of+densitometric+fragmentation+for+content+slicing+reuse)|0| +|[How do humans distinguish different people with identical names on the web?](https://doi.org/10.1145/2396761.2398670)|Harumi Murakami, Yuki Miyake||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+do+humans+distinguish+different+people+with+identical+names+on+the+web?)|0| +|[Improving the performance of the reinforcement learning model for answering complex questions](https://doi.org/10.1145/2396761.2398676)|Yllias Chali, Sadid A. Hasan, Kaisar Imam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+the+performance+of+the+reinforcement+learning+model+for+answering+complex+questions)|0| +|[Relation regularized subspace recommending for related scientific articles](https://doi.org/10.1145/2396761.2398677)|Qing Zhang, Jianwu Li, Zhiping Zhang, Li Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relation+regularized+subspace+recommending+for+related+scientific+articles)|0| +|[Topic based pose relevance learning in dance archives](https://doi.org/10.1145/2396761.2398694)|Reede Ren, John P. Collomosse, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic+based+pose+relevance+learning+in+dance+archives)|0| +|[RESQ: rank-energy selective query forwarding for distributed search systems](https://doi.org/10.1145/2396761.2398696)|Amin Y. Teymorian, Xiao Qin, Ophir Frieder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RESQ:+rank-energy+selective+query+forwarding+for+distributed+search+systems)|0| +|[SRGSIS: a novel framework based on social relationship graph for social image search](https://doi.org/10.1145/2396761.2398705)|Bo Lu, Ye Yuan, Guoren Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SRGSIS:+a+novel+framework+based+on+social+relationship+graph+for+social+image+search)|0| +|[Estimating query difficulty for news prediction retrieval](https://doi.org/10.1145/2396761.2398707)|Nattiya Kanhabua, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+query+difficulty+for+news+prediction+retrieval)|0| +|[Similarity search in 3D object-based video data](https://doi.org/10.1145/2396761.2398716)|Jakub Lokoc, Jürgen Wünschmann, Tomás Skopal, Albrecht Rothermel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity+search+in+3D+object-based+video+data)|0| +|[LUKe and MIKe: learning from user knowledge and managing interactive knowledge extraction](https://doi.org/10.1145/2396761.2398721)|Steffen Metzger, Michael Stoll, Katja Hose, Ralf Schenkel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LUKe+and+MIKe:+learning+from+user+knowledge+and+managing+interactive+knowledge+extraction)|0| +|[A tool for automated evaluation of algorithms](https://doi.org/10.1145/2396761.2398728)|Philipp Kranen, Stephan Wels, Tim Rohlfs, Sebastian Raubach, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tool+for+automated+evaluation+of+algorithms)|0| +|[Cager: a framework for cross-page search](https://doi.org/10.1145/2396761.2398733)|Zhumin Chen, Byron J. Gao, Qi Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cager:+a+framework+for+cross-page+search)|0| +|[Gumshoe quality toolkit: administering programmable search](https://doi.org/10.1145/2396761.2398737)|Zhuowei Bao, Benny Kimelfeld, Yunyao Li, Sriram Raghavan, Huahai Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gumshoe+quality+toolkit:+administering+programmable+search)|0| +|[STFMap: query- and feature-driven visualization of large time series data sets](https://doi.org/10.1145/2396761.2398747)|K. Selçuk Candan, Rosaria Rossini, Maria Luisa Sapino, Xiaolan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=STFMap:+query-+and+feature-driven+visualization+of+large+time+series+data+sets)|0| +|[DUBMMSM'12: international workshop on data-driven user behavioral modeling and mining from social media](https://doi.org/10.1145/2396761.2398751)|Jalal Mahmud, James Caverlee, Jeffrey Nichols, John O'Donovan, Michelle X. Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DUBMMSM'12:+international+workshop+on+data-driven+user+behavioral+modeling+and+mining+from+social+media)|0| +|[DTMBIO 2012: international workshop on data and text mining in biomedical informatics](https://doi.org/10.1145/2396761.2398758)|Min Song, Doheon Lee, Hua Xu, Sophia Ananiadou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DTMBIO+2012:+international+workshop+on+data+and+text+mining+in+biomedical+informatics)|0| +|[SHB 2012: international workshop on smart health and wellbeing](https://doi.org/10.1145/2396761.2398756)|Christopher C. Yang, Hsinchun Chen, Howard D. Wactlar, Carlo Combi, Xuning Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SHB+2012:+international+workshop+on+smart+health+and+wellbeing)|0| |[First international workshop on information and knowledge management for developing region](https://doi.org/10.1145/2396761.2398762)|Rakesh Agrawal, Douglas W. Oard, Nitendra Rajput||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=First+international+workshop+on+information+and+knowledge+management+for+developing+region)|0| |[WIDM 2012: the 12th international workshop on web information and data management](https://doi.org/10.1145/2396761.2398764)|George H. L. Fletcher, Prasenjit Mitra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WIDM+2012:+the+12th+international+workshop+on+web+information+and+data+management)|0| +|[DOLAP 2012 workshop summary](https://doi.org/10.1145/2396761.2398765)|Matteo Golfarelli, IlYeol Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DOLAP+2012+workshop+summary)|0| diff --git a/papers/cikm/cikm2013.md b/papers/cikm/cikm2013.md index 95a551a1..47c05008 100644 --- a/papers/cikm/cikm2013.md +++ b/papers/cikm/cikm2013.md @@ -2,384 +2,384 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[Scholarly big data: information extraction and data mining](https://doi.org/10.1145/2505515.2527109)|C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scholarly+big+data:+information+extraction+and+data+mining)|0| -|[Usability in machine learning at scale with graphlab](https://doi.org/10.1145/2505515.2527108)|Carlos Guestrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Usability+in+machine+learning+at+scale+with+graphlab)|0| -|[One size does not fit all: multi-granularity search of web forums](https://doi.org/10.1145/2505515.2505745)|Gayatree Ganu, Amélie Marian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=One+size+does+not+fit+all:+multi-granularity+search+of+web+forums)|0| +|[Learning deep structured semantic models for web search using clickthrough data](https://doi.org/10.1145/2505515.2505665)|PoSen Huang, Xiaodong He, Jianfeng Gao, Li Deng, Alex Acero, Larry P. Heck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+deep+structured+semantic+models+for+web+search+using+clickthrough+data)|752| +|[Inferring anchor links across multiple heterogeneous social networks](https://doi.org/10.1145/2505515.2505531)|Xiangnan Kong, Jiawei Zhang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+anchor+links+across+multiple+heterogeneous+social+networks)|193| +|[Personalized point-of-interest recommendation by mining users' preference transition](https://doi.org/10.1145/2505515.2505639)|Xin Liu, Yong Liu, Karl Aberer, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+point-of-interest+recommendation+by+mining+users'+preference+transition)|139| +|[CQArank: jointly model topics and expertise in community question answering](https://doi.org/10.1145/2505515.2505720)|Liu Yang, Minghui Qiu, Swapna Gottipati, Feida Zhu, Jing Jiang, Huiping Sun, Zhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CQArank:+jointly+model+topics+and+expertise+in+community+question+answering)|119| +|[Building a large-scale corpus for evaluating event detection on twitter](https://doi.org/10.1145/2505515.2505695)|Andrew James McMinn, Yashar Moshfeghi, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+a+large-scale+corpus+for+evaluating+event+detection+on+twitter)|102| +|[StaticGreedy: solving the scalability-accuracy dilemma in influence maximization](https://doi.org/10.1145/2505515.2505541)|Suqi Cheng, Huawei Shen, Junming Huang, Guoqing Zhang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=StaticGreedy:+solving+the+scalability-accuracy+dilemma+in+influence+maximization)|91| +|[Location recommendation for out-of-town users in location-based social networks](https://doi.org/10.1145/2505515.2505637)|Gregory Ference, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+recommendation+for+out-of-town+users+in+location-based+social+networks)|88| +|[Location prediction in social media based on tie strength](https://doi.org/10.1145/2505515.2505544)|Jeffrey McGee, James Caverlee, Zhiyuan Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+prediction+in+social+media+based+on+tie+strength)|82| +|[Overlapping community detection using seed set expansion](https://doi.org/10.1145/2505515.2505535)|Joyce Jiyoung Whang, David F. Gleich, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Overlapping+community+detection+using+seed+set+expansion)|80| +|[Interactive collaborative filtering](https://doi.org/10.1145/2505515.2505690)|Xiaoxue Zhao, Weinan Zhang, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+collaborative+filtering)|77| +|[Beyond clicks: query reformulation as a predictor of search satisfaction](https://doi.org/10.1145/2505515.2505682)|Ahmed Hassan Awadallah, Xiaolin Shi, Nick Craswell, Bill Ramsey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+clicks:+query+reformulation+as+a+predictor+of+search+satisfaction)|75| +|[Uncovering collusive spammers in Chinese review websites](https://doi.org/10.1145/2505515.2505700)|Chang Xu, Jie Zhang, Kuiyu Chang, Chong Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+collusive+spammers+in+Chinese+review+websites)|73| +|[Users versus models: what observation tells us about effectiveness metrics](https://doi.org/10.1145/2505515.2507665)|Alistair Moffat, Paul Thomas, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Users+versus+models:+what+observation+tells+us+about+effectiveness+metrics)|66| +|[On popularity prediction of videos shared in online social networks](https://doi.org/10.1145/2505515.2505523)|Haitao Li, Xiaoqiang Ma, Feng Wang, Jiangchuan Liu, Ke Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+popularity+prediction+of+videos+shared+in+online+social+networks)|62| +|[G-tree: an efficient index for KNN search on road networks](https://doi.org/10.1145/2505515.2505749)|Ruicheng Zhong, Guoliang Li, KianLee Tan, Lizhu Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-tree:+an+efficient+index+for+KNN+search+on+road+networks)|58| +|[Graph-of-word and TW-IDF: new approach to ad hoc IR](https://doi.org/10.1145/2505515.2505671)|François Rousseau, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-of-word+and+TW-IDF:+new+approach+to+ad+hoc+IR)|57| +|[Directing exploratory search with interactive intent modeling](https://doi.org/10.1145/2505515.2505644)|Tuukka Ruotsalo, Jaakko Peltonen, Manuel J. A. Eugster, Dorota Glowacka, Ksenia Konyushkova, Kumaripaba Athukorala, Ilkka Kosunen, Aki Reijonen, Petri Myllymäki, Giulio Jacucci, Samuel Kaski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Directing+exploratory+search+with+interactive+intent+modeling)|56| +|[Building user profiles from topic models for personalised search](https://doi.org/10.1145/2505515.2505642)|Morgan Harvey, Fabio Crestani, Mark James Carman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+user+profiles+from+topic+models+for+personalised+search)|56| +|[Modeling temporal effects of human mobile behavior on location-based social networks](https://doi.org/10.1145/2505515.2505616)|Huiji Gao, Jiliang Tang, Xia Hu, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+temporal+effects+of+human+mobile+behavior+on+location-based+social+networks)|54| +|[PATRIC: a parallel algorithm for counting triangles in massive networks](https://doi.org/10.1145/2505515.2505545)|Shaikh Arifuzzaman, Maleq Khan, Madhav V. Marathe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PATRIC:+a+parallel+algorithm+for+counting+triangles+in+massive+networks)|53| +|[Where shall we go today?: planning touristic tours with tripbuilder](https://doi.org/10.1145/2505515.2505643)|Igo Ramalho Brilhante, José Antônio Fernandes de Macêdo, Franco Maria Nardini, Raffaele Perego, Chiara Renso||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+shall+we+go+today?:+planning+touristic+tours+with+tripbuilder)|50| +|[Discovering coherent topics using general knowledge](https://doi.org/10.1145/2505515.2505519)|Zhiyuan Chen, Arjun Mukherjee, Bing Liu, Meichun Hsu, Malú Castellanos, Riddhiman Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+coherent+topics+using+general+knowledge)|48| +|[Personalized influence maximization on social networks](https://doi.org/10.1145/2505515.2505571)|Jing Guo, Peng Zhang, Chuan Zhou, Yanan Cao, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+influence+maximization+on+social+networks)|47| +|[Robust question answering over the web of linked data](https://doi.org/10.1145/2505515.2505677)|Mohamed Yahya, Klaus Berberich, Shady Elbassuoni, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+question+answering+over+the+web+of+linked+data)|47| +|[Predicting retweet count using visual cues](https://doi.org/10.1145/2505515.2507824)|Ethem F. Can, Hüseyin Oktay, R. Manmatha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+retweet+count+using+visual+cues)|47| +|[Social media news communities: gatekeeping, coverage, and statement bias](https://doi.org/10.1145/2505515.2505623)|Diego SáezTrumper, Carlos Castillo, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+media+news+communities:+gatekeeping,+coverage,+and+statement+bias)|44| +|[Learning relatedness measures for entity linking](https://doi.org/10.1145/2505515.2505711)|Diego Ceccarelli, Claudio Lucchese, Salvatore Orlando, Raffaele Perego, Salvatore Trani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+relatedness+measures+for+entity+linking)|43| +|[Multimedia summarization for trending topics in microblogs](https://doi.org/10.1145/2505515.2505652)|Jingwen Bian, Yang Yang, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multimedia+summarization+for+trending+topics+in+microblogs)|43| +|[An efficient MapReduce algorithm for counting triangles in a very large graph](https://doi.org/10.1145/2505515.2505563)|HaMyung Park, ChinWan Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+MapReduce+algorithm+for+counting+triangles+in+a+very+large+graph)|42| +|[On mining mobile apps usage behavior for predicting apps usage in smartphones](https://doi.org/10.1145/2505515.2505529)|ZhungXun Liao, YiChin Pan, WenChih Peng, PoRuey Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+mining+mobile+apps+usage+behavior+for+predicting+apps+usage+in+smartphones)|41| +|[Robust models of mouse movement on dynamic web search results pages](https://doi.org/10.1145/2505515.2505717)|Fernando Diaz, Ryen White, Georg Buscher, Daniel J. Liebling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+models+of+mouse+movement+on+dynamic+web+search+results+pages)|41| +|[Automatic ad format selection via contextual bandits](https://doi.org/10.1145/2505515.2514700)|Liang Tang, Rómer Rosales, Ajit Singh, Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+ad+format+selection+via+contextual+bandits)|38| +|[A two-phase algorithm for mining sequential patterns with differential privacy](https://doi.org/10.1145/2505515.2505553)|Luca Bonomi, Li Xiong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+two-phase+algorithm+for+mining+sequential+patterns+with+differential+privacy)|37| +|[Adaptive co-training SVM for sentiment classification on tweets](https://doi.org/10.1145/2505515.2505569)|Shenghua Liu, Fuxin Li, Fangtao Li, Xueqi Cheng, Huawei Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+co-training+SVM+for+sentiment+classification+on+tweets)|37| +|[Fast and scalable reachability queries on graphs by pruned labeling with landmarks and paths](https://doi.org/10.1145/2505515.2505724)|Yosuke Yano, Takuya Akiba, Yoichi Iwata, Yuichi Yoshida||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+scalable+reachability+queries+on+graphs+by+pruned+labeling+with+landmarks+and+paths)|36| +|[Zero-shot video retrieval using content and concepts](https://doi.org/10.1145/2505515.2507880)|Jeffrey Dalton, James Allan, Pranav Mirajkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Zero-shot+video+retrieval+using+content+and+concepts)|36| +|["All roads lead to Rome": optimistic recovery for distributed iterative data processing](https://doi.org/10.1145/2505515.2505753)|Sebastian Schelter, Stephan Ewen, Kostas Tzoumas, Volker Markl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="All+roads+lead+to+Rome":+optimistic+recovery+for+distributed+iterative+data+processing)|36| +|[Re-ranking for joint named-entity recognition and linking](https://doi.org/10.1145/2505515.2505601)|Avirup Sil, Alexander Yates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Re-ranking+for+joint+named-entity+recognition+and+linking)|36| +|[Community-based user recommendation in uni-directional social networks](https://doi.org/10.1145/2505515.2505533)|Gang Zhao, MongLi Lee, Wynne Hsu, Wei Chen, Haoji Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-based+user+recommendation+in+uni-directional+social+networks)|35| +|[A unified graph model for personalized query-oriented reference paper recommendation](https://doi.org/10.1145/2505515.2507831)|Fanqi Meng, Dehong Gao, Wenjie Li, Xu Sun, Yuexian Hou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+graph+model+for+personalized+query-oriented+reference+paper+recommendation)|35| +|[Linear-time enumeration of maximal K-edge-connected subgraphs in large networks by random contraction](https://doi.org/10.1145/2505515.2505751)|Takuya Akiba, Yoichi Iwata, Yuichi Yoshida||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linear-time+enumeration+of+maximal+K-edge-connected+subgraphs+in+large+networks+by+random+contraction)|34| +|[Software plagiarism detection: a graph-based approach](https://doi.org/10.1145/2505515.2507848)|DongKyu Chae, Jiwoon Ha, SangWook Kim, Boojoong Kang, Eul Gyu Im||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Software+plagiarism+detection:+a+graph-based+approach)|34| +|[Predicting user activity level in social networks](https://doi.org/10.1145/2505515.2505518)|Yin Zhu, Erheng Zhong, Sinno Jialin Pan, Xiao Wang, Minzhe Zhou, Qiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+user+activity+level+in+social+networks)|33| +|[Spatio-temporal and events based analysis of topic popularity in twitter](https://doi.org/10.1145/2505515.2505525)|Sebastien Ardon, Amitabha Bagchi, Anirban Mahanti, Amit Ruhela, Aaditeshwar Seth, Rudra Mohan Tripathy, Sipat Triukose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatio-temporal+and+events+based+analysis+of+topic+popularity+in+twitter)|32| +|[UNIK: unsupervised social network spam detection](https://doi.org/10.1145/2505515.2505581)|Enhua Tan, Lei Guo, Songqing Chen, Xiaodong Zhang, Yihong Eric Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UNIK:+unsupervised+social+network+spam+detection)|32| +|[On sampling the wisdom of crowds: random vs. expert sampling of the twitter stream](https://doi.org/10.1145/2505515.2505615)|Saptarshi Ghosh, Muhammad Bilal Zafar, Parantapa Bhattacharya, Naveen Kumar Sharma, Niloy Ganguly, P. Krishna Gummadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+sampling+the+wisdom+of+crowds:+random+vs.+expert+sampling+of+the+twitter+stream)|32| +|[To stay or not to stay: modeling engagement dynamics in social graphs](https://doi.org/10.1145/2505515.2505561)|Fragkiskos D. Malliaros, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+stay+or+not+to+stay:+modeling+engagement+dynamics+in+social+graphs)|31| +|[How the live web feels about events](https://doi.org/10.1145/2505515.2505572)|George Valkanas, Dimitrios Gunopulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+the+live+web+feels+about+events)|31| +|[Towards metric fusion on multi-view data: a cross-view based graph random walk approach](https://doi.org/10.1145/2505515.2505591)|Yang Wang, Xuemin Lin, Qing Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+metric+fusion+on+multi-view+data:+a+cross-view+based+graph+random+walk+approach)|31| +|[GeCo: an online personal data generator and corruptor](https://doi.org/10.1145/2505515.2508207)|KhoiNguyen Tran, Dinusha Vatsalan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GeCo:+an+online+personal+data+generator+and+corruptor)|31| +|[Improving pseudo-relevance feedback via tweet selection](https://doi.org/10.1145/2505515.2505701)|Taiki Miyanishi, Kazuhiro Seki, Kuniaki Uehara||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+pseudo-relevance+feedback+via+tweet+selection)|30| +|[Personalized models of search satisfaction](https://doi.org/10.1145/2505515.2505681)|Ahmed Hassan Awadallah, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+models+of+search+satisfaction)|30| +|[Learning to rank for question routing in community question answering](https://doi.org/10.1145/2505515.2505670)|Zongcheng Ji, Bin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+question+routing+in+community+question+answering)|29| +|[Computing term similarity by large probabilistic isA knowledge](https://doi.org/10.1145/2505515.2505567)|PeiPei Li, Haixun Wang, Kenny Q. Zhu, Zhongyuan Wang, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+term+similarity+by+large+probabilistic+isA+knowledge)|28| +|[TODMIS: mining communities from trajectories](https://doi.org/10.1145/2505515.2505552)|Siyuan Liu, Shuhui Wang, Kasthuri Jayarajah, Archan Misra, Ramayya Krishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TODMIS:+mining+communities+from+trajectories)|28| +|[Entity disambiguation in anonymized graphs using graph kernels](https://doi.org/10.1145/2505515.2505565)|Linus Hermansson, Tommi Kerola, Fredrik Johansson, Vinay Jethava, Devdatt P. Dubhashi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+disambiguation+in+anonymized+graphs+using+graph+kernels)|27| +|[Recommendation via user's personality and social contextual](https://doi.org/10.1145/2505515.2507834)|He Feng, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendation+via+user's+personality+and+social+contextual)|27| +|[Facet selection algorithms for web product search](https://doi.org/10.1145/2505515.2505664)|Damir Vandic, Flavius Frasincar, Uzay Kaymak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Facet+selection+algorithms+for+web+product+search)|27| +|[Penguins in sweaters, or serendipitous entity search on user-generated content](https://doi.org/10.1145/2505515.2505680)|Ilaria Bordino, Yelena Mejova, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Penguins+in+sweaters,+or+serendipitous+entity+search+on+user-generated+content)|26| +|[An index for efficient semantic full-text search](https://doi.org/10.1145/2505515.2505689)|Hannah Bast, Björn Buchhold||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+index+for+efficient+semantic+full-text+search)|26| +|[Graph similarity search with edit distance constraint in large graph databases](https://doi.org/10.1145/2505515.2505723)|Weiguo Zheng, Lei Zou, Xiang Lian, Dong Wang, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+similarity+search+with+edit+distance+constraint+in+large+graph+databases)|25| +|[Estimating document focus time](https://doi.org/10.1145/2505515.2505655)|Adam Jatowt, Chingman Au Yeung, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+document+focus+time)|25| +|[A partially supervised cross-collection topic model for cross-domain text classification](https://doi.org/10.1145/2505515.2505556)|Yang Bao, Nigel Collier, Anindya Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+partially+supervised+cross-collection+topic+model+for+cross-domain+text+classification)|24| +|[Parallel triangle counting in massive streaming graphs](https://doi.org/10.1145/2505515.2505741)|Kanat Tangwongsan, A. Pavan, Srikanta Tirthapura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+triangle+counting+in+massive+streaming+graphs)|24| +|[Detecting controversy on the web](https://doi.org/10.1145/2505515.2507877)|Shiri DoriHacohen, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+controversy+on+the+web)|24| +|[Programming with personalized pagerank: a locally groundable first-order probabilistic logic](https://doi.org/10.1145/2505515.2505573)|William Yang Wang, Kathryn Mazaitis, William W. Cohen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Programming+with+personalized+pagerank:+a+locally+groundable+first-order+probabilistic+logic)|24| +|[OMS-TL: a framework of online multiple source transfer learning](https://doi.org/10.1145/2505515.2505603)|Liang Ge, Jing Gao, Aidong Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OMS-TL:+a+framework+of+online+multiple+source+transfer+learning)|24| +|[On sparsity and drift for effective real-time filtering in microblogs](https://doi.org/10.1145/2505515.2505709)|MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+sparsity+and+drift+for+effective+real-time+filtering+in+microblogs)|23| +|[Content-centric flow mining for influence analysis in social streams](https://doi.org/10.1145/2505515.2505626)|Karthik Subbian, Charu C. Aggarwal, Jaideep Srivastava||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-centric+flow+mining+for+influence+analysis+in+social+streams)|23| +|[A probabilistic mixture model for mining and analyzing product search log](https://doi.org/10.1145/2505515.2505578)|Huizhong Duan, ChengXiang Zhai, Jinxing Cheng, Abhishek Gattani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+mixture+model+for+mining+and+analyzing+product+search+log)|23| +|[Modeling behavioral factors ininteractive information retrieval](https://doi.org/10.1145/2505515.2505660)|Feza Baskaya, Heikki Keskustalo, Kalervo Järvelin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+behavioral+factors+ininteractive+information+retrieval)|23| +|[LearNext: learning to predict tourists movements](https://doi.org/10.1145/2505515.2505656)|Ranieri Baraglia, Cristina Ioana Muntean, Franco Maria Nardini, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LearNext:+learning+to+predict+tourists+movements)|22| +|[Flexible and extensible generation and corruption of personal data](https://doi.org/10.1145/2505515.2507815)|Peter Christen, Dinusha Vatsalan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+extensible+generation+and+corruption+of+personal+data)|22| +|[Joint learning on sentiment and emotion classification](https://doi.org/10.1145/2505515.2507830)|Wei Gao, Shoushan Li, Sophia Yat Mei Lee, Guodong Zhou, ChuRen Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+learning+on+sentiment+and+emotion+classification)|22| +|[Intelligent SSD: a turbo for big data mining](https://doi.org/10.1145/2505515.2507847)|DuckHo Bae, JinHyung Kim, SangWook Kim, Hyunok Oh, Chanik Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intelligent+SSD:+a+turbo+for+big+data+mining)|22| +|[Exploiting ranking factorization machines for microblog retrieval](https://doi.org/10.1145/2505515.2505648)|Runwei Qiang, Feng Liang, Jianwu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+ranking+factorization+machines+for+microblog+retrieval)|21| +|[Automatic construction of domain and aspect specific sentiment lexicons for customer review mining](https://doi.org/10.1145/2505515.2505574)|Jürgen Broß, Heiko Ehrig||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+construction+of+domain+and+aspect+specific+sentiment+lexicons+for+customer+review+mining)|20| +|[Expertise retrieval in bibliographic network: a topic dominance learning approach](https://doi.org/10.1145/2505515.2505697)|Seyyed Hadi Hashemi, Mahmood Neshati, Hamid Beigy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Expertise+retrieval+in+bibliographic+network:+a+topic+dominance+learning+approach)|20| +|[Feedback-driven multiclass active learning for data streams](https://doi.org/10.1145/2505515.2505528)|Yu Cheng, Zhengzhang Chen, Lu Liu, Jiang Wang, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feedback-driven+multiclass+active+learning+for+data+streams)|20| +|[Concept-based analysis of scientific literature](https://doi.org/10.1145/2505515.2505613)|ChenTse Tsai, Gourab Kundu, Dan Roth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-based+analysis+of+scientific+literature)|20| +|[Recommending tags with a model of human categorization](https://doi.org/10.1145/2505515.2505625)|Paul Seitlinger, Dominik Kowald, Christoph Trattner, Tobias Ley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+tags+with+a+model+of+human+categorization)|20| +|[DeExcelerator: a framework for extracting relational data from partially structured documents](https://doi.org/10.1145/2505515.2508210)|Julian Eberius, Christopher Werner, Maik Thiele, Katrin Braunschweig, Lars Dannecker, Wolfgang Lehner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeExcelerator:+a+framework+for+extracting+relational+data+from+partially+structured+documents)|20| +|[Cloud Armor: a platform for credibility-based trust management of cloud services](https://doi.org/10.1145/2505515.2508204)|Talal H. Noor, Quan Z. Sheng, Anne H. H. Ngu, Abdullah Alfazi, Jeriel Law||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cloud+Armor:+a+platform+for+credibility-based+trust+management+of+cloud+services)|20| +|[Evaluating aggregated search using interleaving](https://doi.org/10.1145/2505515.2505698)|Aleksandr Chuklin, Anne Schuth, Katja Hofmann, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+aggregated+search+using+interleaving)|19| +|[The water filling model and the cube test: multi-dimensional evaluation for professional search](https://doi.org/10.1145/2505515.2523648)|Jiyun Luo, Christopher Wing, Hui Yang, Marti A. Hearst||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+water+filling+model+and+the+cube+test:+multi-dimensional+evaluation+for+professional+search)|19| +|[Diversified query expansion using conceptnet](https://doi.org/10.1145/2505515.2507881)|Arbi Bouchoucha, Jing He, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversified+query+expansion+using+conceptnet)|19| +|[Personalization of web-search using short-term browsing context](https://doi.org/10.1145/2505515.2505679)|Yury Ustinovsky, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalization+of+web-search+using+short-term+browsing+context)|19| +|[Nonparametric bayesian multitask collaborative filtering](https://doi.org/10.1145/2505515.2505517)|Sotirios Chatzis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nonparametric+bayesian+multitask+collaborative+filtering)|19| +|[Online multitasking and user engagement](https://doi.org/10.1145/2505515.2505543)|Janette Lehmann, Mounia Lalmas, Georges Dupret, Ricardo BaezaYates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+multitasking+and+user+engagement)|18| +|[Dynamic multi-faceted topic discovery in twitter](https://doi.org/10.1145/2505515.2505593)|Jan Vosecky, Di Jiang, Kenneth WaiTing Leung, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+multi-faceted+topic+discovery+in+twitter)|18| +|[QBEES: query by entity examples](https://doi.org/10.1145/2505515.2507873)|Steffen Metzger, Ralf Schenkel, Marcin Sydow||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QBEES:+query+by+entity+examples)|18| +|[Large-scale deep learning at Baidu](https://doi.org/10.1145/2505515.2514699)|Kai Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+deep+learning+at+Baidu)|18| +|[Fast parameterless density-based clustering via random projections](https://doi.org/10.1145/2505515.2505590)|Johannes Schneider, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+parameterless+density-based+clustering+via+random+projections)|17| +|[Discriminative feature selection for multi-view cross-domain learning](https://doi.org/10.1145/2505515.2505532)|Zheng Fang, Zhongfei (Mark) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discriminative+feature+selection+for+multi-view+cross-domain+learning)|17| +|[An effective latent networks fusion based model for event recommendation in offline ephemeral social networks](https://doi.org/10.1145/2505515.2505605)|Guoqiong Liao, Yuchen Zhao, Sihong Xie, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+latent+networks+fusion+based+model+for+event+recommendation+in+offline+ephemeral+social+networks)|17| +|[Efficient two-party private blocking based on sorted nearest neighborhood clustering](https://doi.org/10.1145/2505515.2505757)|Dinusha Vatsalan, Peter Christen, Vassilios S. Verykios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+two-party+private+blocking+based+on+sorted+nearest+neighborhood+clustering)|17| +|[Ranking fraud detection for mobile apps: a holistic view](https://doi.org/10.1145/2505515.2505547)|Hengshu Zhu, Hui Xiong, Yong Ge, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+fraud+detection+for+mobile+apps:+a+holistic+view)|16| +|[Scientific articles recommendation](https://doi.org/10.1145/2505515.2505705)|Yingming Li, Ming Yang, Zhongfei (Mark) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scientific+articles+recommendation)|16| +|[Effective measures for inter-document similarity](https://doi.org/10.1145/2505515.2505526)|John S. Whissell, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+measures+for+inter-document+similarity)|16| +|[Social recommendation incorporating topic mining and social trust analysis](https://doi.org/10.1145/2505515.2505592)|Tong Zhao, Chunping Li, Mengya Li, Qiang Ding, Li Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+recommendation+incorporating+topic+mining+and+social+trust+analysis)|16| +|[Seeking provenance of information using social media](https://doi.org/10.1145/2505515.2505633)|Pritam Gundecha, Zhuo Feng, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Seeking+provenance+of+information+using+social+media)|16| +|[Identifying salient entities in web pages](https://doi.org/10.1145/2505515.2505602)|Michael Gamon, Tae Yano, Xinying Song, Johnson Apacible, Patrick Pantel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+salient+entities+in+web+pages)|16| +|[Boolean satisfiability for sequence mining](https://doi.org/10.1145/2505515.2505577)|Saïd Jabbour, Lakhdar Sais, Yakoub Salhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Boolean+satisfiability+for+sequence+mining)|15| +|[Discovering health-related knowledge in social media using ensembles of heterogeneous features](https://doi.org/10.1145/2505515.2505629)|Suppawong Tuarob, Conrad S. Tucker, Marcel Salathé, Nilam Ram||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+health-related+knowledge+in+social+media+using+ensembles+of+heterogeneous+features)|15| +|[CV-PCR: a context-guided value-driven framework for patent citation recommendation](https://doi.org/10.1145/2505515.2505659)|Sooyoung Oh, Zhen Lei, WangChien Lee, Prasenjit Mitra, John Yen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CV-PCR:+a+context-guided+value-driven+framework+for+patent+citation+recommendation)|15| +|[Mining frequent neighborhood patterns in a large labeled graph](https://doi.org/10.1145/2505515.2505530)|Jialong Han, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+frequent+neighborhood+patterns+in+a+large+labeled+graph)|14| +|[Local correlation detection with linearity enhancement in streaming data](https://doi.org/10.1145/2505515.2505746)|Qing Xie, Shuo Shang, Bo Yuan, Chaoyi Pang, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+correlation+detection+with+linearity+enhancement+in+streaming+data)|14| +|[Supporting exploratory people search: a study of factor transparency and user control](https://doi.org/10.1145/2505515.2505684)|Shuguang Han, Daqing He, Jiepu Jiang, Zhen Yue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+exploratory+people+search:+a+study+of+factor+transparency+and+user+control)|14| +|[PIDGIN: ontology alignment using web text as interlingua](https://doi.org/10.1145/2505515.2505559)|Derry Wijaya, Partha Pratim Talukdar, Tom M. Mitchell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIDGIN:+ontology+alignment+using+web+text+as+interlingua)|14| +|[Labels or attributes?: rethinking the neighbors for collective classification in sparsely-labeled networks](https://doi.org/10.1145/2505515.2505628)|Luke K. McDowell, David W. Aha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Labels+or+attributes?:+rethinking+the+neighbors+for+collective+classification+in+sparsely-labeled+networks)|14| +|[External memory K-bisimulation reduction of big graphs](https://doi.org/10.1145/2505515.2505752)|Yongming Luo, George H. L. Fletcher, Jan Hidders, Yuqing Wu, Paul De Bra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+memory+K-bisimulation+reduction+of+big+graphs)|14| +|[Building structures from classifiers for passage reranking](https://doi.org/10.1145/2505515.2505688)|Aliaksei Severyn, Massimo Nicosia, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+structures+from+classifiers+for+passage+reranking)|14| +|[A comparison of two physical data designs for interactive social networking actions](https://doi.org/10.1145/2505515.2505761)|Sumita Barahmand, Shahram Ghandeharizadeh, Jason Yap||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+comparison+of+two+physical+data+designs+for+interactive+social+networking+actions)|14| +|[Dynamic query intent mining from a search log stream](https://doi.org/10.1145/2505515.2507856)|Yanan Qian, Tetsuya Sakai, Junting Ye, Qinghua Zheng, Cong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+query+intent+mining+from+a+search+log+stream)|14| +|[Incremental shared nearest neighbor density-based clustering](https://doi.org/10.1145/2505515.2507837)|Sumeet Singh, Amit Awekar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+shared+nearest+neighbor+density-based+clustering)|14| +|[Can back-of-the-book indexes be automatically created?](https://doi.org/10.1145/2505515.2505627)|Zhaohui Wu, Zhenhui Li, Prasenjit Mitra, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Can+back-of-the-book+indexes+be+automatically+created?)|14| +|[Learning compact hashing codes for efficient tag completion and prediction](https://doi.org/10.1145/2505515.2505649)|Qifan Wang, Lingyun Ruan, Zhiwei Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+compact+hashing+codes+for+efficient+tag+completion+and+prediction)|14| +|[Understanding how people interact with web search results that change in real-time using implicit feedback](https://doi.org/10.1145/2505515.2505663)|Jin Young Kim, Mark Cramer, Jaime Teevan, Dmitry Lagun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+how+people+interact+with+web+search+results+that+change+in+real-time+using+implicit+feedback)|14| +|[Combining one-class classifiers via meta learning](https://doi.org/10.1145/2505515.2505619)|Eitan Menahem, Lior Rokach, Yuval Elovici||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+one-class+classifiers+via+meta+learning)|14| +|[PredictionIO: a distributed machine learning server for practical software development](https://doi.org/10.1145/2505515.2508198)|Simon Chan, Thomas Stone, Kit Pang Szeto, KaHou Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PredictionIO:+a+distributed+machine+learning+server+for+practical+software+development)|14| +|[Entity-centric document filtering: boosting feature mapping through meta-features](https://doi.org/10.1145/2505515.2505683)|Mianwei Zhou, Kevin ChenChuan Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity-centric+document+filtering:+boosting+feature+mapping+through+meta-features)|13| +|[Content coverage maximization on word networks for hierarchical topic summarization](https://doi.org/10.1145/2505515.2505585)|Chi Wang, Xiao Yu, Yanen Li, Chengxiang Zhai, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content+coverage+maximization+on+word+networks+for+hierarchical+topic+summarization)|13| +|[Modeling interaction features for debate side clustering](https://doi.org/10.1145/2505515.2505634)|Minghui Qiu, Liu Yang, Jing Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+interaction+features+for+debate+side+clustering)|13| +|[Community question topic categorization via hierarchical kernelized classification](https://doi.org/10.1145/2505515.2505676)|Wen Chan, Weidong Yang, Jinhui Tang, Jintao Du, Xiangdong Zhou, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community+question+topic+categorization+via+hierarchical+kernelized+classification)|13| +|[Maintaining discriminatory power in quantized indexes](https://doi.org/10.1145/2505515.2507860)|Matt Crane, Andrew Trotman, Richard A. O'Keefe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maintaining+discriminatory+power+in+quantized+indexes)|13| +|[Clustering-based anomaly detection in multi-view data](https://doi.org/10.1145/2505515.2507840)|Alejandro Marcos Alvarez, Makoto Yamada, Akisato Kimura, Tomoharu Iwata||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+anomaly+detection+in+multi-view+data)|13| +|[Early prediction on imbalanced multivariate time series](https://doi.org/10.1145/2505515.2507888)|Guoliang He, Yong Duan, Tieyun Qian, Xu Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Early+prediction+on+imbalanced+multivariate+time+series)|13| +|[Optimizing plurality for human intelligence tasks](https://doi.org/10.1145/2505515.2505755)|Luyi Mo, Reynold Cheng, Ben Kao, Xuan S. Yang, Chenghui Ren, Siyu Lei, David W. Cheung, Eric Lo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+plurality+for+human+intelligence+tasks)|13| +|[Wondering why data are missing from query results?: ask conseil why-not](https://doi.org/10.1145/2505515.2505725)|Melanie Herschel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Wondering+why+data+are+missing+from+query+results?:+ask+conseil+why-not)|13| +|[User intent and assessor disagreement in web search evaluation](https://doi.org/10.1145/2505515.2505716)|Gabriella Kazai, Emine Yilmaz, Nick Craswell, Seyed M. M. Tahaghoghi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+intent+and+assessor+disagreement+in+web+search+evaluation)|12| +|[Mining causal topics in text data: iterative topic modeling with time series feedback](https://doi.org/10.1145/2505515.2505612)|Hyun Duk Kim, Malú Castellanos, Meichun Hsu, ChengXiang Zhai, Thomas A. Rietz, Daniel Diermeier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+causal+topics+in+text+data:+iterative+topic+modeling+with+time+series+feedback)|12| +|[Modeling latent topic interactions using quantum interference for information retrieval](https://doi.org/10.1145/2505515.2507854)|Alessandro Sordoni, Jing He, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+latent+topic+interactions+using+quantum+interference+for+information+retrieval)|12| +|[Incorporating user preferences into click models](https://doi.org/10.1145/2505515.2505704)|Qianli Xing, Yiqun Liu, JianYun Nie, Min Zhang, Shaoping Ma, Kuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+user+preferences+into+click+models)|12| +|[Discovering facts with boolean tensor tucker decomposition](https://doi.org/10.1145/2505515.2507846)|Dóra Erdös, Pauli Miettinen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+facts+with+boolean+tensor+tucker+decomposition)|12| +|[Dyadic event attribution in social networks with mixtures of hawkes processes](https://doi.org/10.1145/2505515.2505609)|Liangda Li, Hongyuan Zha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dyadic+event+attribution+in+social+networks+with+mixtures+of+hawkes+processes)|12| +|[A belief propagation approach for detecting shilling attacks in collaborative filtering](https://doi.org/10.1145/2505515.2507875)|Jun Zou, Faramarz Fekri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+belief+propagation+approach+for+detecting+shilling+attacks+in+collaborative+filtering)|12| +|[Entropy-based histograms for selectivity estimation](https://doi.org/10.1145/2505515.2505756)|Hien To, Kuorong Chiang, Cyrus Shahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entropy-based+histograms+for+selectivity+estimation)|12| +|[Locality sensitive hashing revisited: filling the gap between theory and algorithm analysis](https://doi.org/10.1145/2505515.2505765)|Hongya Wang, Jiao Cao, LihChyun Shu, Davood Rafiei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Locality+sensitive+hashing+revisited:+filling+the+gap+between+theory+and+algorithm+analysis)|12| +|[Web news extraction via path ratios](https://doi.org/10.1145/2505515.2505558)|GongQing Wu, Li Li, Xuegang Hu, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web+news+extraction+via+path+ratios)|12| +|[GAPfm: optimal top-n recommendations for graded relevance domains](https://doi.org/10.1145/2505515.2505653)|Yue Shi, Alexandros Karatzoglou, Linas Baltrunas, Martha A. Larson, Alan Hanjalic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GAPfm:+optimal+top-n+recommendations+for+graded+relevance+domains)|12| +|[RWS-Diff: flexible and efficient change detection in hierarchical data](https://doi.org/10.1145/2505515.2505763)|Jan P. Finis, Martin Raiber, Nikolaus Augsten, Robert Brunel, Alfons Kemper, Franz Färber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RWS-Diff:+flexible+and+efficient+change+detection+in+hierarchical+data)|11| +|[Rank-energy selective query forwarding for distributed search systems](https://doi.org/10.1145/2505515.2505710)|Amin Y. Teymorian, Ophir Frieder, Marcus A. Maloof||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank-energy+selective+query+forwarding+for+distributed+search+systems)|11| +|[Probabilistic solutions of influence propagation on social networks](https://doi.org/10.1145/2505515.2505718)|Miao Zhang, Chunni Dai, Chris H. Q. Ding, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+solutions+of+influence+propagation+on+social+networks)|11| +|[On the reliability and intuitiveness of aggregated search metrics](https://doi.org/10.1145/2505515.2505691)|Ke Zhou, Mounia Lalmas, Tetsuya Sakai, Ronan Cummins, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+reliability+and+intuitiveness+of+aggregated+search+metrics)|11| +|[Querying graphs with preferences](https://doi.org/10.1145/2505515.2505758)|Valeria Fionda, Giuseppe Pirrò||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+graphs+with+preferences)|11| +|[Network-aware search in social tagging applications: instance optimality versus efficiency](https://doi.org/10.1145/2505515.2505760)|Silviu Maniu, Bogdan Cautis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Network-aware+search+in+social+tagging+applications:+instance+optimality+versus+efficiency)|11| +|[Accurate and scalable nearest neighbors in large networks based on effective importance](https://doi.org/10.1145/2505515.2505522)|Petko Bogdanov, Ambuj K. Singh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accurate+and+scalable+nearest+neighbors+in+large+networks+based+on+effective+importance)|11| +|[Using micro-reviews to select an efficient set of reviews](https://doi.org/10.1145/2505515.2505568)|ThanhSon Nguyen, Hady Wirawan Lauw, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+micro-reviews+to+select+an+efficient+set+of+reviews)|11| +|[Wikification via link co-occurrence](https://doi.org/10.1145/2505515.2505521)|Zhiyuan Cai, Kaiqi Zhao, Kenny Q. Zhu, Haixun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Wikification+via+link+co-occurrence)|11| +|[Discrimination aware classification for imbalanced datasets](https://doi.org/10.1145/2505515.2507836)|Goce Ristanoski, Wei Liu, James Bailey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discrimination+aware+classification+for+imbalanced+datasets)|11| +|[Automated snippet generation for online advertising](https://doi.org/10.1145/2505515.2507876)|Stamatina Thomaidou, Ismini Lourentzou, Panagiotis KatsivelisPerakis, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+snippet+generation+for+online+advertising)|11| +|[Beyond data: from user information to business value through personalized recommendations and consumer science](https://doi.org/10.1145/2505515.2514701)|Xavier Amatriain||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+data:+from+user+information+to+business+value+through+personalized+recommendations+and+consumer+science)|11| +|[Intent models for contextualising and diversifying query suggestions](https://doi.org/10.1145/2505515.2505661)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intent+models+for+contextualising+and+diversifying+query+suggestions)|11| +|[Question routing to user communities](https://doi.org/10.1145/2505515.2505669)|Aditya Pal, Fei Wang, Michelle X. Zhou, Jeffrey Nichols, Barton A. Smith||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question+routing+to+user+communities)|11| +|[WordSeer: a knowledge synthesis environment for textual data](https://doi.org/10.1145/2505515.2508212)|Aditi S. Muralidharan, Marti A. Hearst, Christopher Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WordSeer:+a+knowledge+synthesis+environment+for+textual+data)|11| +|[Efficient processing of streaming graphs for evolution-aware clustering](https://doi.org/10.1145/2505515.2505750)|Mindi Yuan, KunLung Wu, Gabriela JacquesSilva, Yi Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+processing+of+streaming+graphs+for+evolution-aware+clustering)|10| +|[Diffusion of innovations revisited: from social network to innovation network](https://doi.org/10.1145/2505515.2505587)|Xin Rong, Qiaozhu Mei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diffusion+of+innovations+revisited:+from+social+network+to+innovation+network)|10| +|[Modeling dynamics of meta-populations with a probabilistic approach: global diffusion in social media](https://doi.org/10.1145/2505515.2505583)|Minkyoung Kim, David Newth, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+dynamics+of+meta-populations+with+a+probabilistic+approach:+global+diffusion+in+social+media)|10| +|[Parallel motif extraction from very long sequences](https://doi.org/10.1145/2505515.2505575)|Majed Sahli, Essam Mansour, Panos Kalnis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+motif+extraction+from+very+long+sequences)|10| +|[Aligning freebase with the YAGO ontology](https://doi.org/10.1145/2505515.2505546)|Elena Demidova, Irina Oelze, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aligning+freebase+with+the+YAGO+ontology)|10| +|[Mapping adaptation actions for the automatic reconciliation of dynamic ontologies](https://doi.org/10.1145/2505515.2505564)|Júlio Cesar dos Reis, Duy Dinh, Cédric Pruski, Marcos Da Silveira, Chantal ReynaudDelaître||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mapping+adaptation+actions+for+the+automatic+reconciliation+of+dynamic+ontologies)|10| +|[AnchorMF: towards effective event context identification](https://doi.org/10.1145/2505515.2505548)|Hansu Gu, Mike Gartrell, Liang Zhang, Qin Lv, Dirk Grunwald||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AnchorMF:+towards+effective+event+context+identification)|10| +|[Timely crawling of high-quality ephemeral new content](https://doi.org/10.1145/2505515.2505641)|Damien Lefortier, Liudmila Ostroumova, Egor Samosvat, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Timely+crawling+of+high-quality+ephemeral+new+content)|10| +|[Local clustering in provenance graphs](https://doi.org/10.1145/2505515.2505624)|Peter Macko, Daniel W. Margo, Margo I. Seltzer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+clustering+in+provenance+graphs)|10| +|[Towards minimizing the annotation cost of certified text classification](https://doi.org/10.1145/2505515.2505708)|Mossaab Bagdouri, William Webber, David D. Lewis, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+minimizing+the+annotation+cost+of+certified+text+classification)|10| +|[Manipulation among the arbiters of collective intelligence: how wikipedia administrators mold public opinion](https://doi.org/10.1145/2505515.2505566)|Sanmay Das, Allen Lavoie, Malik MagdonIsmail||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Manipulation+among+the+arbiters+of+collective+intelligence:+how+wikipedia+administrators+mold+public+opinion)|10| +|[Weighted hashing for fast large scale similarity search](https://doi.org/10.1145/2505515.2507851)|Qifan Wang, Dan Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+hashing+for+fast+large+scale+similarity+search)|10| +|[Improving entity search over linked data by modeling latent semantics](https://doi.org/10.1145/2505515.2507868)|Nikita Zhiltsov, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+entity+search+over+linked+data+by+modeling+latent+semantics)|10| +|[How fresh do you want your search results?](https://doi.org/10.1145/2505515.2505696)|Shiwen Cheng, Anastasios Arvanitis, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+fresh+do+you+want+your+search+results?)|10| +|[TellMyRelevance!: predicting the relevance of web search results from cursor interactions](https://doi.org/10.1145/2505515.2505703)|Maximilian Speicher, Andreas Both, Martin Gaedke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TellMyRelevance!:+predicting+the+relevance+of+web+search+results+from+cursor+interactions)|10| +|[Cost-sensitive learning for large-scale hierarchical classification](https://doi.org/10.1145/2505515.2505582)|Jianfu Chen, David Warren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cost-sensitive+learning+for+large-scale+hierarchical+classification)|10| +|[Flexible and adaptive subspace search for outlier analysis](https://doi.org/10.1145/2505515.2505560)|Fabian Keller, Emmanuel Müller, Andreas Wixler, Klemens Böhm||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+adaptive+subspace+search+for+outlier+analysis)|10| +|[Exploiting collaborative filtering techniques for automatic assessment of student free-text responses](https://doi.org/10.1145/2505515.2507827)|Tao Ge, Zhifang Sui, Baobao Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+collaborative+filtering+techniques+for+automatic+assessment+of+student+free-text+responses)|10| +|[Predicting trends in social networks via dynamic activeness model](https://doi.org/10.1145/2505515.2505607)|Shuyang Lin, Xiangnan Kong, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+trends+in+social+networks+via+dynamic+activeness+model)|10| +|[Mining characteristic multi-scale motifs in sensor-based time series](https://doi.org/10.1145/2505515.2505620)|Ugo Vespier, Siegfried Nijssen, Arno J. Knobbe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+characteristic+multi-scale+motifs+in+sensor-based+time+series)|10| +|[Load-sensitive selective pruning for distributed search](https://doi.org/10.1145/2505515.2505699)|Daniele Broccolo, Craig Macdonald, Salvatore Orlando, Iadh Ounis, Raffaele Perego, Fabrizio Silvestri, Nicola Tonellotto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Load-sensitive+selective+pruning+for+distributed+search)|9| +|[Augmenting web search surrogates with images](https://doi.org/10.1145/2505515.2505714)|Robert Capra, Jaime Arguello, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Augmenting+web+search+surrogates+with+images)|9| +|[Generating comparative summaries from reviews](https://doi.org/10.1145/2505515.2507879)|Ruben Sipos, Thorsten Joachims||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+comparative+summaries+from+reviews)|9| +|[Interest mining from user tweets](https://doi.org/10.1145/2505515.2507883)|Thuy Vu, Victor Perez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest+mining+from+user+tweets)|9| +|[Factors affecting aggregated search coherence and search behavior](https://doi.org/10.1145/2505515.2505693)|Jaime Arguello, Robert Capra, WanChing Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Factors+affecting+aggregated+search+coherence+and+search+behavior)|9| +|[Towards faster and better retrieval models for question search](https://doi.org/10.1145/2505515.2505550)|Guangyou Zhou, Yubo Chen, Daojian Zeng, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+faster+and+better+retrieval+models+for+question+search)|9| +|[Merged aggregate nearest neighbor query processing in road networks](https://doi.org/10.1145/2505515.2505738)|Weiwei Sun, Chong Chen, Baihua Zheng, Chunan Chen, Liang Zhu, Weimo Liu, Yan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Merged+aggregate+nearest+neighbor+query+processing+in+road+networks)|9| +|[READFAST: high-relevance search-engine for big text](https://doi.org/10.1145/2505515.2508215)|Michael N. Gubanov, Anna Pyayt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=READFAST:+high-relevance+search-engine+for+big+text)|9| +|[A tool for assisting provenance search in social media](https://doi.org/10.1145/2505515.2508214)|Suhas Ranganath, Pritam Gundecha, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tool+for+assisting+provenance+search+in+social+media)|9| +|[Mining diabetes complication and treatment patterns for clinical decision support](https://doi.org/10.1145/2505515.2505549)|Lu Liu, Jie Tang, Yu Cheng, Ankit Agrawal, Weikeng Liao, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+diabetes+complication+and+treatment+patterns+for+clinical+decision+support)|8| +|[Discovering latent blockmodels in sparse and noisy graphs using non-negative matrix factorisation](https://doi.org/10.1145/2505515.2505595)|Jeffrey Chan, Wei Liu, Andrey Kan, Christopher Leckie, James Bailey, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+latent+blockmodels+in+sparse+and+noisy+graphs+using+non-negative+matrix+factorisation)|8| +|[Discovering influential authors in heterogeneous academic networks by a co-ranking method](https://doi.org/10.1145/2505515.2505534)|Qinxue Meng, Paul J. Kennedy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+influential+authors+in+heterogeneous+academic+networks+by+a+co-ranking+method)|8| +|[Latency-aware strategy for static list caching in flash-based web search engines](https://doi.org/10.1145/2505515.2507857)|Jiancong Tong, Gang Wang, Xiaoguang Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latency-aware+strategy+for+static+list+caching+in+flash-based+web+search+engines)|8| +|[Spatio-temporal meme prediction: learning what hashtags will be popular where](https://doi.org/10.1145/2505515.2505579)|Krishna Yeswanth Kamath, James Caverlee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatio-temporal+meme+prediction:+learning+what+hashtags+will+be+popular+where)|8| +|[Building optimal information systems automatically: configuration space exploration for biomedical information systems](https://doi.org/10.1145/2505515.2505692)|Zi Yang, Elmer Garduño, Yan Fang, Avner Maiberg, Collin McCormack, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+optimal+information+systems+automatically:+configuration+space+exploration+for+biomedical+information+systems)|8| +|[Motif discovery in spatial trajectories using grammar inference](https://doi.org/10.1145/2505515.2507820)|Tim Oates, Arnold P. Boedihardjo, Jessica Lin, Crystal Chen, Susan Frankenstein, Sunil Gandhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Motif+discovery+in+spatial+trajectories+using+grammar+inference)|8| +|[Computational advertising: the linkedin way](https://doi.org/10.1145/2505515.2514690)|Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computational+advertising:+the+linkedin+way)|8| +|[Assessing quality score of Wikipedia article using mutual evaluation of editors and texts](https://doi.org/10.1145/2505515.2505610)|Yu Suzuki, Masatoshi Yoshikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Assessing+quality+score+of+Wikipedia+article+using+mutual+evaluation+of+editors+and+texts)|8| +|[Strategies for setting time-to-live values in result caches](https://doi.org/10.1145/2505515.2507886)|Fethi Burak Sazoglu, Berkant Barla Cambazoglu, Rifat Ozcan, Ismail Sengör Altingövde, Özgür Ulusoy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Strategies+for+setting+time-to-live+values+in+result+caches)|8| +|[Gem-based entity-knowledge maintenance](https://doi.org/10.1145/2505515.2505715)|Bilyana Taneva, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gem-based+entity-knowledge+maintenance)|7| +|[Causality and responsibility: probabilistic queries revisited in uncertain databases](https://doi.org/10.1145/2505515.2505754)|Xiang Lian, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Causality+and+responsibility:+probabilistic+queries+revisited+in+uncertain+databases)|7| +|[Using historical click data to increase interleaving sensitivity](https://doi.org/10.1145/2505515.2505687)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+historical+click+data+to+increase+interleaving+sensitivity)|7| +|[Short text classification by detecting information path](https://doi.org/10.1145/2505515.2505638)|Shitao Zhang, Xiaoming Jin, Dou Shen, Bin Cao, Xuetao Ding, Xiaochen Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short+text+classification+by+detecting+information+path)|7| +|[On segmentation of eCommerce queries](https://doi.org/10.1145/2505515.2505721)|Nish Parikh, Prasad Sriram, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+segmentation+of+eCommerce+queries)|7| +|[Feature-based models for improving the quality of noisy training data for relation extraction](https://doi.org/10.1145/2505515.2507850)|Benjamin Roth, Dietrich Klakow||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature-based+models+for+improving+the+quality+of+noisy+training+data+for+relation+extraction)|7| +|[Predicting event-relatedness of popular queries](https://doi.org/10.1145/2505515.2507853)|Seyyedeh Newsha Ghoreishi, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+event-relatedness+of+popular+queries)|7| +|[Position-based contextualization for passage retrieval](https://doi.org/10.1145/2505515.2507865)|David Carmel, Anna Shtok, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Position-based+contextualization+for+passage+retrieval)|7| +|[Discovering relations using matrix factorization methods](https://doi.org/10.1145/2505515.2507841)|Ervina Çergani, Pauli Miettinen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+relations+using+matrix+factorization+methods)|7| +|[Originator or propagator?: incorporating social role theory into topic models for twitter content analysis](https://doi.org/10.1145/2505515.2505599)|Wayne Xin Zhao, Jinpeng Wang, Yulan He, JianYun Nie, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Originator+or+propagator?:+incorporating+social+role+theory+into+topic+models+for+twitter+content+analysis)|7| +|[Topical authority propagation on microblogs](https://doi.org/10.1145/2505515.2507891)|Juan Hu, Yi Fang, Archana Godavarthy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topical+authority+propagation+on+microblogs)|7| +|[Unsupervised identification of synonymous query intent templates for attribute intents](https://doi.org/10.1145/2505515.2505694)|Yanen Li, BoJune Paul Hsu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+identification+of+synonymous+query+intent+templates+for+attribute+intents)|7| +|[Channeling the deluge: research challenges for big data and information systems](https://doi.org/10.1145/2505515.2525541)|Paul Bennett, C. Lee Giles, Alon Y. Halevy, Jiawei Han, Marti A. Hearst, Jure Leskovec||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Channeling+the+deluge:+research+challenges+for+big+data+and+information+systems)|7| +|[Scholarly big data: information extraction and data mining](https://doi.org/10.1145/2505515.2527109)|C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scholarly+big+data:+information+extraction+and+data+mining)|6| +|[Locality sensitive hashing for scalable structural classification and clustering of web documents](https://doi.org/10.1145/2505515.2505673)|Christian Hachenberg, Thomas Gottron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Locality+sensitive+hashing+for+scalable+structural+classification+and+clustering+of+web+documents)|6| +|[Active exploration: simultaneous sampling and labeling for large graphs](https://doi.org/10.1145/2505515.2505618)|Meng Fang, Jie Yin, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+exploration:+simultaneous+sampling+and+labeling+for+large+graphs)|6| +|[Mining entity attribute synonyms via compact clustering](https://doi.org/10.1145/2505515.2505608)|Yanen Li, BoJune Paul Hsu, ChengXiang Zhai, Kuansan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+entity+attribute+synonyms+via+compact+clustering)|6| +|[Instant foodie: predicting expert ratings from grassroots](https://doi.org/10.1145/2505515.2505712)|Chenhao Tan, Ed H. Chi, David A. Huffaker, Gueorgi Kossinets, Alexander J. Smola||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Instant+foodie:+predicting+expert+ratings+from+grassroots)|6| +|[Modeling clicks beyond the first result page](https://doi.org/10.1145/2505515.2507859)|Aleksandr Chuklin, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+clicks+beyond+the+first+result+page)|6| +|[Is top-k sufficient for ranking?](https://doi.org/10.1145/2505515.2505685)|Yanyan Lan, Shuzi Niu, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Is+top-k+sufficient+for+ranking?)|6| +|[LCMKL: latent-community and multi-kernel learning based image annotation](https://doi.org/10.1145/2505515.2507821)|Qing Li, Yun Gu, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LCMKL:+latent-community+and+multi-kernel+learning+based+image+annotation)|6| +|[Modeling information diffusion over social networks for temporal dynamic prediction](https://doi.org/10.1145/2505515.2507823)|Dong Li, Zhiming Xu, Yishu Luo, Sheng Li, Anika Gupta, Katia P. Sycara, Shengmei Luo, Lei Hu, Hong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+information+diffusion+over+social+networks+for+temporal+dynamic+prediction)|6| +|[Probabilistic latent class models for predicting student performance](https://doi.org/10.1145/2505515.2507832)|Suleyman Cetintas, Luo Si, Yan Ping Xin, Ron Tzur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+latent+class+models+for+predicting+student+performance)|6| +|[Mining user interest from search tasks and annotations](https://doi.org/10.1145/2505515.2507878)|Sampath Jayarathna, Atish Patra, Frank Shipman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+user+interest+from+search+tasks+and+annotations)|6| +|[Local-to-global semi-supervised feature selection](https://doi.org/10.1145/2505515.2505542)|Mohammed Hindawi, Khalid Benabdeslem||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local-to-global+semi-supervised+feature+selection)|6| +|[URL tree: efficient unsupervised content extraction from streams of web documents](https://doi.org/10.1145/2505515.2505654)|Borut Sluban, Miha Grcar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=URL+tree:+efficient+unsupervised+content+extraction+from+streams+of+web+documents)|6| +|[Proximity2-aware ranking for textual, temporal, and geographic queries](https://doi.org/10.1145/2505515.2505640)|Jannik Strötgen, Michael Gertz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Proximity2-aware+ranking+for+textual,+temporal,+and+geographic+queries)|5| +|[Cache refreshing for online social news feeds](https://doi.org/10.1145/2505515.2505742)|Xiao Bai, Flavio Paiva Junqueira, Adam Silberstein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cache+refreshing+for+online+social+news+feeds)|5| +|[PAGE: a partition aware graph computation engine](https://doi.org/10.1145/2505515.2505617)|Yingxia Shao, Junjie Yao, Bin Cui, Lin Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PAGE:+a+partition+aware+graph+computation+engine)|5| +|[Label constrained shortest path estimation](https://doi.org/10.1145/2505515.2507818)|Ankita Likhyani, Srikanta J. Bedathur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Label+constrained+shortest+path+estimation)|5| +|[Efficient hierarchical clustering of large high dimensional datasets](https://doi.org/10.1145/2505515.2505527)|Sean Gilpin, Buyue Qian, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+hierarchical+clustering+of+large+high+dimensional+datasets)|5| +|[An efficient algorithm for approximate betweenness centrality computation](https://doi.org/10.1145/2505515.2507826)|Mostafa Haghir Chehreghani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+algorithm+for+approximate+betweenness+centrality+computation)|5| +|[On exploiting content and citations together to compute similarity of scientific papers](https://doi.org/10.1145/2505515.2507842)|Masoud Reyhani Hamedani, SangWook Kim, SangChul Lee, DongJin Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+exploiting+content+and+citations+together+to+compute+similarity+of+scientific+papers)|5| +|[Graph hashing and factorization for fast graph stream classification](https://doi.org/10.1145/2505515.2505730)|Ting Guo, Lianhua Chi, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+hashing+and+factorization+for+fast+graph+stream+classification)|5| +|[FRec: a novel framework of recommending users and communities in social media](https://doi.org/10.1145/2505515.2505645)|Lei Li, Wei Peng, Saurabh Kataria, Tong Sun, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FRec:+a+novel+framework+of+recommending+users+and+communities+in+social+media)|5| +|[Combining prestige and relevance ranking for personalized recommendation](https://doi.org/10.1145/2505515.2507885)|Xiao Yang, Zhaoxin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+prestige+and+relevance+ranking+for+personalized+recommendation)|5| +|[The importance of being socially-savvy: quantifying the influence of social networks on microblog retrieval](https://doi.org/10.1145/2505515.2507892)|Alexander Kotov, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+importance+of+being+socially-savvy:+quantifying+the+influence+of+social+networks+on+microblog+retrieval)|5| +|[Toward advice mining: conditional random fields for extracting advice-revealing text units](https://doi.org/10.1145/2505515.2505520)|Alfan Farizki Wicaksono, SungHyon Myaeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+advice+mining:+conditional+random+fields+for+extracting+advice-revealing+text+units)|5| +|[Beyond data: from user information to business value through personalized recommendations and consumer science](https://doi.org/10.1145/2505515.2514691)|Xavier Amatriain||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+data:+from+user+information+to+business+value+through+personalized+recommendations+and+consumer+science)|5| +|[SkyView: a user evaluation of the skyline operator](https://doi.org/10.1145/2505515.2505739)|Matteo Magnani, Ira Assent, Kasper Hornbæk, Mikkel R. Jakobsen, Ken Friis Larsen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SkyView:+a+user+evaluation+of+the+skyline+operator)|5| +|[An efficient probabilistic framework for multi-dimensional classification](https://doi.org/10.1145/2505515.2505594)|Iyad Batal, Charmgil Hong, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+probabilistic+framework+for+multi-dimensional+classification)|5| +|[FIRE: interactive visual support for parameter space-driven rule mining](https://doi.org/10.1145/2505515.2505631)|Abhishek Mukherji, Xika Lin, Jason Whitehouse, Christopher R. Botaish, Elke A. Rundensteiner, Matthew O. Ward||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FIRE:+interactive+visual+support+for+parameter+space-driven+rule+mining)|5| +|[SportSense: using motion queries to find scenes in sports videos](https://doi.org/10.1145/2505515.2508211)|Ihab Al Kabary, Heiko Schuldt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SportSense:+using+motion+queries+to+find+scenes+in+sports+videos)|5| +|[One size does not fit all: multi-granularity search of web forums](https://doi.org/10.1145/2505515.2505745)|Gayatree Ganu, Amélie Marian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=One+size+does+not+fit+all:+multi-granularity+search+of+web+forums)|4| +|[Spatial search for K diverse-near neighbors](https://doi.org/10.1145/2505515.2505747)|Gregory Ference, WangChien Lee, HuiJu Hung, DeNian Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+search+for+K+diverse-near+neighbors)|4| +|[Domain-dependent/independent topic switching model for online reviews with numerical ratings](https://doi.org/10.1145/2505515.2505540)|Yasutoshi Ida, Takuma Nakamura, Takashi Matsumoto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain-dependent/independent+topic+switching+model+for+online+reviews+with+numerical+ratings)|4| +|[Mining-based compression approach of propositional formulae](https://doi.org/10.1145/2505515.2505576)|Saïd Jabbour, Lakhdar Sais, Yakoub Salhi, Takeaki Uno||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining-based+compression+approach+of+propositional+formulae)|4| +|[A new operator for efficient stream-relation join processing in data streaming engines](https://doi.org/10.1145/2505515.2505728)|Roozbeh Derakhshan, Abdul Sattar, Bela Stantic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+operator+for+efficient+stream-relation+join+processing+in+data+streaming+engines)|4| +|[Scalable diversification of multiple search results](https://doi.org/10.1145/2505515.2505740)|Hina A. Khan, Marina Drosou, Mohamed A. Sharaf||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+diversification+of+multiple+search+results)|4| +|[Understanding the roles of sub-graph features for graph classification: an empirical study perspective](https://doi.org/10.1145/2505515.2505614)|Ting Guo, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+roles+of+sub-graph+features+for+graph+classification:+an+empirical+study+perspective)|4| +|[Navigating the topical structure of academic search results via the Wikipedia category network](https://doi.org/10.1145/2505515.2505621)|Daniil Mirylenka, Andrea Passerini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Navigating+the+topical+structure+of+academic+search+results+via+the+Wikipedia+category+network)|4| +|[Probabilistic semantic similarity measurements for noisy short texts using Wikipedia entities](https://doi.org/10.1145/2505515.2505600)|Masumi Shirakawa, Kotaro Nakayama, Takahiro Hara, Shojiro Nishio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+semantic+similarity+measurements+for+noisy+short+texts+using+Wikipedia+entities)|4| +|[Exploring weakly supervised latent sentiment explanations for aspect-level review analysis](https://doi.org/10.1145/2505515.2505538)|Lei Fang, Minlie Huang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+weakly+supervised+latent+sentiment+explanations+for+aspect-level+review+analysis)|4| +|[Bootstrapping active name disambiguation with crowdsourcing](https://doi.org/10.1145/2505515.2507858)|Yu Cheng, Zhengzhang Chen, Jiang Wang, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bootstrapping+active+name+disambiguation+with+crowdsourcing)|4| +|[Automated probabilistic modeling for relational data](https://doi.org/10.1145/2505515.2507828)|Sameer Singh, Thore Graepel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+probabilistic+modeling+for+relational+data)|4| +|[The essence of knowledge (bases) through entity rankings](https://doi.org/10.1145/2505515.2507838)|Evica Ilieva, Sebastian Michel, Aleksandar Stupar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+essence+of+knowledge+(bases)+through+entity+rankings)|4| +|[An unsupervised transfer learning approach to discover topics for online reputation management](https://doi.org/10.1145/2505515.2507845)|Tamara MartínWanton, Julio Gonzalo, Enrique Amigó||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+unsupervised+transfer+learning+approach+to+discover+topics+for+online+reputation+management)|4| +|[Efficiently anonymizing social networks with reachability preservation](https://doi.org/10.1145/2505515.2505731)|Xiangyu Liu, Bin Wang, Xiaochun Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficiently+anonymizing+social+networks+with+reachability+preservation)|4| +|[Hotness-aware buffer management for flash-based hybrid storage systems](https://doi.org/10.1145/2505515.2505729)|Yanfei Lv, Bin Cui, Xuexuan Chen, Jing Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hotness-aware+buffer+management+for+flash-based+hybrid+storage+systems)|4| +|[Clustering-based transduction for learning a ranking model with limited human labels](https://doi.org/10.1145/2505515.2505647)|Xin Zhang, Ben He, Tiejian Luo, Dongxing Li, Jungang Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+transduction+for+learning+a+ranking+model+with+limited+human+labels)|4| +|[Semi-supervised discriminative preference elicitation for cold-start recommendation](https://doi.org/10.1145/2505515.2507869)|Xi Zhang, Jian Cheng, Ting Yuan, Biao Niu, Hanqing Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-supervised+discriminative+preference+elicitation+for+cold-start+recommendation)|4| +|[Learning to selectively rank patients' medical history](https://doi.org/10.1145/2505515.2507874)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+selectively+rank+patients'+medical+history)|4| +|[An empirical study of top-n recommendation for venture finance](https://doi.org/10.1145/2505515.2507882)|Thomas Stone, Weinan Zhang, Xiaoxue Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+empirical+study+of+top-n+recommendation+for+venture+finance)|4| +|[From big data to big knowledge](https://doi.org/10.1145/2505515.2514697)|Kevin Murphy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+big+data+to+big+knowledge)|4| +|[RAProp: ranking tweets by exploiting the tweet/user/web ecosystem and inter-tweet agreement](https://doi.org/10.1145/2505515.2505667)|Srijith Ravikumar, Kartik Talamadupula, Raju Balakrishnan, Subbarao Kambhampati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RAProp:+ranking+tweets+by+exploiting+the+tweet/user/web+ecosystem+and+inter-tweet+agreement)|4| +|[Discovering and managing quantitative association rules](https://doi.org/10.1145/2505515.2505611)|Chunyao Song, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+and+managing+quantitative+association+rules)|4| +|[Consumer-centric SLA manager for cloud-hosted databases](https://doi.org/10.1145/2505515.2508196)|Liang Zhao, Sherif Sakr, Anna Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Consumer-centric+SLA+manager+for+cloud-hosted+databases)|4| +|[Detecting and exploring clusters in attributed graphs: a plugin for the gephi platform](https://doi.org/10.1145/2505515.2508200)|Brigitte Boden, Roman Haag, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+and+exploring+clusters+in+attributed+graphs:+a+plugin+for+the+gephi+platform)|4| +|[AKBC 2013: third workshop on automated knowledge base construction](https://doi.org/10.1145/2505515.2505806)|Fabian M. Suchanek, Sebastian Riedel, Sameer Singh, Partha Pratim Talukdar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AKBC+2013:+third+workshop+on+automated+knowledge+base+construction)|4| +|[Mining a search engine's corpus without a query pool](https://doi.org/10.1145/2505515.2505748)|Mingyang Zhang, Nan Zhang, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+a+search+engine's+corpus+without+a+query+pool)|3| +|[A phased ranking model for question answering](https://doi.org/10.1145/2505515.2505678)|Rui Liu, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+phased+ranking+model+for+question+answering)|3| +|[CRF framework for supervised preference aggregation](https://doi.org/10.1145/2505515.2505713)|Maksims Volkovs, Richard S. Zemel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CRF+framework+for+supervised+preference+aggregation)|3| +|[Ontology authoring with FORZA](https://doi.org/10.1145/2505515.2505539)|C. Maria Keet, Muhammad Tahir Khan, Chiara Ghidini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ontology+authoring+with+FORZA)|3| +|[A generic front-stage for semi-stream processing](https://doi.org/10.1145/2505515.2505734)|M. Asif Naeem, Gerald Weber, Gillian Dobbie, Christof Lutteroth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+generic+front-stage+for+semi-stream+processing)|3| +|[A multimodal framework for unsupervised feature fusion](https://doi.org/10.1145/2505515.2505589)|Xiaoyi Li, Jing Gao, Hui Li, Le Yang, Rohini K. Srihari||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+multimodal+framework+for+unsupervised+feature+fusion)|3| +|[Estimating the relative utility of networks for predicting user activities](https://doi.org/10.1145/2505515.2505586)|Nina Mishra, Daniel M. Romero, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+the+relative+utility+of+networks+for+predicting+user+activities)|3| +|[Learning to handle negated language in medical records search](https://doi.org/10.1145/2505515.2505706)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+handle+negated+language+in+medical+records+search)|3| +|[Cross-domain sparse coding](https://doi.org/10.1145/2505515.2507819)|Jim JingYan Wang, Halima Bensmail||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-domain+sparse+coding)|3| +|[Random walk-based graphical sampling in unbalanced heterogeneous bipartite social graphs](https://doi.org/10.1145/2505515.2507822)|Yusheng Xie, Zhengzhang Chen, Ankit Agrawal, Alok N. Choudhary, Lu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Random+walk-based+graphical+sampling+in+unbalanced+heterogeneous+bipartite+social+graphs)|3| +|[ImG-complex: graph data model for topology of unstructured meshes](https://doi.org/10.1145/2505515.2505733)|Alireza Rezaei Mahdiraji, Peter Baumann, Guntram Berti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ImG-complex:+graph+data+model+for+topology+of+unstructured+meshes)|3| +|[Compact explanatory opinion summarization](https://doi.org/10.1145/2505515.2505596)|Hyun Duk Kim, Malú Castellanos, Meichun Hsu, ChengXiang Zhai, Umeshwar Dayal, Riddhiman Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+explanatory+opinion+summarization)|3| +|[Studying from electronic textbooks](https://doi.org/10.1145/2505515.2505604)|Rakesh Agrawal, Sreenivas Gollapudi, Anitha Kannan, Krishnaram Kenthapadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Studying+from+electronic+textbooks)|3| +|[LR-PPR: locality-sensitive, re-use promoting, approximate personalized pagerank computation](https://doi.org/10.1145/2505515.2505651)|Jung Hyun Kim, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LR-PPR:+locality-sensitive,+re-use+promoting,+approximate+personalized+pagerank+computation)|3| +|[An analysis of crowd workers mistakes for specific and complex relevance assessment task](https://doi.org/10.1145/2505515.2507884)|Jesse Anderton, Maryam Bashir, Virgil Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+crowd+workers+mistakes+for+specific+and+complex+relevance+assessment+task)|3| +|[Exploiting trustors as well as trustees in trust-based recommendation](https://doi.org/10.1145/2505515.2507889)|WonSeok Hwang, Shaoyu Li, SangWook Kim, Ho Jin Choi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+trustors+as+well+as+trustees+in+trust-based+recommendation)|3| +|[Intelligently querying incomplete instances for improving classification performance](https://doi.org/10.1145/2505515.2505570)|Karthik Sankaranarayanan, Amit Dhurandhar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intelligently+querying+incomplete+instances+for+improving+classification+performance)|3| +|[Eigenvalues perturbation of integral operator for kernel selection](https://doi.org/10.1145/2505515.2505584)|Yong Liu, Shali Jiang, Shizhong Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Eigenvalues+perturbation+of+integral+operator+for+kernel+selection)|3| +|[Fast evaluation of iceberg pattern-based aggregate queries](https://doi.org/10.1145/2505515.2505726)|Zhian He, Petrie Wong, Ben Kao, Eric Lo, Reynold Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+evaluation+of+iceberg+pattern-based+aggregate+queries)|3| +|[Top-down keyword query processing on XML data](https://doi.org/10.1145/2505515.2505727)|Junfeng Zhou, Xingmin Zhao, Wei Wang, Ziyang Chen, Jeffrey Xu Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-down+keyword+query+processing+on+XML+data)|3| +|[Transferring knowledge with source selection to learn IR functions on unlabeled collections](https://doi.org/10.1145/2505515.2505662)|Parantapa Goswami, MassihReza Amini, Éric Gaussier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transferring+knowledge+with+source+selection+to+learn+IR+functions+on+unlabeled+collections)|3| +|[Learning open-domain comparable entity graphs from user search queries](https://doi.org/10.1145/2505515.2505666)|Ziheng Jiang, Lei Ji, Jianwen Zhang, Jun Yan, Ping Guo, Ning Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+open-domain+comparable+entity+graphs+from+user+search+queries)|3| +|[Incorporating the surfing behavior of web users into pagerank](https://doi.org/10.1145/2505515.2505668)|Shatlyk Ashyralyyev, Berkant Barla Cambazoglu, Cevdet Aykanat||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+the+surfing+behavior+of+web+users+into+pagerank)|3| +|[Automatically generating descriptions for resources by tag modeling](https://doi.org/10.1145/2505515.2505632)|Bin Bi, Junghoo Cho||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatically+generating+descriptions+for+resources+by+tag+modeling)|3| +|[iNewsBox: modeling and exploiting implicit feedback for building personalized news radio](https://doi.org/10.1145/2505515.2508199)|Yanan Xie, Liang Chen, Kunyang Jia, Lichuan Ji, Jian Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iNewsBox:+modeling+and+exploiting+implicit+feedback+for+building+personalized+news+radio)|3| +|[Map search via a factor graph model](https://doi.org/10.1145/2505515.2505674)|Qi Zhang, Jihua Kang, Yeyun Gong, Huan Chen, Yaqian Zhou, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Map+search+via+a+factor+graph+model)|2| +|[Correlating medical-dependent query features with image retrieval models using association rules](https://doi.org/10.1145/2505515.2505580)|Hajer Ayadi, Mouna Torjmen, Mariam Daoud, Maher Ben Jemaa, Jimmy Xiangji Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Correlating+medical-dependent+query+features+with+image+retrieval+models+using+association+rules)|2| +|[SCISSOR: scalable and efficient reachability query processing in time-evolving hierarchies](https://doi.org/10.1145/2505515.2505732)|Phani Rohit Mullangi, Lakshmish Ramaswamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SCISSOR:+scalable+and+efficient+reachability+query+processing+in+time-evolving+hierarchies)|2| +|[A heterogenous automatic feedback semi-supervised method for image reranking](https://doi.org/10.1145/2505515.2505675)|XinChao Xu, XinShun Xu, Yafang Wang, Xiaolin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+heterogenous+automatic+feedback+semi-supervised+method+for+image+reranking)|2| +|[An efficient and robust privacy protection technique for massive streaming choice-based information](https://doi.org/10.1145/2505515.2507816)|Ji Zhang, Xuemei Liu, Yonglong Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+and+robust+privacy+protection+technique+for+massive+streaming+choice-based+information)|2| +|[Trustable aggregation of online ratings](https://doi.org/10.1145/2505515.2507863)|HyunKyo Oh, SangWook Kim, Sunju Park, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Trustable+aggregation+of+online+ratings)|2| +|[Taxonomy-based regression model for cross-domain sentiment classification](https://doi.org/10.1145/2505515.2507843)|CongKai Lin, YangYin Lee, ChiHsin Yu, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Taxonomy-based+regression+model+for+cross-domain+sentiment+classification)|2| +|[Objectionable content filtering by click-through data](https://doi.org/10.1145/2505515.2507849)|LungHao Lee, YenCheng Juan, HsinHsi Chen, YuenHsien Tseng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Objectionable+content+filtering+by+click-through+data)|2| +|[Expedited rating of data stores using agile data loading techniques](https://doi.org/10.1145/2505515.2505744)|Sumita Barahmand, Shahram Ghandeharizadeh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Expedited+rating+of+data+stores+using+agile+data+loading+techniques)|2| +|[Towards an enhanced and adaptable ontology by distilling and assembling online encyclopedias](https://doi.org/10.1145/2505515.2505597)|Shan Jiang, Lidong Bing, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+an+enhanced+and+adaptable+ontology+by+distilling+and+assembling+online+encyclopedias)|2| +|[How do users grow up along with search engines?: a study of long-term users' behavior](https://doi.org/10.1145/2505515.2505650)|Jian Liu, Yiqun Liu, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+do+users+grow+up+along+with+search+engines?:+a+study+of+long-term+users'+behavior)|2| +|[Exploiting query term correlation for list caching in web search engines](https://doi.org/10.1145/2505515.2507870)|Jiancong Tong, Gang Wang, Douglas S. Stones, Shizhao Sun, Xiaoguang Liu, Fan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+query+term+correlation+for+list+caching+in+web+search+engines)|2| +|[Through-the-looking glass: utilizing rich post-search trail statistics for web search](https://doi.org/10.1145/2505515.2507890)|Alexey Tolstikov, Mikhail Shakhray, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Through-the-looking+glass:+utilizing+rich+post-search+trail+statistics+for+web+search)|2| +|[Lead-lag analysis via sparse co-projection in correlated text streams](https://doi.org/10.1145/2505515.2505554)|Fangzhao Wu, Yangqiu Song, Shixia Liu, Yongfeng Huang, Zhenyu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lead-lag+analysis+via+sparse+co-projection+in+correlated+text+streams)|2| +|[Efficient pruning algorithm for top-K ranking on dataset with value uncertainty](https://doi.org/10.1145/2505515.2505735)|Jianwen Chen, Ling Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+pruning+algorithm+for+top-K+ranking+on+dataset+with+value+uncertainty)|2| +|[SRbench-a benchmark for soundtrack recommendation systems](https://doi.org/10.1145/2505515.2505658)|Aleksandar Stupar, Sebastian Michel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SRbench-a+benchmark+for+soundtrack+recommendation+systems)|2| +|[Extraction and integration of web data by end-users](https://doi.org/10.1145/2505515.2505635)|Sudhir Agarwal, Michael R. Genesereth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extraction+and+integration+of+web+data+by+end-users)|2| +|[Scalable bootstrapping for python](https://doi.org/10.1145/2505515.2505630)|Peter Birsinger, Richard Xia, Armando Fox||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+bootstrapping+for+python)|2| +|[TerraFly GeoCloud: online spatial data analysis system](https://doi.org/10.1145/2505515.2508206)|Yun Lu, Mingjin Zhang, Tao Li, Chang Liu, Erik Edrosa, Naphtali Rishe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TerraFly+GeoCloud:+online+spatial+data+analysis+system)|2| +|[Sixth workshop on exploiting semantic annotations in information retrieval (ESAIR'13)](https://doi.org/10.1145/2505515.2505808)|Paul N. Bennett, Evgeniy Gabrilovich, Jaap Kamps, Jussi Karlgren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sixth+workshop+on+exploiting+semantic+annotations+in+information+retrieval+(ESAIR'13))|2| +|[PIKM 2013: the 6th ACM workshop for ph.d. students in information and knowledge management](https://doi.org/10.1145/2505515.2505817)|Fabian M. Suchanek, Anisoara Nica||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIKM+2013:+the+6th+ACM+workshop+for+ph.d.+students+in+information+and+knowledge+management)|2| +|[Efficient parsing-based search over structured data](https://doi.org/10.1145/2505515.2505764)|Aditya G. Parameswaran, Raghav Kaushik, Arvind Arasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+parsing-based+search+over+structured+data)|1| +|[Structured positional entity language model for enterprise entity retrieval](https://doi.org/10.1145/2505515.2505702)|Chunliang Lu, Lidong Bing, Wai Lam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+positional+entity+language+model+for+enterprise+entity+retrieval)|1| +|[The logical diversity of explanations in OWL ontologies](https://doi.org/10.1145/2505515.2505536)|Samantha Bail, Bijan Parsia, Ulrike Sattler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+logical+diversity+of+explanations+in+OWL+ontologies)|1| +|[Disinformation techniques for entity resolution](https://doi.org/10.1145/2505515.2505636)|Steven Euijong Whang, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Disinformation+techniques+for+entity+resolution)|1| +|[Efficient filtering and ranking schemes for finding inclusion dependencies on the web](https://doi.org/10.1145/2505515.2505722)|Atsuyuki Morishima, Erika Yumiya, Masami Takahashi, Shigeo Sugimoto, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+filtering+and+ranking+schemes+for+finding+inclusion+dependencies+on+the+web)|1| +|[Spatial-temporal query homogeneity for KNN object search on road networks](https://doi.org/10.1145/2505515.2505524)|YingJu Chen, KunTa Chuang, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial-temporal+query+homogeneity+for+KNN+object+search+on+road+networks)|1| +|[MRPacker: an SQL to mapreduce optimizer](https://doi.org/10.1145/2505515.2507813)|Xuelian Lin, Yue Ye, Shuai Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MRPacker:+an+SQL+to+mapreduce+optimizer)|1| +|[Term associations in query expansion: a structural linguistic perspective](https://doi.org/10.1145/2505515.2507852)|Michael Symonds, Guido Zuccon, Bevan Koopman, Peter Bruza, Laurianne Sitbon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Term+associations+in+query+expansion:+a+structural+linguistic+perspective)|1| +|[Retrieving opinions from discussion forums](https://doi.org/10.1145/2505515.2507861)|Laura Dietz, Ziqi Wang, Samuel J. Huston, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retrieving+opinions+from+discussion+forums)|1| +|[Timeline adaptation for text classification](https://doi.org/10.1145/2505515.2507833)|Fumiyo Fukumoto, Yoshimi Suzuki, Atsuhiro Takasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Timeline+adaptation+for+text+classification)|1| +|[ROU: advanced keyword search on graph](https://doi.org/10.1145/2505515.2505743)|Yifan Pan, Yuqing Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ROU:+advanced+keyword+search+on+graph)|1| +|[Generating informative snippet to maximize item visibility](https://doi.org/10.1145/2505515.2505606)|Mahashweta Das, Habibur Rahman, Gautam Das, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+informative+snippet+to+maximize+item+visibility)|1| +|[Speller performance prediction for query autocorrection](https://doi.org/10.1145/2505515.2507871)|Alexey Baytin, Irina Galinskaya, Marina Panina, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Speller+performance+prediction+for+query+autocorrection)|1| +|[Predicting the impact of expansion terms using semantic and user interaction features](https://doi.org/10.1145/2505515.2507872)|Anton Bakhtin, Yury Ustinovsky, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+impact+of+expansion+terms+using+semantic+and+user+interaction+features)|1| +|[Online learning from streaming data](https://doi.org/10.1145/2505515.2514695)|Jeff Hawkins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+learning+from+streaming+data)|1| +|[Context-aware top-K processing using views](https://doi.org/10.1145/2505515.2505759)|Silviu Maniu, Bogdan Cautis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Context-aware+top-K+processing+using+views)|1| +|[Improving passage ranking with user behavior information](https://doi.org/10.1145/2505515.2505719)|Weize Kong, Elif Aktolga, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+passage+ranking+with+user+behavior+information)|1| +|[Archiving the relaxed consistency web](https://doi.org/10.1145/2505515.2505551)|Zhiwu Xie, Herbert Van de Sompel, Jinyang Liu, Johann van Reenen, Ramiro Jordan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Archiving+the+relaxed+consistency+web)|1| +|[UMicS: from anonymized data to usable microdata](https://doi.org/10.1145/2505515.2505737)|Graham Cormode, Entong Shen, Xi Gong, Ting Yu, Cecilia M. Procopiuc, Divesh Srivastava||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UMicS:+from+anonymized+data+to+usable+microdata)|1| +|[Efficient forecasting for hierarchical time series](https://doi.org/10.1145/2505515.2505622)|Lars Dannecker, Robert Lorenz, Philipp Rösch, Wolfgang Lehner, Gregor Hackenbroich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+forecasting+for+hierarchical+time+series)|1| +|[pEDM: online-forecasting for smart energy analytics](https://doi.org/10.1145/2505515.2505588)|Lars Dannecker, Philipp Rösch, Ulrike Fischer, Gordon Gaumnitz, Wolfgang Lehner, Gregor Hackenbroich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=pEDM:+online-forecasting+for+smart+energy+analytics)|1| +|[FusionDB: conflict management system for small-science databases](https://doi.org/10.1145/2505515.2508205)|Karim Ibrahim, Nathaniel Selvo, Mohamad ElRifai, Mohamed Y. Eltabakh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FusionDB:+conflict+management+system+for+small-science+databases)|1| +|[Inside the world's playlist](https://doi.org/10.1145/2505515.2508216)|Wouter Weerkamp, Manos Tsagkias, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inside+the+world's+playlist)|1| +|[Human computing games for knowledge acquisition](https://doi.org/10.1145/2505515.2508213)|Sarath Kumar Kondreddi, Peter Triantafillou, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Human+computing+games+for+knowledge+acquisition)|1| +|[ESTHETE: a news browsing system to visualize the context and evolution of news stories](https://doi.org/10.1145/2505515.2508208)|Rahul Goyal, Ravee Malla, Amitabha Bagchi, Sameep Mehta, Maya Ramanath||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESTHETE:+a+news+browsing+system+to+visualize+the+context+and+evolution+of+news+stories)|1| +|[PLEAD 2013: politics, elections and data](https://doi.org/10.1145/2505515.2505813)|Ingmar Weber, AnaMaria Popescu, Marco Pennacchiotti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PLEAD+2013:+politics,+elections+and+data)|1| +|[The first workshop on user engagement optimization](https://doi.org/10.1145/2505515.2505816)|Liangjie Hong, ShuangHong Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+first+workshop+on+user+engagement+optimization)|1| +|[Web-KR 2013: the 4th international workshop on web-scale knowledge representation, retrieval and reasoning](https://doi.org/10.1145/2505515.2505819)|Yi Zeng, Spyros Kotoulas, Zhisheng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web-KR+2013:+the+4th+international+workshop+on+web-scale+knowledge+representation,+retrieval+and+reasoning)|1| |[Structured data in web search](https://doi.org/10.1145/2505515.2532442)|Alon Y. Halevy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+data+in+web+search)|0| +|[Usability in machine learning at scale with graphlab](https://doi.org/10.1145/2505515.2527108)|Carlos Guestrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Usability+in+machine+learning+at+scale+with+graphlab)|0| |[Applying theory to practice](https://doi.org/10.1145/2505515.2523611)|Ronald Fagin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Applying+theory+to+practice)|0| -|[Mining a search engine's corpus without a query pool](https://doi.org/10.1145/2505515.2505748)|Mingyang Zhang, Nan Zhang, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+a+search+engine's+corpus+without+a+query+pool)|0| -|[Spatial search for K diverse-near neighbors](https://doi.org/10.1145/2505515.2505747)|Gregory Ference, WangChien Lee, HuiJu Hung, DeNian Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+search+for+K+diverse-near+neighbors)|0| -|[G-tree: an efficient index for KNN search on road networks](https://doi.org/10.1145/2505515.2505749)|Ruicheng Zhong, Guoliang Li, KianLee Tan, Lizhu Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=G-tree:+an+efficient+index+for+KNN+search+on+road+networks)|0| -|[Graph-of-word and TW-IDF: new approach to ad hoc IR](https://doi.org/10.1145/2505515.2505671)|François Rousseau, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-of-word+and+TW-IDF:+new+approach+to+ad+hoc+IR)|0| -|[Efficient parsing-based search over structured data](https://doi.org/10.1145/2505515.2505764)|Aditya G. Parameswaran, Raghav Kaushik, Arvind Arasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+parsing-based+search+over+structured+data)|0| -|[Map search via a factor graph model](https://doi.org/10.1145/2505515.2505674)|Qi Zhang, Jihua Kang, Yeyun Gong, Huan Chen, Yaqian Zhou, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Map+search+via+a+factor+graph+model)|0| -|[A phased ranking model for question answering](https://doi.org/10.1145/2505515.2505678)|Rui Liu, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+phased+ranking+model+for+question+answering)|0| -|[CRF framework for supervised preference aggregation](https://doi.org/10.1145/2505515.2505713)|Maksims Volkovs, Richard S. Zemel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CRF+framework+for+supervised+preference+aggregation)|0| -|[CQArank: jointly model topics and expertise in community question answering](https://doi.org/10.1145/2505515.2505720)|Liu Yang, Minghui Qiu, Swapna Gottipati, Feida Zhu, Jing Jiang, Huiping Sun, Zhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CQArank:+jointly+model+topics+and+expertise+in+community+question+answering)|0| -|[Penguins in sweaters, or serendipitous entity search on user-generated content](https://doi.org/10.1145/2505515.2505680)|Ilaria Bordino, Yelena Mejova, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Penguins+in+sweaters,+or+serendipitous+entity+search+on+user-generated+content)|0| -|[Learning relatedness measures for entity linking](https://doi.org/10.1145/2505515.2505711)|Diego Ceccarelli, Claudio Lucchese, Salvatore Orlando, Raffaele Perego, Salvatore Trani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+relatedness+measures+for+entity+linking)|0| -|[Structured positional entity language model for enterprise entity retrieval](https://doi.org/10.1145/2505515.2505702)|Chunliang Lu, Lidong Bing, Wai Lam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+positional+entity+language+model+for+enterprise+entity+retrieval)|0| -|[Entity-centric document filtering: boosting feature mapping through meta-features](https://doi.org/10.1145/2505515.2505683)|Mianwei Zhou, Kevin ChenChuan Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity-centric+document+filtering:+boosting+feature+mapping+through+meta-features)|0| -|[Gem-based entity-knowledge maintenance](https://doi.org/10.1145/2505515.2505715)|Bilyana Taneva, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gem-based+entity-knowledge+maintenance)|0| -|[Predicting user activity level in social networks](https://doi.org/10.1145/2505515.2505518)|Yin Zhu, Erheng Zhong, Sinno Jialin Pan, Xiao Wang, Minzhe Zhou, Qiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+user+activity+level+in+social+networks)|0| -|[On popularity prediction of videos shared in online social networks](https://doi.org/10.1145/2505515.2505523)|Haitao Li, Xiaoqiang Ma, Feng Wang, Jiangchuan Liu, Ke Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+popularity+prediction+of+videos+shared+in+online+social+networks)|0| -|[Community-based user recommendation in uni-directional social networks](https://doi.org/10.1145/2505515.2505533)|Gang Zhao, MongLi Lee, Wynne Hsu, Wei Chen, Haoji Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-based+user+recommendation+in+uni-directional+social+networks)|0| -|[Inferring anchor links across multiple heterogeneous social networks](https://doi.org/10.1145/2505515.2505531)|Xiangnan Kong, Jiawei Zhang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+anchor+links+across+multiple+heterogeneous+social+networks)|0| -|[Personalized influence maximization on social networks](https://doi.org/10.1145/2505515.2505571)|Jing Guo, Peng Zhang, Chuan Zhou, Yanan Cao, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+influence+maximization+on+social+networks)|0| -|[Discovering coherent topics using general knowledge](https://doi.org/10.1145/2505515.2505519)|Zhiyuan Chen, Arjun Mukherjee, Bing Liu, Meichun Hsu, Malú Castellanos, Riddhiman Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+coherent+topics+using+general+knowledge)|0| -|[Spatio-temporal and events based analysis of topic popularity in twitter](https://doi.org/10.1145/2505515.2505525)|Sebastien Ardon, Amitabha Bagchi, Anirban Mahanti, Amit Ruhela, Aaditeshwar Seth, Rudra Mohan Tripathy, Sipat Triukose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatio-temporal+and+events+based+analysis+of+topic+popularity+in+twitter)|0| -|[Domain-dependent/independent topic switching model for online reviews with numerical ratings](https://doi.org/10.1145/2505515.2505540)|Yasutoshi Ida, Takuma Nakamura, Takashi Matsumoto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain-dependent/independent+topic+switching+model+for+online+reviews+with+numerical+ratings)|0| -|[Content coverage maximization on word networks for hierarchical topic summarization](https://doi.org/10.1145/2505515.2505585)|Chi Wang, Xiao Yu, Yanen Li, Chengxiang Zhai, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content+coverage+maximization+on+word+networks+for+hierarchical+topic+summarization)|0| -|[A partially supervised cross-collection topic model for cross-domain text classification](https://doi.org/10.1145/2505515.2505556)|Yang Bao, Nigel Collier, Anindya Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+partially+supervised+cross-collection+topic+model+for+cross-domain+text+classification)|0| -|[Mining frequent neighborhood patterns in a large labeled graph](https://doi.org/10.1145/2505515.2505530)|Jialong Han, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+frequent+neighborhood+patterns+in+a+large+labeled+graph)|0| -|[A two-phase algorithm for mining sequential patterns with differential privacy](https://doi.org/10.1145/2505515.2505553)|Luca Bonomi, Li Xiong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+two-phase+algorithm+for+mining+sequential+patterns+with+differential+privacy)|0| -|[Mining diabetes complication and treatment patterns for clinical decision support](https://doi.org/10.1145/2505515.2505549)|Lu Liu, Jie Tang, Yu Cheng, Ankit Agrawal, Weikeng Liao, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+diabetes+complication+and+treatment+patterns+for+clinical+decision+support)|0| -|[Correlating medical-dependent query features with image retrieval models using association rules](https://doi.org/10.1145/2505515.2505580)|Hajer Ayadi, Mouna Torjmen, Mariam Daoud, Maher Ben Jemaa, Jimmy Xiangji Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Correlating+medical-dependent+query+features+with+image+retrieval+models+using+association+rules)|0| -|[Mining-based compression approach of propositional formulae](https://doi.org/10.1145/2505515.2505576)|Saïd Jabbour, Lakhdar Sais, Yakoub Salhi, Takeaki Uno||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining-based+compression+approach+of+propositional+formulae)|0| -|[Local correlation detection with linearity enhancement in streaming data](https://doi.org/10.1145/2505515.2505746)|Qing Xie, Shuo Shang, Bo Yuan, Chaoyi Pang, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+correlation+detection+with+linearity+enhancement+in+streaming+data)|0| -|[Efficient processing of streaming graphs for evolution-aware clustering](https://doi.org/10.1145/2505515.2505750)|Mindi Yuan, KunLung Wu, Gabriela JacquesSilva, Yi Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+processing+of+streaming+graphs+for+evolution-aware+clustering)|0| -|[RWS-Diff: flexible and efficient change detection in hierarchical data](https://doi.org/10.1145/2505515.2505763)|Jan P. Finis, Martin Raiber, Nikolaus Augsten, Robert Brunel, Alfons Kemper, Franz Färber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RWS-Diff:+flexible+and+efficient+change+detection+in+hierarchical+data)|0| |[Searching similar segments over textual event sequences](https://doi.org/10.1145/2505515.2505762)|Liang Tang, Tao Li, ShuChing Chen, Shunzhi Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Searching+similar+segments+over+textual+event+sequences)|0| -|[Causality and responsibility: probabilistic queries revisited in uncertain databases](https://doi.org/10.1145/2505515.2505754)|Xiang Lian, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Causality+and+responsibility:+probabilistic+queries+revisited+in+uncertain+databases)|0| -|[Locality sensitive hashing for scalable structural classification and clustering of web documents](https://doi.org/10.1145/2505515.2505673)|Christian Hachenberg, Thomas Gottron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Locality+sensitive+hashing+for+scalable+structural+classification+and+clustering+of+web+documents)|0| -|[An index for efficient semantic full-text search](https://doi.org/10.1145/2505515.2505689)|Hannah Bast, Björn Buchhold||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+index+for+efficient+semantic+full-text+search)|0| -|[Rank-energy selective query forwarding for distributed search systems](https://doi.org/10.1145/2505515.2505710)|Amin Y. Teymorian, Ophir Frieder, Marcus A. Maloof||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank-energy+selective+query+forwarding+for+distributed+search+systems)|0| -|[Load-sensitive selective pruning for distributed search](https://doi.org/10.1145/2505515.2505699)|Daniele Broccolo, Craig Macdonald, Salvatore Orlando, Iadh Ounis, Raffaele Perego, Fabrizio Silvestri, Nicola Tonellotto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Load-sensitive+selective+pruning+for+distributed+search)|0| -|[Augmenting web search surrogates with images](https://doi.org/10.1145/2505515.2505714)|Robert Capra, Jaime Arguello, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Augmenting+web+search+surrogates+with+images)|0| -|[Building a large-scale corpus for evaluating event detection on twitter](https://doi.org/10.1145/2505515.2505695)|Andrew James McMinn, Yashar Moshfeghi, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+a+large-scale+corpus+for+evaluating+event+detection+on+twitter)|0| -|[On sparsity and drift for effective real-time filtering in microblogs](https://doi.org/10.1145/2505515.2505709)|MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+sparsity+and+drift+for+effective+real-time+filtering+in+microblogs)|0| -|[Improving pseudo-relevance feedback via tweet selection](https://doi.org/10.1145/2505515.2505701)|Taiki Miyanishi, Kazuhiro Seki, Kuniaki Uehara||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+pseudo-relevance+feedback+via+tweet+selection)|0| -|[Probabilistic solutions of influence propagation on social networks](https://doi.org/10.1145/2505515.2505718)|Miao Zhang, Chunni Dai, Chris H. Q. Ding, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+solutions+of+influence+propagation+on+social+networks)|0| -|[Supporting exploratory people search: a study of factor transparency and user control](https://doi.org/10.1145/2505515.2505684)|Shuguang Han, Daqing He, Jiepu Jiang, Zhen Yue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+exploratory+people+search:+a+study+of+factor+transparency+and+user+control)|0| -|[Location prediction in social media based on tie strength](https://doi.org/10.1145/2505515.2505544)|Jeffrey McGee, James Caverlee, Zhiyuan Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+prediction+in+social+media+based+on+tie+strength)|0| -|[To stay or not to stay: modeling engagement dynamics in social graphs](https://doi.org/10.1145/2505515.2505561)|Fragkiskos D. Malliaros, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+stay+or+not+to+stay:+modeling+engagement+dynamics+in+social+graphs)|0| -|[UNIK: unsupervised social network spam detection](https://doi.org/10.1145/2505515.2505581)|Enhua Tan, Lei Guo, Songqing Chen, Xiaodong Zhang, Yihong Eric Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UNIK:+unsupervised+social+network+spam+detection)|0| -|[Modeling dynamics of meta-populations with a probabilistic approach: global diffusion in social media](https://doi.org/10.1145/2505515.2505583)|Minkyoung Kim, David Newth, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+dynamics+of+meta-populations+with+a+probabilistic+approach:+global+diffusion+in+social+media)|0| -|[Diffusion of innovations revisited: from social network to innovation network](https://doi.org/10.1145/2505515.2505587)|Xin Rong, Qiaozhu Mei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diffusion+of+innovations+revisited:+from+social+network+to+innovation+network)|0| -|[StaticGreedy: solving the scalability-accuracy dilemma in influence maximization](https://doi.org/10.1145/2505515.2505541)|Suqi Cheng, Huawei Shen, Junming Huang, Guoqing Zhang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=StaticGreedy:+solving+the+scalability-accuracy+dilemma+in+influence+maximization)|0| -|[Online multitasking and user engagement](https://doi.org/10.1145/2505515.2505543)|Janette Lehmann, Mounia Lalmas, Georges Dupret, Ricardo BaezaYates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+multitasking+and+user+engagement)|0| -|[An efficient MapReduce algorithm for counting triangles in a very large graph](https://doi.org/10.1145/2505515.2505563)|HaMyung Park, ChinWan Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+MapReduce+algorithm+for+counting+triangles+in+a+very+large+graph)|0| -|[PATRIC: a parallel algorithm for counting triangles in massive networks](https://doi.org/10.1145/2505515.2505545)|Shaikh Arifuzzaman, Maleq Khan, Madhav V. Marathe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PATRIC:+a+parallel+algorithm+for+counting+triangles+in+massive+networks)|0| -|[Parallel motif extraction from very long sequences](https://doi.org/10.1145/2505515.2505575)|Majed Sahli, Essam Mansour, Panos Kalnis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+motif+extraction+from+very+long+sequences)|0| -|[The logical diversity of explanations in OWL ontologies](https://doi.org/10.1145/2505515.2505536)|Samantha Bail, Bijan Parsia, Ulrike Sattler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+logical+diversity+of+explanations+in+OWL+ontologies)|0| -|[Ontology authoring with FORZA](https://doi.org/10.1145/2505515.2505539)|C. Maria Keet, Muhammad Tahir Khan, Chiara Ghidini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ontology+authoring+with+FORZA)|0| -|[PIDGIN: ontology alignment using web text as interlingua](https://doi.org/10.1145/2505515.2505559)|Derry Wijaya, Partha Pratim Talukdar, Tom M. Mitchell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIDGIN:+ontology+alignment+using+web+text+as+interlingua)|0| -|[Aligning freebase with the YAGO ontology](https://doi.org/10.1145/2505515.2505546)|Elena Demidova, Irina Oelze, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aligning+freebase+with+the+YAGO+ontology)|0| -|[Mapping adaptation actions for the automatic reconciliation of dynamic ontologies](https://doi.org/10.1145/2505515.2505564)|Júlio Cesar dos Reis, Duy Dinh, Cédric Pruski, Marcos Da Silveira, Chantal ReynaudDelaître||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mapping+adaptation+actions+for+the+automatic+reconciliation+of+dynamic+ontologies)|0| -|[On mining mobile apps usage behavior for predicting apps usage in smartphones](https://doi.org/10.1145/2505515.2505529)|ZhungXun Liao, YiChin Pan, WenChih Peng, PoRuey Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+mining+mobile+apps+usage+behavior+for+predicting+apps+usage+in+smartphones)|0| -|[Ranking fraud detection for mobile apps: a holistic view](https://doi.org/10.1145/2505515.2505547)|Hengshu Zhu, Hui Xiong, Yong Ge, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+fraud+detection+for+mobile+apps:+a+holistic+view)|0| -|[Boolean satisfiability for sequence mining](https://doi.org/10.1145/2505515.2505577)|Saïd Jabbour, Lakhdar Sais, Yakoub Salhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Boolean+satisfiability+for+sequence+mining)|0| -|[How the live web feels about events](https://doi.org/10.1145/2505515.2505572)|George Valkanas, Dimitrios Gunopulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+the+live+web+feels+about+events)|0| -|[AnchorMF: towards effective event context identification](https://doi.org/10.1145/2505515.2505548)|Hansu Gu, Mike Gartrell, Liang Zhang, Qin Lv, Dirk Grunwald||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AnchorMF:+towards+effective+event+context+identification)|0| -|[Users versus models: what observation tells us about effectiveness metrics](https://doi.org/10.1145/2505515.2507665)|Alistair Moffat, Paul Thomas, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Users+versus+models:+what+observation+tells+us+about+effectiveness+metrics)|0| -|[Evaluating aggregated search using interleaving](https://doi.org/10.1145/2505515.2505698)|Aleksandr Chuklin, Anne Schuth, Katja Hofmann, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+aggregated+search+using+interleaving)|0| -|[Using historical click data to increase interleaving sensitivity](https://doi.org/10.1145/2505515.2505687)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+historical+click+data+to+increase+interleaving+sensitivity)|0| -|[User intent and assessor disagreement in web search evaluation](https://doi.org/10.1145/2505515.2505716)|Gabriella Kazai, Emine Yilmaz, Nick Craswell, Seyed M. M. Tahaghoghi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+intent+and+assessor+disagreement+in+web+search+evaluation)|0| -|[On the reliability and intuitiveness of aggregated search metrics](https://doi.org/10.1145/2505515.2505691)|Ke Zhou, Mounia Lalmas, Tetsuya Sakai, Ronan Cummins, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+reliability+and+intuitiveness+of+aggregated+search+metrics)|0| -|[The water filling model and the cube test: multi-dimensional evaluation for professional search](https://doi.org/10.1145/2505515.2523648)|Jiyun Luo, Christopher Wing, Hui Yang, Marti A. Hearst||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+water+filling+model+and+the+cube+test:+multi-dimensional+evaluation+for+professional+search)|0| -|[Disinformation techniques for entity resolution](https://doi.org/10.1145/2505515.2505636)|Steven Euijong Whang, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Disinformation+techniques+for+entity+resolution)|0| -|[Location recommendation for out-of-town users in location-based social networks](https://doi.org/10.1145/2505515.2505637)|Gregory Ference, Mao Ye, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+recommendation+for+out-of-town+users+in+location-based+social+networks)|0| -|[Personalized point-of-interest recommendation by mining users' preference transition](https://doi.org/10.1145/2505515.2505639)|Xin Liu, Yong Liu, Karl Aberer, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+point-of-interest+recommendation+by+mining+users'+preference+transition)|0| -|[Short text classification by detecting information path](https://doi.org/10.1145/2505515.2505638)|Shitao Zhang, Xiaoming Jin, Dou Shen, Bin Cao, Xuetao Ding, Xiaochen Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short+text+classification+by+detecting+information+path)|0| -|[Proximity2-aware ranking for textual, temporal, and geographic queries](https://doi.org/10.1145/2505515.2505640)|Jannik Strötgen, Michael Gertz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Proximity2-aware+ranking+for+textual,+temporal,+and+geographic+queries)|0| -|[Timely crawling of high-quality ephemeral new content](https://doi.org/10.1145/2505515.2505641)|Damien Lefortier, Liudmila Ostroumova, Egor Samosvat, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Timely+crawling+of+high-quality+ephemeral+new+content)|0| -|[LearNext: learning to predict tourists movements](https://doi.org/10.1145/2505515.2505656)|Ranieri Baraglia, Cristina Ioana Muntean, Franco Maria Nardini, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LearNext:+learning+to+predict+tourists+movements)|0| -|[Where shall we go today?: planning touristic tours with tripbuilder](https://doi.org/10.1145/2505515.2505643)|Igo Ramalho Brilhante, José Antônio Fernandes de Macêdo, Franco Maria Nardini, Raffaele Perego, Chiara Renso||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+shall+we+go+today?:+planning+touristic+tours+with+tripbuilder)|0| -|[Efficient filtering and ranking schemes for finding inclusion dependencies on the web](https://doi.org/10.1145/2505515.2505722)|Atsuyuki Morishima, Erika Yumiya, Masami Takahashi, Shigeo Sugimoto, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+filtering+and+ranking+schemes+for+finding+inclusion+dependencies+on+the+web)|0| -|[A generic front-stage for semi-stream processing](https://doi.org/10.1145/2505515.2505734)|M. Asif Naeem, Gerald Weber, Gillian Dobbie, Christof Lutteroth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+generic+front-stage+for+semi-stream+processing)|0| -|[Scalable diversification of multiple search results](https://doi.org/10.1145/2505515.2505740)|Hina A. Khan, Marina Drosou, Mohamed A. Sharaf||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+diversification+of+multiple+search+results)|0| -|[Cache refreshing for online social news feeds](https://doi.org/10.1145/2505515.2505742)|Xiao Bai, Flavio Paiva Junqueira, Adam Silberstein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cache+refreshing+for+online+social+news+feeds)|0| -|[Parallel triangle counting in massive streaming graphs](https://doi.org/10.1145/2505515.2505741)|Kanat Tangwongsan, A. Pavan, Srikanta Tirthapura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+triangle+counting+in+massive+streaming+graphs)|0| -|[A new operator for efficient stream-relation join processing in data streaming engines](https://doi.org/10.1145/2505515.2505728)|Roozbeh Derakhshan, Abdul Sattar, Bela Stantic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+new+operator+for+efficient+stream-relation+join+processing+in+data+streaming+engines)|0| -|[SCISSOR: scalable and efficient reachability query processing in time-evolving hierarchies](https://doi.org/10.1145/2505515.2505732)|Phani Rohit Mullangi, Lakshmish Ramaswamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SCISSOR:+scalable+and+efficient+reachability+query+processing+in+time-evolving+hierarchies)|0| -|[Towards metric fusion on multi-view data: a cross-view based graph random walk approach](https://doi.org/10.1145/2505515.2505591)|Yang Wang, Xuemin Lin, Qing Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+metric+fusion+on+multi-view+data:+a+cross-view+based+graph+random+walk+approach)|0| -|[Understanding the roles of sub-graph features for graph classification: an empirical study perspective](https://doi.org/10.1145/2505515.2505614)|Ting Guo, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+roles+of+sub-graph+features+for+graph+classification:+an+empirical+study+perspective)|0| -|[Discovering latent blockmodels in sparse and noisy graphs using non-negative matrix factorisation](https://doi.org/10.1145/2505515.2505595)|Jeffrey Chan, Wei Liu, Andrey Kan, Christopher Leckie, James Bailey, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+latent+blockmodels+in+sparse+and+noisy+graphs+using+non-negative+matrix+factorisation)|0| -|[Active exploration: simultaneous sampling and labeling for large graphs](https://doi.org/10.1145/2505515.2505618)|Meng Fang, Jie Yin, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+exploration:+simultaneous+sampling+and+labeling+for+large+graphs)|0| -|[PAGE: a partition aware graph computation engine](https://doi.org/10.1145/2505515.2505617)|Yingxia Shao, Junjie Yao, Bin Cui, Lin Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PAGE:+a+partition+aware+graph+computation+engine)|0| -|[Local clustering in provenance graphs](https://doi.org/10.1145/2505515.2505624)|Peter Macko, Daniel W. Margo, Margo I. Seltzer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+clustering+in+provenance+graphs)|0| -|[Content-centric flow mining for influence analysis in social streams](https://doi.org/10.1145/2505515.2505626)|Karthik Subbian, Charu C. Aggarwal, Jaideep Srivastava||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-centric+flow+mining+for+influence+analysis+in+social+streams)|0| -|[Labels or attributes?: rethinking the neighbors for collective classification in sparsely-labeled networks](https://doi.org/10.1145/2505515.2505628)|Luke K. McDowell, David W. Aha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Labels+or+attributes?:+rethinking+the+neighbors+for+collective+classification+in+sparsely-labeled+networks)|0| -|[Mining entity attribute synonyms via compact clustering](https://doi.org/10.1145/2505515.2505608)|Yanen Li, BoJune Paul Hsu, ChengXiang Zhai, Kuansan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+entity+attribute+synonyms+via+compact+clustering)|0| -|[Fast parameterless density-based clustering via random projections](https://doi.org/10.1145/2505515.2505590)|Johannes Schneider, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+parameterless+density-based+clustering+via+random+projections)|0| -|[Modeling interaction features for debate side clustering](https://doi.org/10.1145/2505515.2505634)|Minghui Qiu, Liu Yang, Jing Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+interaction+features+for+debate+side+clustering)|0| -|[Dynamic multi-faceted topic discovery in twitter](https://doi.org/10.1145/2505515.2505593)|Jan Vosecky, Di Jiang, Kenneth WaiTing Leung, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+multi-faceted+topic+discovery+in+twitter)|0| -|[Mining causal topics in text data: iterative topic modeling with time series feedback](https://doi.org/10.1145/2505515.2505612)|Hyun Duk Kim, Malú Castellanos, Meichun Hsu, ChengXiang Zhai, Thomas A. Rietz, Daniel Diermeier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+causal+topics+in+text+data:+iterative+topic+modeling+with+time+series+feedback)|0| -|[A multimodal framework for unsupervised feature fusion](https://doi.org/10.1145/2505515.2505589)|Xiaoyi Li, Jing Gao, Hui Li, Le Yang, Rohini K. Srihari||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+multimodal+framework+for+unsupervised+feature+fusion)|0| -|[Navigating the topical structure of academic search results via the Wikipedia category network](https://doi.org/10.1145/2505515.2505621)|Daniil Mirylenka, Andrea Passerini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Navigating+the+topical+structure+of+academic+search+results+via+the+Wikipedia+category+network)|0| -|[Probabilistic semantic similarity measurements for noisy short texts using Wikipedia entities](https://doi.org/10.1145/2505515.2505600)|Masumi Shirakawa, Kotaro Nakayama, Takahiro Hara, Shojiro Nishio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+semantic+similarity+measurements+for+noisy+short+texts+using+Wikipedia+entities)|0| -|[External memory K-bisimulation reduction of big graphs](https://doi.org/10.1145/2505515.2505752)|Yongming Luo, George H. L. Fletcher, Jan Hidders, Yuqing Wu, Paul De Bra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+memory+K-bisimulation+reduction+of+big+graphs)|0| -|[Linear-time enumeration of maximal K-edge-connected subgraphs in large networks by random contraction](https://doi.org/10.1145/2505515.2505751)|Takuya Akiba, Yoichi Iwata, Yuichi Yoshida||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linear-time+enumeration+of+maximal+K-edge-connected+subgraphs+in+large+networks+by+random+contraction)|0| -|[Querying graphs with preferences](https://doi.org/10.1145/2505515.2505758)|Valeria Fionda, Giuseppe Pirrò||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+graphs+with+preferences)|0| -|[Network-aware search in social tagging applications: instance optimality versus efficiency](https://doi.org/10.1145/2505515.2505760)|Silviu Maniu, Bogdan Cautis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Network-aware+search+in+social+tagging+applications:+instance+optimality+versus+efficiency)|0| -|[A comparison of two physical data designs for interactive social networking actions](https://doi.org/10.1145/2505515.2505761)|Sumita Barahmand, Shahram Ghandeharizadeh, Jason Yap||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+comparison+of+two+physical+data+designs+for+interactive+social+networking+actions)|0| -|[Building structures from classifiers for passage reranking](https://doi.org/10.1145/2505515.2505688)|Aliaksei Severyn, Massimo Nicosia, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+structures+from+classifiers+for+passage+reranking)|0| -|[Community question topic categorization via hierarchical kernelized classification](https://doi.org/10.1145/2505515.2505676)|Wen Chan, Weidong Yang, Jinhui Tang, Jintao Du, Xiangdong Zhou, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community+question+topic+categorization+via+hierarchical+kernelized+classification)|0| -|[Uncovering collusive spammers in Chinese review websites](https://doi.org/10.1145/2505515.2505700)|Chang Xu, Jie Zhang, Kuiyu Chang, Chong Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+collusive+spammers+in+Chinese+review+websites)|0| -|[Towards minimizing the annotation cost of certified text classification](https://doi.org/10.1145/2505515.2505708)|Mossaab Bagdouri, William Webber, David D. Lewis, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+minimizing+the+annotation+cost+of+certified+text+classification)|0| -|[A heterogenous automatic feedback semi-supervised method for image reranking](https://doi.org/10.1145/2505515.2505675)|XinChao Xu, XinShun Xu, Yafang Wang, Xiaolin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+heterogenous+automatic+feedback+semi-supervised+method+for+image+reranking)|0| -|[Accurate and scalable nearest neighbors in large networks based on effective importance](https://doi.org/10.1145/2505515.2505522)|Petko Bogdanov, Ambuj K. Singh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accurate+and+scalable+nearest+neighbors+in+large+networks+based+on+effective+importance)|0| -|[Spatial-temporal query homogeneity for KNN object search on road networks](https://doi.org/10.1145/2505515.2505524)|YingJu Chen, KunTa Chuang, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial-temporal+query+homogeneity+for+KNN+object+search+on+road+networks)|0| -|[Discovering influential authors in heterogeneous academic networks by a co-ranking method](https://doi.org/10.1145/2505515.2505534)|Qinxue Meng, Paul J. Kennedy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+influential+authors+in+heterogeneous+academic+networks+by+a+co-ranking+method)|0| -|[Entity disambiguation in anonymized graphs using graph kernels](https://doi.org/10.1145/2505515.2505565)|Linus Hermansson, Tommi Kerola, Fredrik Johansson, Vinay Jethava, Devdatt P. Dubhashi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+disambiguation+in+anonymized+graphs+using+graph+kernels)|0| -|[Estimating the relative utility of networks for predicting user activities](https://doi.org/10.1145/2505515.2505586)|Nina Mishra, Daniel M. Romero, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+the+relative+utility+of+networks+for+predicting+user+activities)|0| -|[Exploring weakly supervised latent sentiment explanations for aspect-level review analysis](https://doi.org/10.1145/2505515.2505538)|Lei Fang, Minlie Huang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+weakly+supervised+latent+sentiment+explanations+for+aspect-level+review+analysis)|0| -|[Using micro-reviews to select an efficient set of reviews](https://doi.org/10.1145/2505515.2505568)|ThanhSon Nguyen, Hady Wirawan Lauw, Panayiotis Tsaparas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+micro-reviews+to+select+an+efficient+set+of+reviews)|0| -|[Automatic construction of domain and aspect specific sentiment lexicons for customer review mining](https://doi.org/10.1145/2505515.2505574)|Jürgen Broß, Heiko Ehrig||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+construction+of+domain+and+aspect+specific+sentiment+lexicons+for+customer+review+mining)|0| -|[Wikification via link co-occurrence](https://doi.org/10.1145/2505515.2505521)|Zhiyuan Cai, Kaiqi Zhao, Kenny Q. Zhu, Haixun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Wikification+via+link+co-occurrence)|0| -|[Manipulation among the arbiters of collective intelligence: how wikipedia administrators mold public opinion](https://doi.org/10.1145/2505515.2505566)|Sanmay Das, Allen Lavoie, Malik MagdonIsmail||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Manipulation+among+the+arbiters+of+collective+intelligence:+how+wikipedia+administrators+mold+public+opinion)|0| -|[Robust question answering over the web of linked data](https://doi.org/10.1145/2505515.2505677)|Mohamed Yahya, Klaus Berberich, Shady Elbassuoni, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+question+answering+over+the+web+of+linked+data)|0| -|[Instant foodie: predicting expert ratings from grassroots](https://doi.org/10.1145/2505515.2505712)|Chenhao Tan, Ed H. Chi, David A. Huffaker, Gueorgi Kossinets, Alexander J. Smola||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Instant+foodie:+predicting+expert+ratings+from+grassroots)|0| -|[Expertise retrieval in bibliographic network: a topic dominance learning approach](https://doi.org/10.1145/2505515.2505697)|Seyyed Hadi Hashemi, Mahmood Neshati, Hamid Beigy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Expertise+retrieval+in+bibliographic+network:+a+topic+dominance+learning+approach)|0| -|[On segmentation of eCommerce queries](https://doi.org/10.1145/2505515.2505721)|Nish Parikh, Prasad Sriram, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+segmentation+of+eCommerce+queries)|0| -|[Scientific articles recommendation](https://doi.org/10.1145/2505515.2505705)|Yingming Li, Ming Yang, Zhongfei (Mark) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scientific+articles+recommendation)|0| -|[MRPacker: an SQL to mapreduce optimizer](https://doi.org/10.1145/2505515.2507813)|Xuelian Lin, Yue Ye, Shuai Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MRPacker:+an+SQL+to+mapreduce+optimizer)|0| -|[Flexible and extensible generation and corruption of personal data](https://doi.org/10.1145/2505515.2507815)|Peter Christen, Dinusha Vatsalan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+extensible+generation+and+corruption+of+personal+data)|0| |[A hybrid approach for privacy-preserving processing of knn queries in mobile database systems](https://doi.org/10.1145/2505515.2507814)|Shixin Tian, Ying Cai, Qinghua Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+hybrid+approach+for+privacy-preserving+processing+of+knn+queries+in+mobile+database+systems)|0| -|[An efficient and robust privacy protection technique for massive streaming choice-based information](https://doi.org/10.1145/2505515.2507816)|Ji Zhang, Xuemei Liu, Yonglong Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+and+robust+privacy+protection+technique+for+massive+streaming+choice-based+information)|0| |[RCached-tree: an index structure for efficiently answering popular queries](https://doi.org/10.1145/2505515.2507817)|Manash Pal, Arnab Bhattacharya, Debjyoti Paul||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RCached-tree:+an+index+structure+for+efficiently+answering+popular+queries)|0| -|[Label constrained shortest path estimation](https://doi.org/10.1145/2505515.2507818)|Ankita Likhyani, Srikanta J. Bedathur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Label+constrained+shortest+path+estimation)|0| -|[Feature-based models for improving the quality of noisy training data for relation extraction](https://doi.org/10.1145/2505515.2507850)|Benjamin Roth, Dietrich Klakow||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature-based+models+for+improving+the+quality+of+noisy+training+data+for+relation+extraction)|0| -|[Weighted hashing for fast large scale similarity search](https://doi.org/10.1145/2505515.2507851)|Qifan Wang, Dan Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+hashing+for+fast+large+scale+similarity+search)|0| -|[Term associations in query expansion: a structural linguistic perspective](https://doi.org/10.1145/2505515.2507852)|Michael Symonds, Guido Zuccon, Bevan Koopman, Peter Bruza, Laurianne Sitbon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Term+associations+in+query+expansion:+a+structural+linguistic+perspective)|0| -|[Predicting event-relatedness of popular queries](https://doi.org/10.1145/2505515.2507853)|Seyyedeh Newsha Ghoreishi, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+event-relatedness+of+popular+queries)|0| -|[Modeling latent topic interactions using quantum interference for information retrieval](https://doi.org/10.1145/2505515.2507854)|Alessandro Sordoni, Jing He, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+latent+topic+interactions+using+quantum+interference+for+information+retrieval)|0| |[Generalizing diversity detection in blog feed retrieval](https://doi.org/10.1145/2505515.2507855)|Mostafa Keikha, Fabio Crestani, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalizing+diversity+detection+in+blog+feed+retrieval)|0| -|[Dynamic query intent mining from a search log stream](https://doi.org/10.1145/2505515.2507856)|Yanan Qian, Tetsuya Sakai, Junting Ye, Qinghua Zheng, Cong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+query+intent+mining+from+a+search+log+stream)|0| -|[Latency-aware strategy for static list caching in flash-based web search engines](https://doi.org/10.1145/2505515.2507857)|Jiancong Tong, Gang Wang, Xiaoguang Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latency-aware+strategy+for+static+list+caching+in+flash-based+web+search+engines)|0| -|[Bootstrapping active name disambiguation with crowdsourcing](https://doi.org/10.1145/2505515.2507858)|Yu Cheng, Zhengzhang Chen, Jiang Wang, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bootstrapping+active+name+disambiguation+with+crowdsourcing)|0| -|[Modeling clicks beyond the first result page](https://doi.org/10.1145/2505515.2507859)|Aleksandr Chuklin, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+clicks+beyond+the+first+result+page)|0| -|[Maintaining discriminatory power in quantized indexes](https://doi.org/10.1145/2505515.2507860)|Matt Crane, Andrew Trotman, Richard A. O'Keefe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maintaining+discriminatory+power+in+quantized+indexes)|0| -|[Retrieving opinions from discussion forums](https://doi.org/10.1145/2505515.2507861)|Laura Dietz, Ziqi Wang, Samuel J. Huston, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retrieving+opinions+from+discussion+forums)|0| |[Retrieval of trending keywords in a peer-to-peer micro-blogging OSN](https://doi.org/10.1145/2505515.2507862)|H. Asthana, Ingemar J. Cox||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retrieval+of+trending+keywords+in+a+peer-to-peer+micro-blogging+OSN)|0| -|[Trustable aggregation of online ratings](https://doi.org/10.1145/2505515.2507863)|HyunKyo Oh, SangWook Kim, Sunju Park, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Trustable+aggregation+of+online+ratings)|0| |[Exploiting proximity feature in statistical translation models for information retrieval](https://doi.org/10.1145/2505515.2507864)|Xinhui Tu, Jing Luo, Bo Li, Tingting He, Maofu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+proximity+feature+in+statistical+translation+models+for+information+retrieval)|0| -|[Position-based contextualization for passage retrieval](https://doi.org/10.1145/2505515.2507865)|David Carmel, Anna Shtok, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Position-based+contextualization+for+passage+retrieval)|0| |[High throughput filtering using FPGA-acceleration](https://doi.org/10.1145/2505515.2507866)|Wim Vanderbauwhede, Anton Frolov, Leif Azzopardi, Sai Rahul Chalamalasetti, Martin Margala||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=High+throughput+filtering+using+FPGA-acceleration)|0| |[On challenges with mobile e-health: lessons from a game-theoretic perspective](https://doi.org/10.1145/2505515.2507867)|AnnMarie Eklund||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+challenges+with+mobile+e-health:+lessons+from+a+game-theoretic+perspective)|0| -|[Improving entity search over linked data by modeling latent semantics](https://doi.org/10.1145/2505515.2507868)|Nikita Zhiltsov, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+entity+search+over+linked+data+by+modeling+latent+semantics)|0| |[Challenges in commerce search](https://doi.org/10.1145/2505515.2514696)|Hugh Williams||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Challenges+in+commerce+search)|0| |[Clustering: probably approximately useless?](https://doi.org/10.1145/2505515.2514692)|Rich Caruana||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering:+probably+approximately+useless?)|0| -|[Is top-k sufficient for ranking?](https://doi.org/10.1145/2505515.2505685)|Yanyan Lan, Shuzi Niu, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Is+top-k+sufficient+for+ranking?)|0| -|[How fresh do you want your search results?](https://doi.org/10.1145/2505515.2505696)|Shiwen Cheng, Anastasios Arvanitis, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+fresh+do+you+want+your+search+results?)|0| -|[TellMyRelevance!: predicting the relevance of web search results from cursor interactions](https://doi.org/10.1145/2505515.2505703)|Maximilian Speicher, Andreas Both, Martin Gaedke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TellMyRelevance!:+predicting+the+relevance+of+web+search+results+from+cursor+interactions)|0| |[Selection fusion in semi-structured retrieval](https://doi.org/10.1145/2505515.2505686)|Muhammad Ali Norozi, Paavo Arvola||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selection+fusion+in+semi-structured+retrieval)|0| -|[Incorporating user preferences into click models](https://doi.org/10.1145/2505515.2505704)|Qianli Xing, Yiqun Liu, JianYun Nie, Min Zhang, Shaoping Ma, Kuo Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+user+preferences+into+click+models)|0| -|[Feedback-driven multiclass active learning for data streams](https://doi.org/10.1145/2505515.2505528)|Yu Cheng, Zhengzhang Chen, Lu Liu, Jiang Wang, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feedback-driven+multiclass+active+learning+for+data+streams)|0| -|[Discriminative feature selection for multi-view cross-domain learning](https://doi.org/10.1145/2505515.2505532)|Zheng Fang, Zhongfei (Mark) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discriminative+feature+selection+for+multi-view+cross-domain+learning)|0| |[Functional dirichlet process](https://doi.org/10.1145/2505515.2505537)|Lijing Qin, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Functional+dirichlet+process)|0| -|[Spatio-temporal meme prediction: learning what hashtags will be popular where](https://doi.org/10.1145/2505515.2505579)|Krishna Yeswanth Kamath, James Caverlee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatio-temporal+meme+prediction:+learning+what+hashtags+will+be+popular+where)|0| -|[Cost-sensitive learning for large-scale hierarchical classification](https://doi.org/10.1145/2505515.2505582)|Jianfu Chen, David Warren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cost-sensitive+learning+for+large-scale+hierarchical+classification)|0| -|[Effective measures for inter-document similarity](https://doi.org/10.1145/2505515.2505526)|John S. Whissell, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+measures+for+inter-document+similarity)|0| -|[Efficient hierarchical clustering of large high dimensional datasets](https://doi.org/10.1145/2505515.2505527)|Sean Gilpin, Buyue Qian, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+hierarchical+clustering+of+large+high+dimensional+datasets)|0| -|[Flexible and adaptive subspace search for outlier analysis](https://doi.org/10.1145/2505515.2505560)|Fabian Keller, Emmanuel Müller, Andreas Wixler, Klemens Böhm||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+adaptive+subspace+search+for+outlier+analysis)|0| |[Query matching for report recommendation](https://doi.org/10.1145/2505515.2505562)|Veronika Thost, Konrad Voigt, Daniel Schuster||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+matching+for+report+recommendation)|0| -|[Computing term similarity by large probabilistic isA knowledge](https://doi.org/10.1145/2505515.2505567)|PeiPei Li, Haixun Wang, Kenny Q. Zhu, Zhongyuan Wang, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+term+similarity+by+large+probabilistic+isA+knowledge)|0| -|[Interactive collaborative filtering](https://doi.org/10.1145/2505515.2505690)|Xiaoxue Zhao, Weinan Zhang, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+collaborative+filtering)|0| -|[Building optimal information systems automatically: configuration space exploration for biomedical information systems](https://doi.org/10.1145/2505515.2505692)|Zi Yang, Elmer Garduño, Yan Fang, Avner Maiberg, Collin McCormack, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+optimal+information+systems+automatically:+configuration+space+exploration+for+biomedical+information+systems)|0| -|[Learning to handle negated language in medical records search](https://doi.org/10.1145/2505515.2505706)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+handle+negated+language+in+medical+records+search)|0| |[A pattern-based selective recrawling approach for object-level vertical search](https://doi.org/10.1145/2505515.2505707)|Yaqian Zhou, Qi Zhang, Xuanjing Huang, Lide Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+pattern-based+selective+recrawling+approach+for+object-level+vertical+search)|0| -|[Robust models of mouse movement on dynamic web search results pages](https://doi.org/10.1145/2505515.2505717)|Fernando Diaz, Ryen White, Georg Buscher, Daniel J. Liebling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+models+of+mouse+movement+on+dynamic+web+search+results+pages)|0| -|[Cross-domain sparse coding](https://doi.org/10.1145/2505515.2507819)|Jim JingYan Wang, Halima Bensmail||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-domain+sparse+coding)|0| -|[Motif discovery in spatial trajectories using grammar inference](https://doi.org/10.1145/2505515.2507820)|Tim Oates, Arnold P. Boedihardjo, Jessica Lin, Crystal Chen, Susan Frankenstein, Sunil Gandhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Motif+discovery+in+spatial+trajectories+using+grammar+inference)|0| -|[LCMKL: latent-community and multi-kernel learning based image annotation](https://doi.org/10.1145/2505515.2507821)|Qing Li, Yun Gu, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LCMKL:+latent-community+and+multi-kernel+learning+based+image+annotation)|0| -|[Random walk-based graphical sampling in unbalanced heterogeneous bipartite social graphs](https://doi.org/10.1145/2505515.2507822)|Yusheng Xie, Zhengzhang Chen, Ankit Agrawal, Alok N. Choudhary, Lu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Random+walk-based+graphical+sampling+in+unbalanced+heterogeneous+bipartite+social+graphs)|0| -|[Modeling information diffusion over social networks for temporal dynamic prediction](https://doi.org/10.1145/2505515.2507823)|Dong Li, Zhiming Xu, Yishu Luo, Sheng Li, Anika Gupta, Katia P. Sycara, Shengmei Luo, Lei Hu, Hong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+information+diffusion+over+social+networks+for+temporal+dynamic+prediction)|0| -|[Predicting retweet count using visual cues](https://doi.org/10.1145/2505515.2507824)|Ethem F. Can, Hüseyin Oktay, R. Manmatha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+retweet+count+using+visual+cues)|0| |[Identifying multilingual Wikipedia articles based on cross language similarity and activity](https://doi.org/10.1145/2505515.2507825)|KhoiNguyen Tran, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+multilingual+Wikipedia+articles+based+on+cross+language+similarity+and+activity)|0| -|[An efficient algorithm for approximate betweenness centrality computation](https://doi.org/10.1145/2505515.2507826)|Mostafa Haghir Chehreghani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+algorithm+for+approximate+betweenness+centrality+computation)|0| -|[Exploiting collaborative filtering techniques for automatic assessment of student free-text responses](https://doi.org/10.1145/2505515.2507827)|Tao Ge, Zhifang Sui, Baobao Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+collaborative+filtering+techniques+for+automatic+assessment+of+student+free-text+responses)|0| -|[Automated probabilistic modeling for relational data](https://doi.org/10.1145/2505515.2507828)|Sameer Singh, Thore Graepel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+probabilistic+modeling+for+relational+data)|0| |[Semantic discovery from web comparison queries](https://doi.org/10.1145/2505515.2507829)|Tingting Zhong, Wensheng Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+discovery+from+web+comparison+queries)|0| -|[Joint learning on sentiment and emotion classification](https://doi.org/10.1145/2505515.2507830)|Wei Gao, Shoushan Li, Sophia Yat Mei Lee, Guodong Zhou, ChuRen Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+learning+on+sentiment+and+emotion+classification)|0| -|[A unified graph model for personalized query-oriented reference paper recommendation](https://doi.org/10.1145/2505515.2507831)|Fanqi Meng, Dehong Gao, Wenjie Li, Xu Sun, Yuexian Hou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+unified+graph+model+for+personalized+query-oriented+reference+paper+recommendation)|0| -|[Probabilistic latent class models for predicting student performance](https://doi.org/10.1145/2505515.2507832)|Suleyman Cetintas, Luo Si, Yan Ping Xin, Ron Tzur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+latent+class+models+for+predicting+student+performance)|0| -|[Timeline adaptation for text classification](https://doi.org/10.1145/2505515.2507833)|Fumiyo Fukumoto, Yoshimi Suzuki, Atsuhiro Takasu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Timeline+adaptation+for+text+classification)|0| -|[Recommendation via user's personality and social contextual](https://doi.org/10.1145/2505515.2507834)|He Feng, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendation+via+user's+personality+and+social+contextual)|0| |[A fast convergence clustering algorithm merging MCMC and EM methods](https://doi.org/10.1145/2505515.2507835)|David Sergio Matusevich, Carlos Ordonez, Veerabhadran Baladandayuthapani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+fast+convergence+clustering+algorithm+merging+MCMC+and+EM+methods)|0| -|[Discrimination aware classification for imbalanced datasets](https://doi.org/10.1145/2505515.2507836)|Goce Ristanoski, Wei Liu, James Bailey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discrimination+aware+classification+for+imbalanced+datasets)|0| -|[Incremental shared nearest neighbor density-based clustering](https://doi.org/10.1145/2505515.2507837)|Sumeet Singh, Amit Awekar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+shared+nearest+neighbor+density-based+clustering)|0| -|[The essence of knowledge (bases) through entity rankings](https://doi.org/10.1145/2505515.2507838)|Evica Ilieva, Sebastian Michel, Aleksandar Stupar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+essence+of+knowledge+(bases)+through+entity+rankings)|0| |[Chinese syntactic parsing based on linguistic entity-relationship model](https://doi.org/10.1145/2505515.2507839)|Dechun Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Chinese+syntactic+parsing+based+on+linguistic+entity-relationship+model)|0| -|[Clustering-based anomaly detection in multi-view data](https://doi.org/10.1145/2505515.2507840)|Alejandro Marcos Alvarez, Makoto Yamada, Akisato Kimura, Tomoharu Iwata||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+anomaly+detection+in+multi-view+data)|0| -|[Discovering relations using matrix factorization methods](https://doi.org/10.1145/2505515.2507841)|Ervina Çergani, Pauli Miettinen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+relations+using+matrix+factorization+methods)|0| -|[On exploiting content and citations together to compute similarity of scientific papers](https://doi.org/10.1145/2505515.2507842)|Masoud Reyhani Hamedani, SangWook Kim, SangChul Lee, DongJin Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+exploiting+content+and+citations+together+to+compute+similarity+of+scientific+papers)|0| -|[Taxonomy-based regression model for cross-domain sentiment classification](https://doi.org/10.1145/2505515.2507843)|CongKai Lin, YangYin Lee, ChiHsin Yu, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Taxonomy-based+regression+model+for+cross-domain+sentiment+classification)|0| |[Reconciliation of categorical opinions from multiple sources](https://doi.org/10.1145/2505515.2507844)|Adway Mitra, Srujana Merugu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reconciliation+of+categorical+opinions+from+multiple+sources)|0| -|[An unsupervised transfer learning approach to discover topics for online reputation management](https://doi.org/10.1145/2505515.2507845)|Tamara MartínWanton, Julio Gonzalo, Enrique Amigó||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+unsupervised+transfer+learning+approach+to+discover+topics+for+online+reputation+management)|0| -|[Discovering facts with boolean tensor tucker decomposition](https://doi.org/10.1145/2505515.2507846)|Dóra Erdös, Pauli Miettinen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+facts+with+boolean+tensor+tucker+decomposition)|0| -|[Intelligent SSD: a turbo for big data mining](https://doi.org/10.1145/2505515.2507847)|DuckHo Bae, JinHyung Kim, SangWook Kim, Hyunok Oh, Chanik Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intelligent+SSD:+a+turbo+for+big+data+mining)|0| -|[Software plagiarism detection: a graph-based approach](https://doi.org/10.1145/2505515.2507848)|DongKyu Chae, Jiwoon Ha, SangWook Kim, Boojoong Kang, Eul Gyu Im||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Software+plagiarism+detection:+a+graph-based+approach)|0| -|[Objectionable content filtering by click-through data](https://doi.org/10.1145/2505515.2507849)|LungHao Lee, YenCheng Juan, HsinHsi Chen, YuenHsien Tseng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Objectionable+content+filtering+by+click-through+data)|0| -|[Computational advertising: the linkedin way](https://doi.org/10.1145/2505515.2514690)|Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computational+advertising:+the+linkedin+way)|0| -|[Automatic ad format selection via contextual bandits](https://doi.org/10.1145/2505515.2514700)|Liang Tang, Rómer Rosales, Ajit Singh, Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+ad+format+selection+via+contextual+bandits)|0| -|[Graph similarity search with edit distance constraint in large graph databases](https://doi.org/10.1145/2505515.2505723)|Weiguo Zheng, Lei Zou, Xiang Lian, Dong Wang, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+similarity+search+with+edit+distance+constraint+in+large+graph+databases)|0| -|[Fast and scalable reachability queries on graphs by pruned labeling with landmarks and paths](https://doi.org/10.1145/2505515.2505724)|Yosuke Yano, Takuya Akiba, Yoichi Iwata, Yuichi Yoshida||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+scalable+reachability+queries+on+graphs+by+pruned+labeling+with+landmarks+and+paths)|0| -|[Graph hashing and factorization for fast graph stream classification](https://doi.org/10.1145/2505515.2505730)|Ting Guo, Lianhua Chi, Xingquan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+hashing+and+factorization+for+fast+graph+stream+classification)|0| -|[Efficiently anonymizing social networks with reachability preservation](https://doi.org/10.1145/2505515.2505731)|Xiangyu Liu, Bin Wang, Xiaochun Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficiently+anonymizing+social+networks+with+reachability+preservation)|0| -|[ImG-complex: graph data model for topology of unstructured meshes](https://doi.org/10.1145/2505515.2505733)|Alireza Rezaei Mahdiraji, Peter Baumann, Guntram Berti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ImG-complex:+graph+data+model+for+topology+of+unstructured+meshes)|0| -|[ROU: advanced keyword search on graph](https://doi.org/10.1145/2505515.2505743)|Yifan Pan, Yuqing Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ROU:+advanced+keyword+search+on+graph)|0| -|[Hotness-aware buffer management for flash-based hybrid storage systems](https://doi.org/10.1145/2505515.2505729)|Yanfei Lv, Bin Cui, Xuexuan Chen, Jing Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hotness-aware+buffer+management+for+flash-based+hybrid+storage+systems)|0| -|[Expedited rating of data stores using agile data loading techniques](https://doi.org/10.1145/2505515.2505744)|Sumita Barahmand, Shahram Ghandeharizadeh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Expedited+rating+of+data+stores+using+agile+data+loading+techniques)|0| -|[Social recommendation incorporating topic mining and social trust analysis](https://doi.org/10.1145/2505515.2505592)|Tong Zhao, Chunping Li, Mengya Li, Qiang Ding, Li Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+recommendation+incorporating+topic+mining+and+social+trust+analysis)|0| -|[Originator or propagator?: incorporating social role theory into topic models for twitter content analysis](https://doi.org/10.1145/2505515.2505599)|Wayne Xin Zhao, Jinpeng Wang, Yulan He, JianYun Nie, Xiaoming Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Originator+or+propagator?:+incorporating+social+role+theory+into+topic+models+for+twitter+content+analysis)|0| -|[An effective latent networks fusion based model for event recommendation in offline ephemeral social networks](https://doi.org/10.1145/2505515.2505605)|Guoqiong Liao, Yuchen Zhao, Sihong Xie, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+effective+latent+networks+fusion+based+model+for+event+recommendation+in+offline+ephemeral+social+networks)|0| -|[Predicting trends in social networks via dynamic activeness model](https://doi.org/10.1145/2505515.2505607)|Shuyang Lin, Xiangnan Kong, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+trends+in+social+networks+via+dynamic+activeness+model)|0| -|[Dyadic event attribution in social networks with mixtures of hawkes processes](https://doi.org/10.1145/2505515.2505609)|Liangda Li, Hongyuan Zha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dyadic+event+attribution+in+social+networks+with+mixtures+of+hawkes+processes)|0| -|[Modeling temporal effects of human mobile behavior on location-based social networks](https://doi.org/10.1145/2505515.2505616)|Huiji Gao, Jiliang Tang, Xia Hu, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+temporal+effects+of+human+mobile+behavior+on+location-based+social+networks)|0| -|[Social media news communities: gatekeeping, coverage, and statement bias](https://doi.org/10.1145/2505515.2505623)|Diego SáezTrumper, Carlos Castillo, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+media+news+communities:+gatekeeping,+coverage,+and+statement+bias)|0| -|[Seeking provenance of information using social media](https://doi.org/10.1145/2505515.2505633)|Pritam Gundecha, Zhuo Feng, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Seeking+provenance+of+information+using+social+media)|0| -|[Discovering health-related knowledge in social media using ensembles of heterogeneous features](https://doi.org/10.1145/2505515.2505629)|Suppawong Tuarob, Conrad S. Tucker, Marcel Salathé, Nilam Ram||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+health-related+knowledge+in+social+media+using+ensembles+of+heterogeneous+features)|0| -|[Compact explanatory opinion summarization](https://doi.org/10.1145/2505515.2505596)|Hyun Duk Kim, Malú Castellanos, Meichun Hsu, ChengXiang Zhai, Umeshwar Dayal, Riddhiman Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+explanatory+opinion+summarization)|0| -|[Towards an enhanced and adaptable ontology by distilling and assembling online encyclopedias](https://doi.org/10.1145/2505515.2505597)|Shan Jiang, Lidong Bing, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+an+enhanced+and+adaptable+ontology+by+distilling+and+assembling+online+encyclopedias)|0| |[Assessing sparse information extraction using semantic contexts](https://doi.org/10.1145/2505515.2505598)|PeiPei Li, Haixun Wang, Hongsong Li, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Assessing+sparse+information+extraction+using+semantic+contexts)|0| -|[Studying from electronic textbooks](https://doi.org/10.1145/2505515.2505604)|Rakesh Agrawal, Sreenivas Gollapudi, Anitha Kannan, Krishnaram Kenthapadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Studying+from+electronic+textbooks)|0| -|[Generating informative snippet to maximize item visibility](https://doi.org/10.1145/2505515.2505606)|Mahashweta Das, Habibur Rahman, Gautam Das, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+informative+snippet+to+maximize+item+visibility)|0| -|[Assessing quality score of Wikipedia article using mutual evaluation of editors and texts](https://doi.org/10.1145/2505515.2505610)|Yu Suzuki, Masatoshi Yoshikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Assessing+quality+score+of+Wikipedia+article+using+mutual+evaluation+of+editors+and+texts)|0| -|[Concept-based analysis of scientific literature](https://doi.org/10.1145/2505515.2505613)|ChenTse Tsai, Gourab Kundu, Dan Roth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-based+analysis+of+scientific+literature)|0| -|[On sampling the wisdom of crowds: random vs. expert sampling of the twitter stream](https://doi.org/10.1145/2505515.2505615)|Saptarshi Ghosh, Muhammad Bilal Zafar, Parantapa Bhattacharya, Naveen Kumar Sharma, Niloy Ganguly, P. Krishna Gummadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+sampling+the+wisdom+of+crowds:+random+vs.+expert+sampling+of+the+twitter+stream)|0| -|[Can back-of-the-book indexes be automatically created?](https://doi.org/10.1145/2505515.2505627)|Zhaohui Wu, Zhenhui Li, Prasenjit Mitra, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Can+back-of-the-book+indexes+be+automatically+created?)|0| -|[Directing exploratory search with interactive intent modeling](https://doi.org/10.1145/2505515.2505644)|Tuukka Ruotsalo, Jaakko Peltonen, Manuel J. A. Eugster, Dorota Glowacka, Ksenia Konyushkova, Kumaripaba Athukorala, Ilkka Kosunen, Aki Reijonen, Petri Myllymäki, Giulio Jacucci, Samuel Kaski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Directing+exploratory+search+with+interactive+intent+modeling)|0| -|[FRec: a novel framework of recommending users and communities in social media](https://doi.org/10.1145/2505515.2505645)|Lei Li, Wei Peng, Saurabh Kataria, Tong Sun, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FRec:+a+novel+framework+of+recommending+users+and+communities+in+social+media)|0| |[Permutation indexing: fast approximate retrieval from large corpora](https://doi.org/10.1145/2505515.2505646)|Maxim Gurevich, Tamás Sarlós||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Permutation+indexing:+fast+approximate+retrieval+from+large+corpora)|0| -|[Clustering-based transduction for learning a ranking model with limited human labels](https://doi.org/10.1145/2505515.2505647)|Xin Zhang, Ben He, Tiejian Luo, Dongxing Li, Jungang Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+transduction+for+learning+a+ranking+model+with+limited+human+labels)|0| -|[Exploiting ranking factorization machines for microblog retrieval](https://doi.org/10.1145/2505515.2505648)|Runwei Qiang, Feng Liang, Jianwu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+ranking+factorization+machines+for+microblog+retrieval)|0| -|[Learning compact hashing codes for efficient tag completion and prediction](https://doi.org/10.1145/2505515.2505649)|Qifan Wang, Lingyun Ruan, Zhiwei Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+compact+hashing+codes+for+efficient+tag+completion+and+prediction)|0| -|[How do users grow up along with search engines?: a study of long-term users' behavior](https://doi.org/10.1145/2505515.2505650)|Jian Liu, Yiqun Liu, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+do+users+grow+up+along+with+search+engines?:+a+study+of+long-term+users'+behavior)|0| -|[LR-PPR: locality-sensitive, re-use promoting, approximate personalized pagerank computation](https://doi.org/10.1145/2505515.2505651)|Jung Hyun Kim, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LR-PPR:+locality-sensitive,+re-use+promoting,+approximate+personalized+pagerank+computation)|0| -|[Multimedia summarization for trending topics in microblogs](https://doi.org/10.1145/2505515.2505652)|Jingwen Bian, Yang Yang, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multimedia+summarization+for+trending+topics+in+microblogs)|0| -|[Exploiting query term correlation for list caching in web search engines](https://doi.org/10.1145/2505515.2507870)|Jiancong Tong, Gang Wang, Douglas S. Stones, Shizhao Sun, Xiaoguang Liu, Fan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+query+term+correlation+for+list+caching+in+web+search+engines)|0| -|[Semi-supervised discriminative preference elicitation for cold-start recommendation](https://doi.org/10.1145/2505515.2507869)|Xi Zhang, Jian Cheng, Ting Yuan, Biao Niu, Hanqing Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-supervised+discriminative+preference+elicitation+for+cold-start+recommendation)|0| -|[Speller performance prediction for query autocorrection](https://doi.org/10.1145/2505515.2507871)|Alexey Baytin, Irina Galinskaya, Marina Panina, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Speller+performance+prediction+for+query+autocorrection)|0| -|[Predicting the impact of expansion terms using semantic and user interaction features](https://doi.org/10.1145/2505515.2507872)|Anton Bakhtin, Yury Ustinovsky, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+impact+of+expansion+terms+using+semantic+and+user+interaction+features)|0| -|[QBEES: query by entity examples](https://doi.org/10.1145/2505515.2507873)|Steffen Metzger, Ralf Schenkel, Marcin Sydow||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QBEES:+query+by+entity+examples)|0| -|[A belief propagation approach for detecting shilling attacks in collaborative filtering](https://doi.org/10.1145/2505515.2507875)|Jun Zou, Faramarz Fekri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+belief+propagation+approach+for+detecting+shilling+attacks+in+collaborative+filtering)|0| -|[Automated snippet generation for online advertising](https://doi.org/10.1145/2505515.2507876)|Stamatina Thomaidou, Ismini Lourentzou, Panagiotis KatsivelisPerakis, Michalis Vazirgiannis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+snippet+generation+for+online+advertising)|0| -|[Learning to selectively rank patients' medical history](https://doi.org/10.1145/2505515.2507874)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+selectively+rank+patients'+medical+history)|0| -|[Detecting controversy on the web](https://doi.org/10.1145/2505515.2507877)|Shiri DoriHacohen, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+controversy+on+the+web)|0| -|[Mining user interest from search tasks and annotations](https://doi.org/10.1145/2505515.2507878)|Sampath Jayarathna, Atish Patra, Frank Shipman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+user+interest+from+search+tasks+and+annotations)|0| -|[Generating comparative summaries from reviews](https://doi.org/10.1145/2505515.2507879)|Ruben Sipos, Thorsten Joachims||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+comparative+summaries+from+reviews)|0| -|[Zero-shot video retrieval using content and concepts](https://doi.org/10.1145/2505515.2507880)|Jeffrey Dalton, James Allan, Pranav Mirajkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Zero-shot+video+retrieval+using+content+and+concepts)|0| -|[Diversified query expansion using conceptnet](https://doi.org/10.1145/2505515.2507881)|Arbi Bouchoucha, Jing He, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Diversified+query+expansion+using+conceptnet)|0| -|[An empirical study of top-n recommendation for venture finance](https://doi.org/10.1145/2505515.2507882)|Thomas Stone, Weinan Zhang, Xiaoxue Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+empirical+study+of+top-n+recommendation+for+venture+finance)|0| -|[Interest mining from user tweets](https://doi.org/10.1145/2505515.2507883)|Thuy Vu, Victor Perez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest+mining+from+user+tweets)|0| -|[Combining prestige and relevance ranking for personalized recommendation](https://doi.org/10.1145/2505515.2507885)|Xiao Yang, Zhaoxin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+prestige+and+relevance+ranking+for+personalized+recommendation)|0| -|[Strategies for setting time-to-live values in result caches](https://doi.org/10.1145/2505515.2507886)|Fethi Burak Sazoglu, Berkant Barla Cambazoglu, Rifat Ozcan, Ismail Sengör Altingövde, Özgür Ulusoy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Strategies+for+setting+time-to-live+values+in+result+caches)|0| -|[An analysis of crowd workers mistakes for specific and complex relevance assessment task](https://doi.org/10.1145/2505515.2507884)|Jesse Anderton, Maryam Bashir, Virgil Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+analysis+of+crowd+workers+mistakes+for+specific+and+complex+relevance+assessment+task)|0| |[Learning to detect task boundaries of query session](https://doi.org/10.1145/2505515.2507887)|Zhenzhong Zhang, Le Sun, Xianpei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+detect+task+boundaries+of+query+session)|0| -|[Early prediction on imbalanced multivariate time series](https://doi.org/10.1145/2505515.2507888)|Guoliang He, Yong Duan, Tieyun Qian, Xu Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Early+prediction+on+imbalanced+multivariate+time+series)|0| -|[Exploiting trustors as well as trustees in trust-based recommendation](https://doi.org/10.1145/2505515.2507889)|WonSeok Hwang, Shaoyu Li, SangWook Kim, Ho Jin Choi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+trustors+as+well+as+trustees+in+trust-based+recommendation)|0| -|[Through-the-looking glass: utilizing rich post-search trail statistics for web search](https://doi.org/10.1145/2505515.2507890)|Alexey Tolstikov, Mikhail Shakhray, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Through-the-looking+glass:+utilizing+rich+post-search+trail+statistics+for+web+search)|0| -|[Topical authority propagation on microblogs](https://doi.org/10.1145/2505515.2507891)|Juan Hu, Yi Fang, Archana Godavarthy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topical+authority+propagation+on+microblogs)|0| -|[The importance of being socially-savvy: quantifying the influence of social networks on microblog retrieval](https://doi.org/10.1145/2505515.2507892)|Alexander Kotov, Eugene Agichtein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+importance+of+being+socially-savvy:+quantifying+the+influence+of+social+networks+on+microblog+retrieval)|0| -|[Flexible and dynamic compromises for effective recommendations](https://doi.org/10.1145/2505515.2507893)|Saurabh Gupta, Sutanu Chakraborti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+dynamic+compromises+for+effective+recommendations)|0| |[The online revolution: education for everyone](https://doi.org/10.1145/2505515.2514698)|Andrew Y. Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+online+revolution:+education+for+everyone)|0| -|[Online learning from streaming data](https://doi.org/10.1145/2505515.2514695)|Jeff Hawkins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+learning+from+streaming+data)|0| -|[From big data to big knowledge](https://doi.org/10.1145/2505515.2514697)|Kevin Murphy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+big+data+to+big+knowledge)|0| -|["All roads lead to Rome": optimistic recovery for distributed iterative data processing](https://doi.org/10.1145/2505515.2505753)|Sebastian Schelter, Stephan Ewen, Kostas Tzoumas, Volker Markl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="All+roads+lead+to+Rome":+optimistic+recovery+for+distributed+iterative+data+processing)|0| -|[Optimizing plurality for human intelligence tasks](https://doi.org/10.1145/2505515.2505755)|Luyi Mo, Reynold Cheng, Ben Kao, Xuan S. Yang, Chenghui Ren, Siyu Lei, David W. Cheung, Eric Lo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+plurality+for+human+intelligence+tasks)|0| -|[Entropy-based histograms for selectivity estimation](https://doi.org/10.1145/2505515.2505756)|Hien To, Kuorong Chiang, Cyrus Shahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entropy-based+histograms+for+selectivity+estimation)|0| -|[Efficient two-party private blocking based on sorted nearest neighborhood clustering](https://doi.org/10.1145/2505515.2505757)|Dinusha Vatsalan, Peter Christen, Vassilios S. Verykios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+two-party+private+blocking+based+on+sorted+nearest+neighborhood+clustering)|0| -|[Context-aware top-K processing using views](https://doi.org/10.1145/2505515.2505759)|Silviu Maniu, Bogdan Cautis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Context-aware+top-K+processing+using+views)|0| -|[Locality sensitive hashing revisited: filling the gap between theory and algorithm analysis](https://doi.org/10.1145/2505515.2505765)|Hongya Wang, Jiao Cao, LihChyun Shu, Davood Rafiei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Locality+sensitive+hashing+revisited:+filling+the+gap+between+theory+and+algorithm+analysis)|0| -|[Personalization of web-search using short-term browsing context](https://doi.org/10.1145/2505515.2505679)|Yury Ustinovsky, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalization+of+web-search+using+short-term+browsing+context)|0| -|[Factors affecting aggregated search coherence and search behavior](https://doi.org/10.1145/2505515.2505693)|Jaime Arguello, Robert Capra, WanChing Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Factors+affecting+aggregated+search+coherence+and+search+behavior)|0| -|[Improving passage ranking with user behavior information](https://doi.org/10.1145/2505515.2505719)|Weize Kong, Elif Aktolga, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+passage+ranking+with+user+behavior+information)|0| -|[Personalized models of search satisfaction](https://doi.org/10.1145/2505515.2505681)|Ahmed Hassan Awadallah, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+models+of+search+satisfaction)|0| -|[Beyond clicks: query reformulation as a predictor of search satisfaction](https://doi.org/10.1145/2505515.2505682)|Ahmed Hassan Awadallah, Xiaolin Shi, Nick Craswell, Bill Ramsey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+clicks:+query+reformulation+as+a+predictor+of+search+satisfaction)|0| -|[Unsupervised identification of synonymous query intent templates for attribute intents](https://doi.org/10.1145/2505515.2505694)|Yanen Li, BoJune Paul Hsu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+identification+of+synonymous+query+intent+templates+for+attribute+intents)|0| +|[Flexible and dynamic compromises for effective recommendations](https://doi.org/10.1145/2505515.2507893)|Saurabh Gupta, Sutanu Chakraborti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Flexible+and+dynamic+compromises+for+effective+recommendations)|0| |[Information extraction as a filtering task](https://doi.org/10.1145/2505515.2505557)|Henning Wachsmuth, Benno Stein, Gregor Engels||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+extraction+as+a+filtering+task)|0| -|[Toward advice mining: conditional random fields for extracting advice-revealing text units](https://doi.org/10.1145/2505515.2505520)|Alfan Farizki Wicaksono, SungHyon Myaeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+advice+mining:+conditional+random+fields+for+extracting+advice-revealing+text+units)|0| -|[Web news extraction via path ratios](https://doi.org/10.1145/2505515.2505558)|GongQing Wu, Li Li, Xuegang Hu, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web+news+extraction+via+path+ratios)|0| -|[Lead-lag analysis via sparse co-projection in correlated text streams](https://doi.org/10.1145/2505515.2505554)|Fangzhao Wu, Yangqiu Song, Shixia Liu, Yongfeng Huang, Zhenyu Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lead-lag+analysis+via+sparse+co-projection+in+correlated+text+streams)|0| -|[Adaptive co-training SVM for sentiment classification on tweets](https://doi.org/10.1145/2505515.2505569)|Shenghua Liu, Fuxin Li, Fangtao Li, Xueqi Cheng, Huawei Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+co-training+SVM+for+sentiment+classification+on+tweets)|0| -|[Overlapping community detection using seed set expansion](https://doi.org/10.1145/2505515.2505535)|Joyce Jiyoung Whang, David F. Gleich, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Overlapping+community+detection+using+seed+set+expansion)|0| |[On handling textual errors in latent document modeling](https://doi.org/10.1145/2505515.2505555)|Tao Yang, Dongwon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+handling+textual+errors+in+latent+document+modeling)|0| -|[TODMIS: mining communities from trajectories](https://doi.org/10.1145/2505515.2505552)|Siyuan Liu, Shuhui Wang, Kasthuri Jayarajah, Archan Misra, Ramayya Krishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TODMIS:+mining+communities+from+trajectories)|0| -|[Archiving the relaxed consistency web](https://doi.org/10.1145/2505515.2505551)|Zhiwu Xie, Herbert Van de Sompel, Jinyang Liu, Johann van Reenen, Ramiro Jordan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Archiving+the+relaxed+consistency+web)|0| -|[Programming with personalized pagerank: a locally groundable first-order probabilistic logic](https://doi.org/10.1145/2505515.2505573)|William Yang Wang, Kathryn Mazaitis, William W. Cohen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Programming+with+personalized+pagerank:+a+locally+groundable+first-order+probabilistic+logic)|0| -|[Nonparametric bayesian multitask collaborative filtering](https://doi.org/10.1145/2505515.2505517)|Sotirios Chatzis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nonparametric+bayesian+multitask+collaborative+filtering)|0| -|[Towards faster and better retrieval models for question search](https://doi.org/10.1145/2505515.2505550)|Guangyou Zhou, Yubo Chen, Daojian Zeng, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+faster+and+better+retrieval+models+for+question+search)|0| -|[Local-to-global semi-supervised feature selection](https://doi.org/10.1145/2505515.2505542)|Mohammed Hindawi, Khalid Benabdeslem||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local-to-global+semi-supervised+feature+selection)|0| -|[Intelligently querying incomplete instances for improving classification performance](https://doi.org/10.1145/2505515.2505570)|Karthik Sankaranarayanan, Amit Dhurandhar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intelligently+querying+incomplete+instances+for+improving+classification+performance)|0| -|[A probabilistic mixture model for mining and analyzing product search log](https://doi.org/10.1145/2505515.2505578)|Huizhong Duan, ChengXiang Zhai, Jinxing Cheng, Abhishek Gattani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+probabilistic+mixture+model+for+mining+and+analyzing+product+search+log)|0| -|[Eigenvalues perturbation of integral operator for kernel selection](https://doi.org/10.1145/2505515.2505584)|Yong Liu, Shali Jiang, Shizhong Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Eigenvalues+perturbation+of+integral+operator+for+kernel+selection)|0| -|[Beyond data: from user information to business value through personalized recommendations and consumer science](https://doi.org/10.1145/2505515.2514701)|Xavier Amatriain||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+data:+from+user+information+to+business+value+through+personalized+recommendations+and+consumer+science)|0| |[Leveraging data to change industry paradigms](https://doi.org/10.1145/2505515.2514694)|Chris Farmer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+data+to+change+industry+paradigms)|0| -|[Beyond data: from user information to business value through personalized recommendations and consumer science](https://doi.org/10.1145/2505515.2514691)|Xavier Amatriain||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+data:+from+user+information+to+business+value+through+personalized+recommendations+and+consumer+science)|0| -|[Large-scale deep learning at Baidu](https://doi.org/10.1145/2505515.2514699)|Kai Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+deep+learning+at+Baidu)|0| -|[Wondering why data are missing from query results?: ask conseil why-not](https://doi.org/10.1145/2505515.2505725)|Melanie Herschel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Wondering+why+data+are+missing+from+query+results?:+ask+conseil+why-not)|0| -|[Fast evaluation of iceberg pattern-based aggregate queries](https://doi.org/10.1145/2505515.2505726)|Zhian He, Petrie Wong, Ben Kao, Eric Lo, Reynold Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+evaluation+of+iceberg+pattern-based+aggregate+queries)|0| -|[Top-down keyword query processing on XML data](https://doi.org/10.1145/2505515.2505727)|Junfeng Zhou, Xingmin Zhao, Wei Wang, Ziyang Chen, Jeffrey Xu Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-down+keyword+query+processing+on+XML+data)|0| -|[Efficient pruning algorithm for top-K ranking on dataset with value uncertainty](https://doi.org/10.1145/2505515.2505735)|Jianwen Chen, Ling Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+pruning+algorithm+for+top-K+ranking+on+dataset+with+value+uncertainty)|0| |[Query execution timing: taming real-time anytime queries on multicore processors](https://doi.org/10.1145/2505515.2505736)|Chunyao Song, Zheng Li, Tingjian Ge, Jie Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+execution+timing:+taming+real-time+anytime+queries+on+multicore+processors)|0| -|[Merged aggregate nearest neighbor query processing in road networks](https://doi.org/10.1145/2505515.2505738)|Weiwei Sun, Chong Chen, Baihua Zheng, Chunan Chen, Liang Zhu, Weimo Liu, Yan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Merged+aggregate+nearest+neighbor+query+processing+in+road+networks)|0| -|[SkyView: a user evaluation of the skyline operator](https://doi.org/10.1145/2505515.2505739)|Matteo Magnani, Ira Assent, Kasper Hornbæk, Mikkel R. Jakobsen, Ken Friis Larsen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SkyView:+a+user+evaluation+of+the+skyline+operator)|0| -|[UMicS: from anonymized data to usable microdata](https://doi.org/10.1145/2505515.2505737)|Graham Cormode, Entong Shen, Xi Gong, Ting Yu, Cecilia M. Procopiuc, Divesh Srivastava||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UMicS:+from+anonymized+data+to+usable+microdata)|0| -|[GAPfm: optimal top-n recommendations for graded relevance domains](https://doi.org/10.1145/2505515.2505653)|Yue Shi, Alexandros Karatzoglou, Linas Baltrunas, Martha A. Larson, Alan Hanjalic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GAPfm:+optimal+top-n+recommendations+for+graded+relevance+domains)|0| -|[Estimating document focus time](https://doi.org/10.1145/2505515.2505655)|Adam Jatowt, Chingman Au Yeung, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+document+focus+time)|0| -|[URL tree: efficient unsupervised content extraction from streams of web documents](https://doi.org/10.1145/2505515.2505654)|Borut Sluban, Miha Grcar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=URL+tree:+efficient+unsupervised+content+extraction+from+streams+of+web+documents)|0| |[Faceted models of blog feeds](https://doi.org/10.1145/2505515.2505657)|Lifeng Jia, Clement T. Yu, Weiyi Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Faceted+models+of+blog+feeds)|0| -|[SRbench-a benchmark for soundtrack recommendation systems](https://doi.org/10.1145/2505515.2505658)|Aleksandar Stupar, Sebastian Michel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SRbench-a+benchmark+for+soundtrack+recommendation+systems)|0| -|[CV-PCR: a context-guided value-driven framework for patent citation recommendation](https://doi.org/10.1145/2505515.2505659)|Sooyoung Oh, Zhen Lei, WangChien Lee, Prasenjit Mitra, John Yen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CV-PCR:+a+context-guided+value-driven+framework+for+patent+citation+recommendation)|0| -|[Intent models for contextualising and diversifying query suggestions](https://doi.org/10.1145/2505515.2505661)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intent+models+for+contextualising+and+diversifying+query+suggestions)|0| -|[Modeling behavioral factors ininteractive information retrieval](https://doi.org/10.1145/2505515.2505660)|Feza Baskaya, Heikki Keskustalo, Kalervo Järvelin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+behavioral+factors+ininteractive+information+retrieval)|0| -|[Building user profiles from topic models for personalised search](https://doi.org/10.1145/2505515.2505642)|Morgan Harvey, Fabio Crestani, Mark James Carman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+user+profiles+from+topic+models+for+personalised+search)|0| -|[Transferring knowledge with source selection to learn IR functions on unlabeled collections](https://doi.org/10.1145/2505515.2505662)|Parantapa Goswami, MassihReza Amini, Éric Gaussier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transferring+knowledge+with+source+selection+to+learn+IR+functions+on+unlabeled+collections)|0| -|[Understanding how people interact with web search results that change in real-time using implicit feedback](https://doi.org/10.1145/2505515.2505663)|Jin Young Kim, Mark Cramer, Jaime Teevan, Dmitry Lagun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+how+people+interact+with+web+search+results+that+change+in+real-time+using+implicit+feedback)|0| -|[Facet selection algorithms for web product search](https://doi.org/10.1145/2505515.2505664)|Damir Vandic, Flavius Frasincar, Uzay Kaymak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Facet+selection+algorithms+for+web+product+search)|0| -|[Learning deep structured semantic models for web search using clickthrough data](https://doi.org/10.1145/2505515.2505665)|PoSen Huang, Xiaodong He, Jianfeng Gao, Li Deng, Alex Acero, Larry P. Heck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+deep+structured+semantic+models+for+web+search+using+clickthrough+data)|0| -|[Learning open-domain comparable entity graphs from user search queries](https://doi.org/10.1145/2505515.2505666)|Ziheng Jiang, Lei Ji, Jianwen Zhang, Jun Yan, Ping Guo, Ning Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+open-domain+comparable+entity+graphs+from+user+search+queries)|0| -|[RAProp: ranking tweets by exploiting the tweet/user/web ecosystem and inter-tweet agreement](https://doi.org/10.1145/2505515.2505667)|Srijith Ravikumar, Kartik Talamadupula, Raju Balakrishnan, Subbarao Kambhampati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RAProp:+ranking+tweets+by+exploiting+the+tweet/user/web+ecosystem+and+inter-tweet+agreement)|0| -|[Incorporating the surfing behavior of web users into pagerank](https://doi.org/10.1145/2505515.2505668)|Shatlyk Ashyralyyev, Berkant Barla Cambazoglu, Cevdet Aykanat||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+the+surfing+behavior+of+web+users+into+pagerank)|0| -|[Learning to rank for question routing in community question answering](https://doi.org/10.1145/2505515.2505670)|Zongcheng Ji, Bin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+rank+for+question+routing+in+community+question+answering)|0| -|[Question routing to user communities](https://doi.org/10.1145/2505515.2505669)|Aditya Pal, Fei Wang, Michelle X. Zhou, Jeffrey Nichols, Barton A. Smith||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question+routing+to+user+communities)|0| -|[Re-ranking for joint named-entity recognition and linking](https://doi.org/10.1145/2505515.2505601)|Avirup Sil, Alexander Yates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Re-ranking+for+joint+named-entity+recognition+and+linking)|0| -|[Identifying salient entities in web pages](https://doi.org/10.1145/2505515.2505602)|Michael Gamon, Tae Yano, Xinying Song, Johnson Apacible, Patrick Pantel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+salient+entities+in+web+pages)|0| -|[Recommending tags with a model of human categorization](https://doi.org/10.1145/2505515.2505625)|Paul Seitlinger, Dominik Kowald, Christoph Trattner, Tobias Ley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+tags+with+a+model+of+human+categorization)|0| -|[Automatically generating descriptions for resources by tag modeling](https://doi.org/10.1145/2505515.2505632)|Bin Bi, Junghoo Cho||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatically+generating+descriptions+for+resources+by+tag+modeling)|0| -|[Efficient forecasting for hierarchical time series](https://doi.org/10.1145/2505515.2505622)|Lars Dannecker, Robert Lorenz, Philipp Rösch, Wolfgang Lehner, Gregor Hackenbroich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+forecasting+for+hierarchical+time+series)|0| -|[Mining characteristic multi-scale motifs in sensor-based time series](https://doi.org/10.1145/2505515.2505620)|Ugo Vespier, Siegfried Nijssen, Arno J. Knobbe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+characteristic+multi-scale+motifs+in+sensor-based+time+series)|0| -|[Extraction and integration of web data by end-users](https://doi.org/10.1145/2505515.2505635)|Sudhir Agarwal, Michael R. Genesereth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extraction+and+integration+of+web+data+by+end-users)|0| -|[pEDM: online-forecasting for smart energy analytics](https://doi.org/10.1145/2505515.2505588)|Lars Dannecker, Philipp Rösch, Ulrike Fischer, Gordon Gaumnitz, Wolfgang Lehner, Gregor Hackenbroich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=pEDM:+online-forecasting+for+smart+energy+analytics)|0| -|[An efficient probabilistic framework for multi-dimensional classification](https://doi.org/10.1145/2505515.2505594)|Iyad Batal, Charmgil Hong, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+efficient+probabilistic+framework+for+multi-dimensional+classification)|0| -|[Discovering and managing quantitative association rules](https://doi.org/10.1145/2505515.2505611)|Chunyao Song, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+and+managing+quantitative+association+rules)|0| -|[OMS-TL: a framework of online multiple source transfer learning](https://doi.org/10.1145/2505515.2505603)|Liang Ge, Jing Gao, Aidong Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OMS-TL:+a+framework+of+online+multiple+source+transfer+learning)|0| -|[Combining one-class classifiers via meta learning](https://doi.org/10.1145/2505515.2505619)|Eitan Menahem, Lior Rokach, Yuval Elovici||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+one-class+classifiers+via+meta+learning)|0| -|[Scalable bootstrapping for python](https://doi.org/10.1145/2505515.2505630)|Peter Birsinger, Richard Xia, Armando Fox||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+bootstrapping+for+python)|0| -|[Consumer-centric SLA manager for cloud-hosted databases](https://doi.org/10.1145/2505515.2508196)|Liang Zhao, Sherif Sakr, Anna Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Consumer-centric+SLA+manager+for+cloud-hosted+databases)|0| -|[TerraFly GeoCloud: online spatial data analysis system](https://doi.org/10.1145/2505515.2508206)|Yun Lu, Mingjin Zhang, Tao Li, Chang Liu, Erik Edrosa, Naphtali Rishe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TerraFly+GeoCloud:+online+spatial+data+analysis+system)|0| -|[FIRE: interactive visual support for parameter space-driven rule mining](https://doi.org/10.1145/2505515.2505631)|Abhishek Mukherji, Xika Lin, Jason Whitehouse, Christopher R. Botaish, Elke A. Rundensteiner, Matthew O. Ward||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FIRE:+interactive+visual+support+for+parameter+space-driven+rule+mining)|0| |[MetKB: enriching RDF knowledge bases with web entity-attribute tables](https://doi.org/10.1145/2505515.2508209)|Haoqiong Bian, Yueguo Chen, Xiaoyong Du, Xiaolu Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MetKB:+enriching+RDF+knowledge+bases+with+web+entity-attribute+tables)|0| -|[READFAST: high-relevance search-engine for big text](https://doi.org/10.1145/2505515.2508215)|Michael N. Gubanov, Anna Pyayt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=READFAST:+high-relevance+search-engine+for+big+text)|0| -|[FusionDB: conflict management system for small-science databases](https://doi.org/10.1145/2505515.2508205)|Karim Ibrahim, Nathaniel Selvo, Mohamad ElRifai, Mohamed Y. Eltabakh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FusionDB:+conflict+management+system+for+small-science+databases)|0| -|[DeExcelerator: a framework for extracting relational data from partially structured documents](https://doi.org/10.1145/2505515.2508210)|Julian Eberius, Christopher Werner, Maik Thiele, Katrin Braunschweig, Lars Dannecker, Wolfgang Lehner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeExcelerator:+a+framework+for+extracting+relational+data+from+partially+structured+documents)|0| -|[GeCo: an online personal data generator and corruptor](https://doi.org/10.1145/2505515.2508207)|KhoiNguyen Tran, Dinusha Vatsalan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GeCo:+an+online+personal+data+generator+and+corruptor)|0| |[Demonstrating intelligent crawling and archiving of web applications](https://doi.org/10.1145/2505515.2508197)|Muhammad Faheem, Pierre Senellart||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Demonstrating+intelligent+crawling+and+archiving+of+web+applications)|0| -|[iNewsBox: modeling and exploiting implicit feedback for building personalized news radio](https://doi.org/10.1145/2505515.2508199)|Yanan Xie, Liang Chen, Kunyang Jia, Lichuan Ji, Jian Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iNewsBox:+modeling+and+exploiting+implicit+feedback+for+building+personalized+news+radio)|0| -|[SportSense: using motion queries to find scenes in sports videos](https://doi.org/10.1145/2505515.2508211)|Ihab Al Kabary, Heiko Schuldt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SportSense:+using+motion+queries+to+find+scenes+in+sports+videos)|0| -|[PredictionIO: a distributed machine learning server for practical software development](https://doi.org/10.1145/2505515.2508198)|Simon Chan, Thomas Stone, Kit Pang Szeto, KaHou Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PredictionIO:+a+distributed+machine+learning+server+for+practical+software+development)|0| |[Exploring XML data is as easy as using maps](https://doi.org/10.1145/2505515.2508201)|Yong Zeng, Zhifeng Bao, Guoliang Li, Tok Wang Ling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+XML+data+is+as+easy+as+using+maps)|0| -|[Inside the world's playlist](https://doi.org/10.1145/2505515.2508216)|Wouter Weerkamp, Manos Tsagkias, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inside+the+world's+playlist)|0| -|[Detecting and exploring clusters in attributed graphs: a plugin for the gephi platform](https://doi.org/10.1145/2505515.2508200)|Brigitte Boden, Roman Haag, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+and+exploring+clusters+in+attributed+graphs:+a+plugin+for+the+gephi+platform)|0| -|[Cloud Armor: a platform for credibility-based trust management of cloud services](https://doi.org/10.1145/2505515.2508204)|Talal H. Noor, Quan Z. Sheng, Anne H. H. Ngu, Abdullah Alfazi, Jeriel Law||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cloud+Armor:+a+platform+for+credibility-based+trust+management+of+cloud+services)|0| -|[Human computing games for knowledge acquisition](https://doi.org/10.1145/2505515.2508213)|Sarath Kumar Kondreddi, Peter Triantafillou, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Human+computing+games+for+knowledge+acquisition)|0| -|[A tool for assisting provenance search in social media](https://doi.org/10.1145/2505515.2508214)|Suhas Ranganath, Pritam Gundecha, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+tool+for+assisting+provenance+search+in+social+media)|0| |[SPHINX: rich insights into evidence-hypotheses relationships via parameter space-based exploration](https://doi.org/10.1145/2505515.2508202)|Abhishek Mukherji, Jason Whitehouse, Christopher R. Botaish, Elke A. Rundensteiner, Matthew O. Ward||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SPHINX:+rich+insights+into+evidence-hypotheses+relationships+via+parameter+space-based+exploration)|0| |[Search excavator: the knowledge discovery tool](https://doi.org/10.1145/2505515.2508203)|Dmitri Danilov, Eero Vainikko||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+excavator:+the+knowledge+discovery+tool)|0| -|[WordSeer: a knowledge synthesis environment for textual data](https://doi.org/10.1145/2505515.2508212)|Aditi S. Muralidharan, Marti A. Hearst, Christopher Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WordSeer:+a+knowledge+synthesis+environment+for+textual+data)|0| -|[ESTHETE: a news browsing system to visualize the context and evolution of news stories](https://doi.org/10.1145/2505515.2508208)|Rahul Goyal, Ravee Malla, Amitabha Bagchi, Sameep Mehta, Maya Ramanath||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESTHETE:+a+news+browsing+system+to+visualize+the+context+and+evolution+of+news+stories)|0| -|[Channeling the deluge: research challenges for big data and information systems](https://doi.org/10.1145/2505515.2525541)|Paul Bennett, C. Lee Giles, Alon Y. Halevy, Jiawei Han, Marti A. Hearst, Jure Leskovec||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Channeling+the+deluge:+research+challenges+for+big+data+and+information+systems)|0| -|[AKBC 2013: third workshop on automated knowledge base construction](https://doi.org/10.1145/2505515.2505806)|Fabian M. Suchanek, Sebastian Riedel, Sameer Singh, Partha Pratim Talukdar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AKBC+2013:+third+workshop+on+automated+knowledge+base+construction)|0| |[DOLAP 2013 workshop summary](https://doi.org/10.1145/2505515.2505807)|Ladjel Bellatreche, Alfredo Cuzzocrea, IlYeol Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DOLAP+2013+workshop+summary)|0| |[2013 international workshop on computational scientometrics: theory and applications](https://doi.org/10.1145/2505515.2505809)|Cornelia Caragea, C. Lee Giles, Lior Rokach, Xiaozhong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=2013+international+workshop+on+computational+scientometrics:+theory+and+applications)|0| -|[Sixth workshop on exploiting semantic annotations in information retrieval (ESAIR'13)](https://doi.org/10.1145/2505515.2505808)|Paul N. Bennett, Evgeniy Gabrilovich, Jaap Kamps, Jussi Karlgren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sixth+workshop+on+exploiting+semantic+annotations+in+information+retrieval+(ESAIR'13))|0| -|[CloudDB 2013: fifth international workshop on cloud data management](https://doi.org/10.1145/2505515.2505811)|Feifei Li, Xiaofeng Meng, Fusheng Wang, Cong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloudDB+2013:+fifth+international+workshop+on+cloud+data+management)|0| |[DUBMOD13: international workshop on data-driven user behavioral modelling and mining from social media](https://doi.org/10.1145/2505515.2505812)|Jalal Mahmud, Jeffrey Nichols, Michelle X. Zhou, James Caverlee, John O'Donovan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DUBMOD13:+international+workshop+on+data-driven+user+behavioral+modelling+and+mining+from+social+media)|0| -|[PLEAD 2013: politics, elections and data](https://doi.org/10.1145/2505515.2505813)|Ingmar Weber, AnaMaria Popescu, Marco Pennacchiotti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PLEAD+2013:+politics,+elections+and+data)|0| +|[CloudDB 2013: fifth international workshop on cloud data management](https://doi.org/10.1145/2505515.2505811)|Feifei Li, Xiaofeng Meng, Fusheng Wang, Cong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CloudDB+2013:+fifth+international+workshop+on+cloud+data+management)|0| |[CIKM 2013 workshop on living labs for information retrieval evaluation](https://doi.org/10.1145/2505515.2505815)|Krisztian Balog, David Elsweiler, Evangelos Kanoulas, Liadh Kelly, Mark D. Smucker||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CIKM+2013+workshop+on+living+labs+for+information+retrieval+evaluation)|0| |[DTMBIO 2013: international workshop on data and text mining in biomedical informatics](https://doi.org/10.1145/2505515.2505814)|Atul J. Butte, Doheon Lee, Hua Xu, Min Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DTMBIO+2013:+international+workshop+on+data+and+text+mining+in+biomedical+informatics)|0| -|[The first workshop on user engagement optimization](https://doi.org/10.1145/2505515.2505816)|Liangjie Hong, ShuangHong Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+first+workshop+on+user+engagement+optimization)|0| -|[PIKM 2013: the 6th ACM workshop for ph.d. students in information and knowledge management](https://doi.org/10.1145/2505515.2505817)|Fabian M. Suchanek, Anisoara Nica||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIKM+2013:+the+6th+ACM+workshop+for+ph.d.+students+in+information+and+knowledge+management)|0| -|[Web-KR 2013: the 4th international workshop on web-scale knowledge representation, retrieval and reasoning](https://doi.org/10.1145/2505515.2505819)|Yi Zeng, Spyros Kotoulas, Zhisheng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web-KR+2013:+the+4th+international+workshop+on+web-scale+knowledge+representation,+retrieval+and+reasoning)|0| |[Data management & analytics for healthcare (DARE 2013)](https://doi.org/10.1145/2505515.2505820)|Ullas Nambiar, Niranjan Thirumale||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+management+&+analytics+for+healthcare+(DARE+2013))|0| diff --git a/papers/cikm/cikm2014.md b/papers/cikm/cikm2014.md index f51fb750..8a2be7a4 100644 --- a/papers/cikm/cikm2014.md +++ b/papers/cikm/cikm2014.md @@ -2,266 +2,266 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[What a Nasty Day: Exploring Mood-Weather Relationship from Twitter](https://doi.org/10.1145/2661829.2662090)|Jiwei Li, Xun Wang, Eduard H. Hovy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+a+Nasty+Day:+Exploring+Mood-Weather+Relationship+from+Twitter)|58| -|[Adding Robustness to Support Vector Machines Against Adversarial Reverse Engineering](https://doi.org/10.1145/2661829.2662047)|Ibrahim M. Alabdulmohsin, Xin Gao, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adding+Robustness+to+Support+Vector+Machines+Against+Adversarial+Reverse+Engineering)|54| -|[Extending Faceted Search to the General Web](https://doi.org/10.1145/2661829.2661964)|Weize Kong, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extending+Faceted+Search+to+the+General+Web)|53| -|[Domain Cartridge: Unsupervised Framework for Shallow Domain Ontology Construction from Corpus](https://doi.org/10.1145/2661829.2662087)|Subhabrata Mukherjee, Jitendra Ajmera, Sachindra Joshi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain+Cartridge:+Unsupervised+Framework+for+Shallow+Domain+Ontology+Construction+from+Corpus)|51| -|[Automatic Social Circle Detection Using Multi-View Clustering](https://doi.org/10.1145/2661829.2661973)|Yuhao Yang, Chao Lan, Xiaoli Li, Bo Luo, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Social+Circle+Detection+Using+Multi-View+Clustering)|51| -|[People Search within an Online Social Network: Large Scale Analysis of Facebook Graph Search Query Logs](https://doi.org/10.1145/2661829.2661967)|Nikita V. Spirin, Junfeng He, Mike Develin, Karrie G. Karahalios, Maxime Boucher||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=People+Search+within+an+Online+Social+Network:+Large+Scale+Analysis+of+Facebook+Graph+Search+Query+Logs)|50| -|[Influence Maximization over Large-Scale Social Networks: A Bounded Linear Approach](https://doi.org/10.1145/2661829.2662009)|Qi Liu, Biao Xiang, Enhong Chen, Hui Xiong, Fangshuang Tang, Jeffrey Xu Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+Maximization+over+Large-Scale+Social+Networks:+A+Bounded+Linear+Approach)|48| -|[Microblog Topic Contagiousness Measurement and Emerging Outbreak Monitoring](https://doi.org/10.1145/2661829.2662014)|Victor W. Chu, Raymond K. Wong, Fang Chen, ChiHung Chi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Microblog+Topic+Contagiousness+Measurement+and+Emerging+Outbreak+Monitoring)|48| -|[Twitter Opinion Topic Model: Extracting Product Opinions from Tweets by Leveraging Hashtags and Sentiment Lexicon](https://doi.org/10.1145/2661829.2662005)|Kar Wai Lim, Wray L. Buntine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twitter+Opinion+Topic+Model:+Extracting+Product+Opinions+from+Tweets+by+Leveraging+Hashtags+and+Sentiment+Lexicon)|47| -|[Cross-Modality Submodular Dictionary Learning for Information Retrieval](https://doi.org/10.1145/2661829.2661926)|Fan Zhu, Ling Shao, Mengyang Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Modality+Submodular+Dictionary+Learning+for+Information+Retrieval)|47| -|[Scalable Vaccine Distribution in Large Graphs given Uncertain Data](https://doi.org/10.1145/2661829.2662088)|Yao Zhang, B. Aditya Prakash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Vaccine+Distribution+in+Large+Graphs+given+Uncertain+Data)|46| -|[A Mixtures-of-Trees Framework for Multi-Label Classification](https://doi.org/10.1145/2661829.2661989)|Charmgil Hong, Iyad Batal, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Mixtures-of-Trees+Framework+for+Multi-Label+Classification)|45| -|[Multi-task Sparse Structure Learning](https://doi.org/10.1145/2661829.2662091)|André R. Gonçalves, Puja Das, Soumyadeep Chatterjee, Vidyashankar Sivakumar, Fernando J. Von Zuben, Arindam Banerjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-task+Sparse+Structure+Learning)|45| +|[A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval](https://doi.org/10.1145/2661829.2661935)|Yelong Shen, Xiaodong He, Jianfeng Gao, Li Deng, Grégoire Mesnil||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Latent+Semantic+Model+with+Convolutional-Pooling+Structure+for+Information+Retrieval)|322| +|[Leveraging Social Connections to Improve Personalized Ranking for Collaborative Filtering](https://doi.org/10.1145/2661829.2661998)|Tong Zhao, Julian J. McAuley, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Social+Connections+to+Improve+Personalized+Ranking+for+Collaborative+Filtering)|223| +|[Exploiting Geographical Neighborhood Characteristics for Location Recommendation](https://doi.org/10.1145/2661829.2662002)|Yong Liu, Wei Wei, Aixin Sun, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Geographical+Neighborhood+Characteristics+for+Location+Recommendation)|199| +|[Graph-based Point-of-interest Recommendation with Geographical and Temporal Influences](https://doi.org/10.1145/2661829.2661983)|Quan Yuan, Gao Cong, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+Point-of-interest+Recommendation+with+Geographical+and+Temporal+Influences)|154| +|[Sketch-based Influence Maximization and Computation: Scaling up with Guarantees](https://doi.org/10.1145/2661829.2662077)|Edith Cohen, Daniel Delling, Thomas Pajor, Renato F. Werneck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sketch-based+Influence+Maximization+and+Computation:+Scaling+up+with+Guarantees)|141| +|[RC-NET: A General Framework for Incorporating Knowledge into Word Representations](https://doi.org/10.1145/2661829.2662038)|Chang Xu, Yalong Bai, Jiang Bian, Bin Gao, Gang Wang, Xiaoguang Liu, TieYan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RC-NET:+A+General+Framework+for+Incorporating+Knowledge+into+Word+Representations)|74| +|[Medical Semantic Similarity with a Neural Language Model](https://doi.org/10.1145/2661829.2661974)|Lance De Vine, Guido Zuccon, Bevan Koopman, Laurianne Sitbon, Peter Bruza||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Medical+Semantic+Similarity+with+a+Neural+Language+Model)|71| +|[Influence Maximization over Large-Scale Social Networks: A Bounded Linear Approach](https://doi.org/10.1145/2661829.2662009)|Qi Liu, Biao Xiang, Enhong Chen, Hui Xiong, Fangshuang Tang, Jeffrey Xu Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+Maximization+over+Large-Scale+Social+Networks:+A+Bounded+Linear+Approach)|58| +|[Concept-based Short Text Classification and Ranking](https://doi.org/10.1145/2661829.2662067)|Fang Wang, Zhongyuan Wang, Zhoujun Li, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-based+Short+Text+Classification+and+Ranking)|54| +|[Canonicalizing Open Knowledge Bases](https://doi.org/10.1145/2661829.2662073)|Luis Galárraga, Geremy Heitz, Kevin Murphy, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Canonicalizing+Open+Knowledge+Bases)|52| +|[Meta-Path-Based Ranking with Pseudo Relevance Feedback on Heterogeneous Graph for Citation Recommendation](https://doi.org/10.1145/2661829.2661965)|Xiaozhong Liu, Yingying Yu, Chun Guo, Yizhou Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Meta-Path-Based+Ranking+with+Pseudo+Relevance+Feedback+on+Heterogeneous+Graph+for+Citation+Recommendation)|51| +|[Multileaved Comparisons for Fast Online Evaluation](https://doi.org/10.1145/2661829.2661952)|Anne Schuth, Floor Sietsma, Shimon Whiteson, Damien Lefortier, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multileaved+Comparisons+for+Fast+Online+Evaluation)|48| +|[Question Retrieval with High Quality Answers in Community Question Answering](https://doi.org/10.1145/2661829.2661908)|Kai Zhang, Wei Wu, Haocheng Wu, Zhoujun Li, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question+Retrieval+with+High+Quality+Answers+in+Community+Question+Answering)|48| +|[SharkDB: An In-Memory Column-Oriented Trajectory Storage](https://doi.org/10.1145/2661829.2661878)|Haozhou Wang, Kai Zheng, Jiajie Xu, Bolong Zheng, Xiaofang Zhou, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SharkDB:+An+In-Memory+Column-Oriented+Trajectory+Storage)|47| +|[Robust Entity Linking via Random Walks](https://doi.org/10.1145/2661829.2661887)|Zhaochen Guo, Denilson Barbosa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Entity+Linking+via+Random+Walks)|46| |[Supporting Complex Search Tasks](https://doi.org/10.1145/2661829.2661912)|Ahmed Hassan Awadallah, Ryen W. White, Patrick Pantel, Susan T. Dumais, YiMin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supporting+Complex+Search+Tasks)|45| +|[Dual-Regularized One-Class Collaborative Filtering](https://doi.org/10.1145/2661829.2662042)|Yuan Yao, Hanghang Tong, Guo Yan, Feng Xu, Xiang Zhang, Boleslaw K. Szymanski, Jian Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual-Regularized+One-Class+Collaborative+Filtering)|44| |[Relevance and Effort: An Analysis of Document Utility](https://doi.org/10.1145/2661829.2661953)|Emine Yilmaz, Manisha Verma, Nick Craswell, Filip Radlinski, Peter Bailey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relevance+and+Effort:+An+Analysis+of+Document+Utility)|43| -|[Predictability of Distrust with Interaction Data](https://doi.org/10.1145/2661829.2661988)|Jiliang Tang, Xia Hu, Yi Chang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predictability+of+Distrust+with+Interaction+Data)|43| -|[Aroma: A New Data Protection Method with Differential Privacy and Accurate Query Answering](https://doi.org/10.1145/2661829.2661886)|Chunyao Song, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aroma:+A+New+Data+Protection+Method+with+Differential+Privacy+and+Accurate+Query+Answering)|43| -|[A Latent Semantic Model with Convolutional-Pooling Structure for Information Retrieval](https://doi.org/10.1145/2661829.2661935)|Yelong Shen, Xiaodong He, Jianfeng Gao, Li Deng, Grégoire Mesnil||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Latent+Semantic+Model+with+Convolutional-Pooling+Structure+for+Information+Retrieval)|42| -|[On Building Decision Trees from Large-scale Data in Applications of On-line Advertising](https://doi.org/10.1145/2661829.2662044)|Shivaram Kalyanakrishnan, Deepthi Singh, Ravi Kant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Building+Decision+Trees+from+Large-scale+Data+in+Applications+of+On-line+Advertising)|42| -|[Concept-based Short Text Classification and Ranking](https://doi.org/10.1145/2661829.2662067)|Fang Wang, Zhongyuan Wang, Zhoujun Li, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-based+Short+Text+Classification+and+Ranking)|42| -|[Sequential Action Patterns in Collaborative Ontology-Engineering Projects: A Case-Study in the Biomedical Domain](https://doi.org/10.1145/2661829.2662049)|Simon Walk, Philipp Singer, Markus Strohmaier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+Action+Patterns+in+Collaborative+Ontology-Engineering+Projects:+A+Case-Study+in+the+Biomedical+Domain)|42| -|[Meta-Path-Based Ranking with Pseudo Relevance Feedback on Heterogeneous Graph for Citation Recommendation](https://doi.org/10.1145/2661829.2661965)|Xiaozhong Liu, Yingying Yu, Chun Guo, Yizhou Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Meta-Path-Based+Ranking+with+Pseudo+Relevance+Feedback+on+Heterogeneous+Graph+for+Citation+Recommendation)|41| -|[Collaborative Filtering Incorporating Review Text and Co-clusters of Hidden User Communities and Item Groups](https://doi.org/10.1145/2661829.2662059)|Yinqing Xu, Wai Lam, Tianyi Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Filtering+Incorporating+Review+Text+and+Co-clusters+of+Hidden+User+Communities+and+Item+Groups)|41| -|[Improving Term Weighting for Community Question Answering Search Using Syntactic Analysis](https://doi.org/10.1145/2661829.2661901)|David Carmel, Avihai Mejer, Yuval Pinter, Idan Szpektor||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Term+Weighting+for+Community+Question+Answering+Search+Using+Syntactic+Analysis)|41| -|[Re-call and Re-cognition in Episode Re-retrieval: A User Study on News Re-finding a Fortnight Later](https://doi.org/10.1145/2661829.2661920)|Shuya Ochiai, Makoto P. Kato, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Re-call+and+Re-cognition+in+Episode+Re-retrieval:+A+User+Study+on+News+Re-finding+a+Fortnight+Later)|41| -|[MapReduce Triangle Enumeration With Guarantees](https://doi.org/10.1145/2661829.2662017)|HaMyung Park, Francesco Silvestri, U Kang, Rasmus Pagh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MapReduce+Triangle+Enumeration+With+Guarantees)|41| -|[SocialTransfer: Transferring Social Knowledge for Cold-Start Cowdsourcing](https://doi.org/10.1145/2661829.2661871)|Zhou Zhao, James Cheng, Furu Wei, Ming Zhou, Wilfred Ng, Yingjun Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SocialTransfer:+Transferring+Social+Knowledge+for+Cold-Start+Cowdsourcing)|40| -|["Picture the scene...";: Visually Summarising Social Media Events](https://doi.org/10.1145/2661829.2661923)|Philip J. McParlane, Andrew James McMinn, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Picture+the+scene...";:+Visually+Summarising+Social+Media+Events)|40| -|[Pattern Match Query in a Large Uncertain Graph](https://doi.org/10.1145/2661829.2661868)|Ye Yuan, Guoren Wang, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pattern+Match+Query+in+a+Large+Uncertain+Graph)|39| -|[Similarity Search using Concept Graphs](https://doi.org/10.1145/2661829.2661995)|Rakesh Agrawal, Sreenivas Gollapudi, Anitha Kannan, Krishnaram Kenthapadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity+Search+using+Concept+Graphs)|39| -|[Narrow or Broad?: Estimating Subjective Specificity in Exploratory Search](https://doi.org/10.1145/2661829.2661904)|Kumaripaba Athukorala, Antti Oulasvirta, Dorota Glowacka, Jilles Vreeken, Giulio Jacucci||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Narrow+or+Broad?:+Estimating+Subjective+Specificity+in+Exploratory+Search)|39| -|[Understanding Within-Content Engagement through Pattern Analysis of Mouse Gestures](https://doi.org/10.1145/2661829.2661909)|Ioannis Arapakis, Mounia Lalmas, George Valkanas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Within-Content+Engagement+through+Pattern+Analysis+of+Mouse+Gestures)|39| -|[Fast Heuristics for Near-Optimal Task Allocation in Data Stream Processing over Clusters](https://doi.org/10.1145/2661829.2661882)|Andreas Chatzistergiou, Stratis D. Viglas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Heuristics+for+Near-Optimal+Task+Allocation+in+Data+Stream+Processing+over+Clusters)|39| -|[Document Prioritization for Scalable Query Processing](https://doi.org/10.1145/2661829.2661914)|Hao Wu, Hui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document+Prioritization+for+Scalable+Query+Processing)|39| -|[Templated Search over Relational Databases](https://doi.org/10.1145/2661829.2661883)|Anastasios Zouzias, Michail Vlachos, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Templated+Search+over+Relational+Databases)|38| -|[A Cross-modal Multi-task Learning Framework for Image Annotation](https://doi.org/10.1145/2661829.2662023)|Liang Xie, Peng Pan, Yansheng Lu, Shixun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cross-modal+Multi-task+Learning+Framework+for+Image+Annotation)|38| -|[Improving Tail Query Performance by Fusion Model](https://doi.org/10.1145/2661829.2661943)|Shuai Huo, Min Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Tail+Query+Performance+by+Fusion+Model)|38| -|[Dual-Regularized One-Class Collaborative Filtering](https://doi.org/10.1145/2661829.2662042)|Yuan Yao, Hanghang Tong, Guo Yan, Feng Xu, Xiang Zhang, Boleslaw K. Szymanski, Jian Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual-Regularized+One-Class+Collaborative+Filtering)|38| -|[From Skimming to Reading: A Two-stage Examination Model for Web Search](https://doi.org/10.1145/2661829.2661907)|Yiqun Liu, Chao Wang, Ke Zhou, JianYun Nie, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Skimming+to+Reading:+A+Two-stage+Examination+Model+for+Web+Search)|38| -|[Structure Learning via Parameter Learning](https://doi.org/10.1145/2661829.2662022)|William Yang Wang, Kathryn Mazaitis, William W. Cohen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structure+Learning+via+Parameter+Learning)|38| -|[Transfer Understanding from Head Queries to Tail Queries](https://doi.org/10.1145/2661829.2662078)|Yangqiu Song, Haixun Wang, Weizhu Chen, Shusen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transfer+Understanding+from+Head+Queries+to+Tail+Queries)|38| -|[CARS2: Learning Context-aware Representations for Context-aware Recommendations](https://doi.org/10.1145/2661829.2662070)|Yue Shi, Alexandros Karatzoglou, Linas Baltrunas, Martha A. Larson, Alan Hanjalic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CARS2:+Learning+Context-aware+Representations+for+Context-aware+Recommendations)|37| -|[A Dynamic Reconstruction Approach to Topic Summarization of User-Generated-Content](https://doi.org/10.1145/2661829.2661936)|Zhaoyan Ming, Jintao Ye, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Dynamic+Reconstruction+Approach+to+Topic+Summarization+of+User-Generated-Content)|37| -|[Term Selection and Result Reranking for Question Retrieval by Exploiting Hierarchical Classification](https://doi.org/10.1145/2661829.2661938)|Wen Chan, Jintao Du, Weidong Yang, Jinhui Tang, Xiangdong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Term+Selection+and+Result+Reranking+for+Question+Retrieval+by+Exploiting+Hierarchical+Classification)|36| -|[Incremental Update Summarization: Adaptive Sentence Selection based on Prevalence and Novelty](https://doi.org/10.1145/2661829.2661951)|Richard McCreadie, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+Update+Summarization:+Adaptive+Sentence+Selection+based+on+Prevalence+and+Novelty)|36| -|[An Eye-tracking Study of User Interactions with Query Auto Completion](https://doi.org/10.1145/2661829.2661922)|Katja Hofmann, Bhaskar Mitra, Filip Radlinski, Milad Shokouhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Eye-tracking+Study+of+User+Interactions+with+Query+Auto+Completion)|36| -|[Exploiting Geographical Neighborhood Characteristics for Location Recommendation](https://doi.org/10.1145/2661829.2662002)|Yong Liu, Wei Wei, Aixin Sun, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Geographical+Neighborhood+Characteristics+for+Location+Recommendation)|36| -|[Generative Modeling of Entity Comparisons in Text](https://doi.org/10.1145/2661829.2662016)|Maksim Tkachenko, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generative+Modeling+of+Entity+Comparisons+in+Text)|36| -|[Semantic Compositionality in Tree Kernels](https://doi.org/10.1145/2661829.2661955)|Paolo Annesi, Danilo Croce, Roberto Basili||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Compositionality+in+Tree+Kernels)|36| -|[On Independence Atoms and Keys](https://doi.org/10.1145/2661829.2662058)|Miika Hannula, Juha Kontinen, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Independence+Atoms+and+Keys)|36| +|[MapReduce Triangle Enumeration With Guarantees](https://doi.org/10.1145/2661829.2662017)|HaMyung Park, Francesco Silvestri, U Kang, Rasmus Pagh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MapReduce+Triangle+Enumeration+With+Guarantees)|42| +|[An Eye-tracking Study of User Interactions with Query Auto Completion](https://doi.org/10.1145/2661829.2661922)|Katja Hofmann, Bhaskar Mitra, Filip Radlinski, Milad Shokouhi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Eye-tracking+Study+of+User+Interactions+with+Query+Auto+Completion)|39| +|[Faceted Search over Ontology-Enhanced RDF Data](https://doi.org/10.1145/2661829.2662027)|Marcelo Arenas, Bernardo Cuenca Grau, Evgeny Kharlamov, Sarunas Marciuska, Dmitriy Zheleznyakov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Faceted+Search+over+Ontology-Enhanced+RDF+Data)|39| +|[DFD: Efficient Functional Dependency Discovery](https://doi.org/10.1145/2661829.2661884)|Ziawasch Abedjan, Patrick Schulze, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DFD:+Efficient+Functional+Dependency+Discovery)|38| +|[How Many Folders Do You Really Need?: Classifying Email into a Handful of Categories](https://doi.org/10.1145/2661829.2662018)|Mihajlo Grbovic, Guy Halawi, Zohar Shay Karnin, Yoelle Maarek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+Many+Folders+Do+You+Really+Need?:+Classifying+Email+into+a+Handful+of+Categories)|37| +|[Understanding Within-Content Engagement through Pattern Analysis of Mouse Gestures](https://doi.org/10.1145/2661829.2661909)|Ioannis Arapakis, Mounia Lalmas, George Valkanas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Within-Content+Engagement+through+Pattern+Analysis+of+Mouse+Gestures)|37| +|[A Fresh Look on Knowledge Bases: Distilling Named Events from News](https://doi.org/10.1145/2661829.2661984)|Erdal Kuzey, Jilles Vreeken, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fresh+Look+on+Knowledge+Bases:+Distilling+Named+Events+from+News)|37| +|[From Skimming to Reading: A Two-stage Examination Model for Web Search](https://doi.org/10.1145/2661829.2661907)|Yiqun Liu, Chao Wang, Ke Zhou, JianYun Nie, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Skimming+to+Reading:+A+Two-stage+Examination+Model+for+Web+Search)|36| +|[Robust Principal Component Analysis with Missing Data](https://doi.org/10.1145/2661829.2662083)|Fanhua Shang, Yuanyuan Liu, James Cheng, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Principal+Component+Analysis+with+Missing+Data)|36| |[Time-sensitive Personalized Query Auto-Completion](https://doi.org/10.1145/2661829.2661921)|Fei Cai, Shangsong Liang, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-sensitive+Personalized+Query+Auto-Completion)|36| -|[Compact Auxiliary Dictionaries for Incremental Compression of Large Repositories](https://doi.org/10.1145/2661829.2661961)|Jiancong Tong, Anthony Wirth, Justin Zobel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+Auxiliary+Dictionaries+for+Incremental+Compression+of+Large+Repositories)|36| -|[Cross-Device Search](https://doi.org/10.1145/2661829.2661910)|George D. Montañez, Ryen W. White, Xiao Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Device+Search)|36| -|[A Fixed-Point Method for Weighting Terms in Verbose Informational Queries](https://doi.org/10.1145/2661829.2661957)|Jiaul H. Paik, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fixed-Point+Method+for+Weighting+Terms+in+Verbose+Informational+Queries)|35| -|[Solving Linear SVMs with Multiple 1D Projections](https://doi.org/10.1145/2661829.2661994)|Johannes Schneider, Jasmina Bogojeska, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Solving+Linear+SVMs+with+Multiple+1D+Projections)|35| -|[Faceted Search over Ontology-Enhanced RDF Data](https://doi.org/10.1145/2661829.2662027)|Marcelo Arenas, Bernardo Cuenca Grau, Evgeny Kharlamov, Sarunas Marciuska, Dmitriy Zheleznyakov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Faceted+Search+over+Ontology-Enhanced+RDF+Data)|35| -|[Efficient Static and Dynamic In-Database Tensor Decompositions on Chunk-Based Array Stores](https://doi.org/10.1145/2661829.2661864)|Mijung Kim, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Static+and+Dynamic+In-Database+Tensor+Decompositions+on+Chunk-Based+Array+Stores)|35| -|[GI-NMF: Group Incremental Non-Negative Matrix Factorization on Data Streams](https://doi.org/10.1145/2661829.2662008)|Xilun Chen, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GI-NMF:+Group+Incremental+Non-Negative+Matrix+Factorization+on+Data+Streams)|35| -|[Model Selection with the Covering Number of the Ball of RKHS](https://doi.org/10.1145/2661829.2662034)|Lizhong Ding, Shizhong Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model+Selection+with+the+Covering+Number+of+the+Ball+of+RKHS)|35| -|[A Word-Scale Probabilistic Latent Variable Model for Detecting Human Values](https://doi.org/10.1145/2661829.2661966)|Yasuhiro Takayama, Yoichi Tomiura, Emi Ishita, Douglas W. Oard, Kenneth R. Fleischmann, AnShou Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Word-Scale+Probabilistic+Latent+Variable+Model+for+Detecting+Human+Values)|35| -|[Within-Network Classification Using Radius-Constrained Neighborhood Patterns](https://doi.org/10.1145/2661829.2661979)|Jialong Han, JiRong Wen, Jian Pei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Within-Network+Classification+Using+Radius-Constrained+Neighborhood+Patterns)|35| -|[A Retrievability Analysis: Exploring the Relationship Between Retrieval Bias and Retrieval Performance](https://doi.org/10.1145/2661829.2661948)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Retrievability+Analysis:+Exploring+the+Relationship+Between+Retrieval+Bias+and+Retrieval+Performance)|34| -|[Search Result Diversification via Filling Up Multiple Knapsacks](https://doi.org/10.1145/2661829.2661933)|Haitao Yu, Fuji Ren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+Result+Diversification+via+Filling+Up+Multiple+Knapsacks)|34| -|[Robust Principal Component Analysis with Missing Data](https://doi.org/10.1145/2661829.2662083)|Fanhua Shang, Yuanyuan Liu, James Cheng, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Principal+Component+Analysis+with+Missing+Data)|34| -|[Component Detection in Directed Networks](https://doi.org/10.1145/2661829.2662074)|YuKeng Shih, Sungmin Kim, Yiye Ruan, Jinxing Cheng, Abhishek Gattani, Tao Shi, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Component+Detection+in+Directed+Networks)|34| -|[Machine-Assisted Search Preference Evaluation](https://doi.org/10.1145/2661829.2661913)|Ahmed Hassan Awadallah, Imed Zitouni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine-Assisted+Search+Preference+Evaluation)|33| -|[A Comparison of Retrieval Models using Term Dependencies](https://doi.org/10.1145/2661829.2661894)|Samuel J. Huston, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparison+of+Retrieval+Models+using+Term+Dependencies)|33| -|[Active Learning based Survival Regression for Censored Data](https://doi.org/10.1145/2661829.2662065)|Bhanukiran Vinzamuri, Yan Li, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+based+Survival+Regression+for+Censored+Data)|33| -|[Using Crowdsourcing to Investigate Perception of Narrative Similarity](https://doi.org/10.1145/2661829.2661918)|Dong Nguyen, Dolf Trieschnigg, Mariët Theune||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Crowdsourcing+to+Investigate+Perception+of+Narrative+Similarity)|33| -|[Modeling Topic Diffusion in Multi-Relational Bibliographic Information Networks](https://doi.org/10.1145/2661829.2662000)|Huan Gui, Yizhou Sun, Jiawei Han, George Brova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Topic+Diffusion+in+Multi-Relational+Bibliographic+Information+Networks)|33| -|[Graph-based Point-of-interest Recommendation with Geographical and Temporal Influences](https://doi.org/10.1145/2661829.2661983)|Quan Yuan, Gao Cong, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-based+Point-of-interest+Recommendation+with+Geographical+and+Temporal+Influences)|33| -|[NCR: A Scalable Network-Based Approach to Co-Ranking in Question-and-Answer Sites](https://doi.org/10.1145/2661829.2661978)|Jingyuan Zhang, Xiangnan Kong, Roger Jie Luo, Yi Chang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=NCR:+A+Scalable+Network-Based+Approach+to+Co-Ranking+in+Question-and-Answer+Sites)|33| -|[Tagging Your Tweets: A Probabilistic Modeling of Hashtag Annotation in Twitter](https://doi.org/10.1145/2661829.2661903)|Zongyang Ma, Aixin Sun, Quan Yuan, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tagging+Your+Tweets:+A+Probabilistic+Modeling+of+Hashtag+Annotation+in+Twitter)|33| -|[Focused Crawling for Structured Data](https://doi.org/10.1145/2661829.2661902)|Robert Meusel, Peter Mika, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Focused+Crawling+for+Structured+Data)|33| -|[Predicting the Popularity of Online Serials with Autoregressive Models](https://doi.org/10.1145/2661829.2662055)|Biao Chang, Hengshu Zhu, Yong Ge, Enhong Chen, Hui Xiong, Chang Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+Popularity+of+Online+Serials+with+Autoregressive+Models)|33| -|[Modelling and Detecting Changes in User Satisfaction](https://doi.org/10.1145/2661829.2661960)|Julia Kiseleva, Eric Crestan, Riccardo Brigo, Roland Ditte||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+and+Detecting+Changes+in+User+Satisfaction)|33| -|[Searching Locally-Defined Entities](https://doi.org/10.1145/2661829.2661954)|Zhaohui Wu, Yuanhua Lv, Ariel Fuxman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Searching+Locally-Defined+Entities)|33| -|[Truth Discovery in Data Streams: A Single-Pass Probabilistic Approach](https://doi.org/10.1145/2661829.2661892)|Zhou Zhao, James Cheng, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+in+Data+Streams:+A+Single-Pass+Probabilistic+Approach)|33| -|[Modelling Relevance towards Multiple Inclusion Criteria when Ranking Patients](https://doi.org/10.1145/2661829.2661958)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+Relevance+towards+Multiple+Inclusion+Criteria+when+Ranking+Patients)|33| -|[Learning Interactions for Social Prediction in Large-scale Networks](https://doi.org/10.1145/2661829.2662056)|Xiaofeng Yu, Junqing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Interactions+for+Social+Prediction+in+Large-scale+Networks)|32| -|[Identifying Your Customers in Social Networks](https://doi.org/10.1145/2661829.2662057)|ChunTa Lu, HongHan Shuai, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Your+Customers+in+Social+Networks)|32| -|[Predicting Search Task Difficulty at Different Search Stages](https://doi.org/10.1145/2661829.2661939)|Chang Liu, Jingjing Liu, Nicholas J. Belkin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Search+Task+Difficulty+at+Different+Search+Stages)|32| -|[Query Augmentation based Intent Matching in Retail Vertical Ads](https://doi.org/10.1145/2661829.2661898)|Huasha Zhao, Ye Chen, John F. Canny, Tak W. Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Augmentation+based+Intent+Matching+in+Retail+Vertical+Ads)|32| -|[Ranking Optimization with Constraints](https://doi.org/10.1145/2661829.2661895)|Fangzhao Wu, Jun Xu, Hang Li, Xin Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Optimization+with+Constraints)|32| -|[Scalable Distributed Belief Propagation with Prioritized Block Updates](https://doi.org/10.1145/2661829.2662081)|Jiangtao Yin, Lixin Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Distributed+Belief+Propagation+with+Prioritized+Block+Updates)|32| -|[Canonicalizing Open Knowledge Bases](https://doi.org/10.1145/2661829.2662073)|Luis Galárraga, Geremy Heitz, Kevin Murphy, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Canonicalizing+Open+Knowledge+Bases)|32| -|[Rubato DB: A Highly Scalable Staged Grid Database System for OLTP and Big Data Applications](https://doi.org/10.1145/2661829.2661879)|LiYan Yuan, Lengdong Wu, JiaHuai You, Yan Chi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rubato+DB:+A+Highly+Scalable+Staged+Grid+Database+System+for+OLTP+and+Big+Data+Applications)|31| -|[Latent Aspect Mining via Exploring Sparsity and Intrinsic Information](https://doi.org/10.1145/2661829.2662062)|Yinqing Xu, Tianyi Lin, Wai Lam, Zirui Zhou, Hong Cheng, Anthony ManCho So||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latent+Aspect+Mining+via+Exploring+Sparsity+and+Intrinsic+Information)|31| -|[Recognizing Humor on Twitter](https://doi.org/10.1145/2661829.2661997)|Renxian Zhang, Naishi Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recognizing+Humor+on+Twitter)|31| -|[Time-Aware Rank Aggregation for Microblog Search](https://doi.org/10.1145/2661829.2661905)|Shangsong Liang, Zhaochun Ren, Wouter Weerkamp, Edgar Meij, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-Aware+Rank+Aggregation+for+Microblog+Search)|31| -|[An Appliance-Driven Approach to Detection of Corrupted Load Curve Data](https://doi.org/10.1145/2661829.2661860)|Guoming Tang, Kui Wu, Jian Pei, Jiuyang Tang, Jingsheng Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Appliance-Driven+Approach+to+Detection+of+Corrupted+Load+Curve+Data)|31| -|[Social Book Search Reranking with Generalized Content-Based Filtering](https://doi.org/10.1145/2661829.2661940)|BoWen Zhang, XuCheng Yin, XiaoPing Cui, Jiao Qu, Bin Geng, Fang Zhou, Li Song, HongWei Hao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Book+Search+Reranking+with+Generalized+Content-Based+Filtering)|30| -|[Modeling Paying Behavior in Game Social Networks](https://doi.org/10.1145/2661829.2662024)|Zhanpeng Fang, Xinyu Zhou, Jie Tang, Wei Shao, Alvis Cheuk M. Fong, Longjun Sun, Ying Ding, Ling Zhou, Jarder Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Paying+Behavior+in+Game+Social+Networks)|30| -|[Truth Discovery in Crowdsourced Detection of Spatial Events](https://doi.org/10.1145/2661829.2662003)|Wentao Robin Ouyang, Mani B. Srivastava, Alice Toniolo, Timothy J. Norman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+in+Crowdsourced+Detection+of+Spatial+Events)|30| -|[The Effects of Vertical Rank and Border on Aggregated Search Coherence and Search Behavior](https://doi.org/10.1145/2661829.2661930)|Jaime Arguello, Robert G. Capra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Effects+of+Vertical+Rank+and+Border+on+Aggregated+Search+Coherence+and+Search+Behavior)|30| -|[Towards Consistency Checking over Evolving Ontologies](https://doi.org/10.1145/2661829.2662061)|Jiewen Wu, Freddy Lécué||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Consistency+Checking+over+Evolving+Ontologies)|30| -|[A Cross-Lingual Joint Aspect/Sentiment Model for Sentiment Analysis](https://doi.org/10.1145/2661829.2662019)|Zheng Lin, Xiaolong Jin, Xueke Xu, Weiping Wang, Xueqi Cheng, Yuanzhuo Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cross-Lingual+Joint+Aspect/Sentiment+Model+for+Sentiment+Analysis)|30| -|[A Flexible Framework for Projecting Heterogeneous Data](https://doi.org/10.1145/2661829.2662030)|Aubrey Gress, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Flexible+Framework+for+Projecting+Heterogeneous+Data)|30| -|[PatentDom: Analyzing Patent Relationships on Multi-View Patent Graphs](https://doi.org/10.1145/2661829.2662031)|Longhui Zhang, Lei Li, Tao Li, Dingding Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PatentDom:+Analyzing+Patent+Relationships+on+Multi-View+Patent+Graphs)|30| -|[Analytical Performance Modeling for Top-K Query Processing](https://doi.org/10.1145/2661829.2661931)|Hao Wu, Hui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analytical+Performance+Modeling+for+Top-K+Query+Processing)|30| -|[Exploring Features for Complicated Objects: Cross-View Feature Selection for Multi-Instance Learning](https://doi.org/10.1145/2661829.2662041)|Jia Wu, Zhibin Hong, Shirui Pan, Xingquan Zhu, Zhihua Cai, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Features+for+Complicated+Objects:+Cross-View+Feature+Selection+for+Multi-Instance+Learning)|30| -|[Multileaved Comparisons for Fast Online Evaluation](https://doi.org/10.1145/2661829.2661952)|Anne Schuth, Floor Sietsma, Shimon Whiteson, Damien Lefortier, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multileaved+Comparisons+for+Fast+Online+Evaluation)|29| -|[Controllable Information Sharing for User Accounts Linkage across Multiple Online Social Networks](https://doi.org/10.1145/2661829.2661985)|Yilin Shen, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Controllable+Information+Sharing+for+User+Accounts+Linkage+across+Multiple+Online+Social+Networks)|29| -|[Online Exploration for Detecting Shifts in Fresh Intent](https://doi.org/10.1145/2661829.2661947)|Damien Lefortier, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Exploration+for+Detecting+Shifts+in+Fresh+Intent)|29| -|[Active Learning for Streaming Networked Data](https://doi.org/10.1145/2661829.2661981)|Zhilin Yang, Jie Tang, Yutao Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+for+Streaming+Networked+Data)|29| -|[Understanding the Sparsity: Augmented Matrix Factorization with Sampled Constraints on Unobservables](https://doi.org/10.1145/2661829.2661976)|Yongfeng Zhang, Min Zhang, Yi Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+Sparsity:+Augmented+Matrix+Factorization+with+Sampled+Constraints+on+Unobservables)|29| -|[Analysis of Physical Activity Propagation in a Health Social Network](https://doi.org/10.1145/2661829.2662025)|NhatHai Phan, Dejing Dou, Xiao Xiao, Brigitte Piniewski, David Kil||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+of+Physical+Activity+Propagation+in+a+Health+Social+Network)|29| -|[Competitive Game Designs for Improving the Cost Effectiveness of Crowdsourcing](https://doi.org/10.1145/2661829.2661946)|Markus Rokicki, Sergiu Chelaru, Sergej Zerr, Stefan Siersdorfer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Competitive+Game+Designs+for+Improving+the+Cost+Effectiveness+of+Crowdsourcing)|29| -|[Customized Organization of Social Media Contents using Focused Topic Hierarchy](https://doi.org/10.1145/2661829.2661896)|Xingwei Zhu, Zhaoyan Ming, Yu Hao, Xiaoyan Zhu, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Customized+Organization+of+Social+Media+Contents+using+Focused+Topic+Hierarchy)|29| -|[Analysis on Community Variational Trend in Dynamic Networks](https://doi.org/10.1145/2661829.2662004)|Xiaowei Jia, Nan Du, Jing Gao, Aidong Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+on+Community+Variational+Trend+in+Dynamic+Networks)|28| -|[Learning to Propagate Rare Labels](https://doi.org/10.1145/2661829.2661982)|Rakesh Pimplikar, Dinesh Garg, Deepesh Bharani, Gyana R. Parija||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Propagate+Rare+Labels)|28| -|[Deviation-Based Contextual SLIM Recommenders](https://doi.org/10.1145/2661829.2661987)|Yong Zheng, Bamshad Mobasher, Robin D. Burke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deviation-Based+Contextual+SLIM+Recommenders)|28| -|[CAST: A Context-Aware Story-Teller for Streaming Social Content](https://doi.org/10.1145/2661829.2661859)|Pei Lee, Laks V. S. Lakshmanan, Evangelos E. Milios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CAST:+A+Context-Aware+Story-Teller+for+Streaming+Social+Content)|28| -|[Efficient Probabilistic Supergraph Search Over Large Uncertain Graphs](https://doi.org/10.1145/2661829.2661872)|Yongxin Tong, Xiaofei Zhang, Caleb Chen Cao, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Probabilistic+Supergraph+Search+Over+Large+Uncertain+Graphs)|28| -|[Online User Location Inference Exploiting Spatiotemporal Correlations in Social Streams](https://doi.org/10.1145/2661829.2662039)|Yuto Yamaguchi, Toshiyuki Amagasa, Hiroyuki Kitagawa, Yohei Ikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+User+Location+Inference+Exploiting+Spatiotemporal+Correlations+in+Social+Streams)|28| -|[Designing Test Collections for Comparing Many Systems](https://doi.org/10.1145/2661829.2661893)|Tetsuya Sakai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Designing+Test+Collections+for+Comparing+Many+Systems)|27| -|[User Interests Imbalance Exploration in Social Recommendation: A Fitness Adaptation](https://doi.org/10.1145/2661829.2662043)|Tianchun Wang, Xiaoming Jin, Xuetao Ding, Xiaojun Ye||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Interests+Imbalance+Exploration+in+Social+Recommendation:+A+Fitness+Adaptation)|27| -|[Multi-task Multi-view Learning for Heterogeneous Tasks](https://doi.org/10.1145/2661829.2662054)|Xin Jin, Fuzhen Zhuang, Hui Xiong, Changying Du, Ping Luo, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-task+Multi-view+Learning+for+Heterogeneous+Tasks)|27| -|[Robust Entity Linking via Random Walks](https://doi.org/10.1145/2661829.2661887)|Zhaochen Guo, Denilson Barbosa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Entity+Linking+via+Random+Walks)|27| -|[HGMF: Hierarchical Group Matrix Factorization for Collaborative Recommendation](https://doi.org/10.1145/2661829.2662021)|Xin Wang, Weike Pan, Congfu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HGMF:+Hierarchical+Group+Matrix+Factorization+for+Collaborative+Recommendation)|27| -|[Fast, Accurate, and Space-efficient Tracking of Time-weighted Frequent Items from Data Streams](https://doi.org/10.1145/2661829.2662006)|Yongsub Lim, Jihoon Choi, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast,+Accurate,+and+Space-efficient+Tracking+of+Time-weighted+Frequent+Items+from+Data+Streams)|27| -|[Rebuilding the Tower of Babel: Towards Cross-System Malware Information Sharing](https://doi.org/10.1145/2661829.2662086)|Ting Wang, Shicong Meng, Wei Gao, Xin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rebuilding+the+Tower+of+Babel:+Towards+Cross-System+Malware+Information+Sharing)|27| -|[Data/Feature Distributed Stochastic Coordinate Descent for Logistic Regression](https://doi.org/10.1145/2661829.2662082)|Dongyeop Kang, Woosang Lim, Kijung Shin, Lee Sael, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data/Feature+Distributed+Stochastic+Coordinate+Descent+for+Logistic+Regression)|27| -|[Pushing the Envelope in Graph Compression](https://doi.org/10.1145/2661829.2662053)|Panagiotis Liakos, Katia Papakonstantinopoulou, Michael Sioutis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pushing+the+Envelope+in+Graph+Compression)|27| -|[Semantic Approximate Keyword Query Based on Keyword and Query Coupling Relationship Analysis](https://doi.org/10.1145/2661829.2661867)|Xiangfu Meng, Longbing Cao, Jingyu Shao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Approximate+Keyword+Query+Based+on+Keyword+and+Query+Coupling+Relationship+Analysis)|26| -|[Supervised Nested PageRank](https://doi.org/10.1145/2661829.2661969)|Maxim Zhukovskiy, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Nested+PageRank)|26| -|[Tracking Temporal Dynamics of Purchase Decisions via Hierarchical Time-Rescaling Model](https://doi.org/10.1145/2661829.2662012)|Hideaki Kim, Noriko Takaya, Hiroshi Sawada||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Temporal+Dynamics+of+Purchase+Decisions+via+Hierarchical+Time-Rescaling+Model)|26| -|[Efficient Subgraph Skyline Search Over Large Graphs](https://doi.org/10.1145/2661829.2662037)|Weiguo Zheng, Lei Zou, Xiang Lian, Liang Hong, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Subgraph+Skyline+Search+Over+Large+Graphs)|26| -|[Leveraging Social Connections to Improve Personalized Ranking for Collaborative Filtering](https://doi.org/10.1145/2661829.2661998)|Tong Zhao, Julian J. McAuley, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Social+Connections+to+Improve+Personalized+Ranking+for+Collaborative+Filtering)|25| +|[Twitter Opinion Topic Model: Extracting Product Opinions from Tweets by Leveraging Hashtags and Sentiment Lexicon](https://doi.org/10.1145/2661829.2662005)|Kar Wai Lim, Wray L. Buntine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Twitter+Opinion+Topic+Model:+Extracting+Product+Opinions+from+Tweets+by+Leveraging+Hashtags+and+Sentiment+Lexicon)|35| +|[Fast Heuristics for Near-Optimal Task Allocation in Data Stream Processing over Clusters](https://doi.org/10.1145/2661829.2661882)|Andreas Chatzistergiou, Stratis D. Viglas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Heuristics+for+Near-Optimal+Task+Allocation+in+Data+Stream+Processing+over+Clusters)|33| +|[Identifying Latent Study Habits by Mining Learner Behavior Patterns in Massive Open Online Courses](https://doi.org/10.1145/2661829.2662033)|Miaomiao Wen, Carolyn Penstein Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Latent+Study+Habits+by+Mining+Learner+Behavior+Patterns+in+Massive+Open+Online+Courses)|33| +|[Truth Discovery in Data Streams: A Single-Pass Probabilistic Approach](https://doi.org/10.1145/2661829.2661892)|Zhou Zhao, James Cheng, Wilfred Ng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+in+Data+Streams:+A+Single-Pass+Probabilistic+Approach)|32| +|[Cross-Device Search](https://doi.org/10.1145/2661829.2661910)|George D. Montañez, Ryen W. White, Xiao Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Device+Search)|29| +|[CARS2: Learning Context-aware Representations for Context-aware Recommendations](https://doi.org/10.1145/2661829.2662070)|Yue Shi, Alexandros Karatzoglou, Linas Baltrunas, Martha A. Larson, Alan Hanjalic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CARS2:+Learning+Context-aware+Representations+for+Context-aware+Recommendations)|28| +|[Multi-task Multi-view Learning for Heterogeneous Tasks](https://doi.org/10.1145/2661829.2662054)|Xin Jin, Fuzhen Zhuang, Hui Xiong, Changying Du, Ping Luo, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-task+Multi-view+Learning+for+Heterogeneous+Tasks)|28| +|[Tagging Your Tweets: A Probabilistic Modeling of Hashtag Annotation in Twitter](https://doi.org/10.1145/2661829.2661903)|Zongyang Ma, Aixin Sun, Quan Yuan, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tagging+Your+Tweets:+A+Probabilistic+Modeling+of+Hashtag+Annotation+in+Twitter)|28| +|[Focused Crawling for Structured Data](https://doi.org/10.1145/2661829.2661902)|Robert Meusel, Peter Mika, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Focused+Crawling+for+Structured+Data)|27| +|[Unsupervised Feature Selection for Multi-View Clustering on Text-Image Web News Data](https://doi.org/10.1145/2661829.2661993)|Mingjie Qian, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+for+Multi-View+Clustering+on+Text-Image+Web+News+Data)|27| +|["Strength Lies in Differences": Diversifying Friends for Recommendations through Subspace Clustering](https://doi.org/10.1145/2661829.2662026)|Eirini Ntoutsi, Kostas Stefanidis, Katharina Rausch, HansPeter Kriegel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Strength+Lies+in+Differences":+Diversifying+Friends+for+Recommendations+through+Subspace+Clustering)|26| +|[Scalable Privacy-Preserving Record Linkage for Multiple Databases](https://doi.org/10.1145/2661829.2661875)|Dinusha Vatsalan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Privacy-Preserving+Record+Linkage+for+Multiple+Databases)|26| +|[Dynamic Clustering of Contextual Multi-Armed Bandits](https://doi.org/10.1145/2661829.2662063)|Trong T. Nguyen, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+Clustering+of+Contextual+Multi-Armed+Bandits)|26| +|[A Comparison of Retrieval Models using Term Dependencies](https://doi.org/10.1145/2661829.2661894)|Samuel J. Huston, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparison+of+Retrieval+Models+using+Term+Dependencies)|25| |[Learning a Linear Influence Model from Transient Opinion Dynamics](https://doi.org/10.1145/2661829.2662064)|Abir De, Sourangshu Bhattacharya, Parantapa Bhattacharya, Niloy Ganguly, Soumen Chakrabarti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+a+Linear+Influence+Model+from+Transient+Opinion+Dynamics)|25| -|[Enabling Precision/Recall Preferences for Semi-supervised SVM Training](https://doi.org/10.1145/2661829.2661977)|Zeyi Wen, Rui Zhang, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+Precision/Recall+Preferences+for+Semi-supervised+SVM+Training)|25| -|[High Impact Academic Paper Prediction Using Temporal and Topological Features](https://doi.org/10.1145/2661829.2662066)|Feruz Davletov, Ali Selman Aydin, Ali Cakmak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=High+Impact+Academic+Paper+Prediction+Using+Temporal+and+Topological+Features)|25| -|[SemStore: A Semantic-Preserving Distributed RDF Triple Store](https://doi.org/10.1145/2661829.2661876)|Buwen Wu, Yongluan Zhou, Pingpeng Yuan, Hai Jin, Ling Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemStore:+A+Semantic-Preserving+Distributed+RDF+Triple+Store)|25| -|[Sketch-based Influence Maximization and Computation: Scaling up with Guarantees](https://doi.org/10.1145/2661829.2662077)|Edith Cohen, Daniel Delling, Thomas Pajor, Renato F. Werneck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sketch-based+Influence+Maximization+and+Computation:+Scaling+up+with+Guarantees)|25| -|[A Practical Fine-grained Approach to Resolving Incoherent OWL 2 DL Terminologies](https://doi.org/10.1145/2661829.2662046)|Jianfeng Du, Guilin Qi, Xuefeng Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Practical+Fine-grained+Approach+to+Resolving+Incoherent+OWL+2+DL+Terminologies)|25| -|[RC-NET: A General Framework for Incorporating Knowledge into Word Representations](https://doi.org/10.1145/2661829.2662038)|Chang Xu, Yalong Bai, Jiang Bian, Bin Gao, Gang Wang, Xiaoguang Liu, TieYan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RC-NET:+A+General+Framework+for+Incorporating+Knowledge+into+Word+Representations)|25| -|[Distributed Stochastic ADMM for Matrix Factorization](https://doi.org/10.1145/2661829.2661996)|ZhiQin Yu, XingJian Shi, Ling Yan, WuJun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Stochastic+ADMM+for+Matrix+Factorization)|25| -|[SharkDB: An In-Memory Column-Oriented Trajectory Storage](https://doi.org/10.1145/2661829.2661878)|Haozhou Wang, Kai Zheng, Jiajie Xu, Bolong Zheng, Xiaofang Zhou, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SharkDB:+An+In-Memory+Column-Oriented+Trajectory+Storage)|25| -|[A Fresh Look on Knowledge Bases: Distilling Named Events from News](https://doi.org/10.1145/2661829.2661984)|Erdal Kuzey, Jilles Vreeken, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fresh+Look+on+Knowledge+Bases:+Distilling+Named+Events+from+News)|25| -|[Question Retrieval with High Quality Answers in Community Question Answering](https://doi.org/10.1145/2661829.2661908)|Kai Zhang, Wei Wu, Haocheng Wu, Zhoujun Li, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question+Retrieval+with+High+Quality+Answers+in+Community+Question+Answering)|24| +|[Identifying Your Customers in Social Networks](https://doi.org/10.1145/2661829.2662057)|ChunTa Lu, HongHan Shuai, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Your+Customers+in+Social+Networks)|24| +|[Controllable Information Sharing for User Accounts Linkage across Multiple Online Social Networks](https://doi.org/10.1145/2661829.2661985)|Yilin Shen, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Controllable+Information+Sharing+for+User+Accounts+Linkage+across+Multiple+Online+Social+Networks)|24| |[Robust and Skew-resistant Parallel Joins in Shared-Nothing Systems](https://doi.org/10.1145/2661829.2661888)|Long Cheng, Spyros Kotoulas, Tomas E. Ward, Georgios Theodoropoulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+and+Skew-resistant+Parallel+Joins+in+Shared-Nothing+Systems)|24| -|[PraDa: Privacy-preserving Data-Deduplication-as-a-Service](https://doi.org/10.1145/2661829.2661863)|Boxiang Dong, Ruilin Liu, Wendy Hui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PraDa:+Privacy-preserving+Data-Deduplication-as-a-Service)|24| -|[On Efficient Meta-Level Features for Effective Text Classification](https://doi.org/10.1145/2661829.2662060)|Sérgio D. Canuto, Thiago Salles, Marcos André Gonçalves, Leonardo Rocha, Gabriel Spada Ramos, Luiz Gonçalves, Thierson Couto Rosa, Wellington Santos Martins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Efficient+Meta-Level+Features+for+Effective+Text+Classification)|24| -|[Hotspot Detection in a Service-Oriented Architecture](https://doi.org/10.1145/2661829.2661991)|Pranay Anchuri, Roshan Sumbaly, Sam Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hotspot+Detection+in+a+Service-Oriented+Architecture)|24| -|[Fair Allocation in Online Markets](https://doi.org/10.1145/2661829.2662011)|Sreenivas Gollapudi, Debmalya Panigrahi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fair+Allocation+in+Online+Markets)|23| -|[Query-Driven Mining of Citation Networks for Patent Citation Retrieval and Recommendation](https://doi.org/10.1145/2661829.2661899)|Parvaz Mahdabi, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-Driven+Mining+of+Citation+Networks+for+Patent+Citation+Retrieval+and+Recommendation)|23| -|[Optimizing Multi-Relational Factorization Models for Multiple Target Relations](https://doi.org/10.1145/2661829.2662052)|Lucas Rêgo Drumond, Ernesto DiazAviles, Lars SchmidtThieme, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Multi-Relational+Factorization+Models+for+Multiple+Target+Relations)|22| -|[Mining and Planning Time-aware Routes from Check-in Data](https://doi.org/10.1145/2661829.2662084)|HsunPing Hsieh, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+and+Planning+Time-aware+Routes+from+Check-in+Data)|22| -|[Effect of Intent Descriptions on Retrieval Evaluation](https://doi.org/10.1145/2661829.2661950)|Emine Yilmaz, Evangelos Kanoulas, Nick Craswell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effect+of+Intent+Descriptions+on+Retrieval+Evaluation)|22| -|[Focusing Decomposition Accuracy by Personalizing Tensor Decomposition (PTD)](https://doi.org/10.1145/2661829.2662051)|Xinsheng Li, Shengyu Huang, Kasim Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Focusing+Decomposition+Accuracy+by+Personalizing+Tensor+Decomposition+(PTD))|22| -|[Efficient Filter Approximation Using the Earth Mover's Distance in Very Large Multimedia Databases with Feature Signatures](https://doi.org/10.1145/2661829.2661877)|Merih Seran Uysal, Christian Beecks, Jochen Schmücking, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Filter+Approximation+Using+the+Earth+Mover's+Distance+in+Very+Large+Multimedia+Databases+with+Feature+Signatures)|22| -|[Exploring Ensemble of Models in Taxonomy-based Cross-Domain Sentiment Classification](https://doi.org/10.1145/2661829.2662071)|CongKai Lin, YangYin Lee, ChiHsin Yu, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Ensemble+of+Models+in+Taxonomy-based+Cross-Domain+Sentiment+Classification)|22| -|[Verifiable UML Artifact-Centric Business Process Models](https://doi.org/10.1145/2661829.2662050)|Diego Calvanese, Marco Montali, Montserrat Estañol, Ernest Teniente||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Verifiable+UML+Artifact-Centric+Business+Process+Models)|22| -|[Deal or deceit: detecting cheating in distribution channels](https://doi.org/10.1145/2661829.2661874)|Kai Shu, Ping Luo, Wan Li, Peifeng Yin, Linpeng Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deal+or+deceit:+detecting+cheating+in+distribution+channels)|22| +|[Modeling Retail Transaction Data for Personalized Shopping Recommendation](https://doi.org/10.1145/2661829.2662020)|Pengfei Wang, Jiafeng Guo, Yanyan Lan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Retail+Transaction+Data+for+Personalized+Shopping+Recommendation)|24| +|[Distributed Graph Summarization](https://doi.org/10.1145/2661829.2661862)|Xingjie Liu, Yuanyuan Tian, Qi He, WangChien Lee, John McPherson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Graph+Summarization)|23| +|[Extending Faceted Search to the General Web](https://doi.org/10.1145/2661829.2661964)|Weize Kong, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extending+Faceted+Search+to+the+General+Web)|23| +|[Online User Location Inference Exploiting Spatiotemporal Correlations in Social Streams](https://doi.org/10.1145/2661829.2662039)|Yuto Yamaguchi, Toshiyuki Amagasa, Hiroyuki Kitagawa, Yohei Ikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+User+Location+Inference+Exploiting+Spatiotemporal+Correlations+in+Social+Streams)|23| +|[Head First: Living Labs for Ad-hoc Search Evaluation](https://doi.org/10.1145/2661829.2661962)|Krisztian Balog, Liadh Kelly, Anne Schuth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Head+First:+Living+Labs+for+Ad-hoc+Search+Evaluation)|23| +|[Revisiting the Divergence Minimization Feedback Model](https://doi.org/10.1145/2661829.2661900)|Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Revisiting+the+Divergence+Minimization+Feedback+Model)|23| +|[Recognizing Humor on Twitter](https://doi.org/10.1145/2661829.2661997)|Renxian Zhang, Naishi Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recognizing+Humor+on+Twitter)|22| +|[Active Learning based Survival Regression for Censored Data](https://doi.org/10.1145/2661829.2662065)|Bhanukiran Vinzamuri, Yan Li, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+based+Survival+Regression+for+Censored+Data)|21| +|[Collaborative Filtering Incorporating Review Text and Co-clusters of Hidden User Communities and Item Groups](https://doi.org/10.1145/2661829.2662059)|Yinqing Xu, Wai Lam, Tianyi Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Filtering+Incorporating+Review+Text+and+Co-clusters+of+Hidden+User+Communities+and+Item+Groups)|21| +|[High Impact Academic Paper Prediction Using Temporal and Topological Features](https://doi.org/10.1145/2661829.2662066)|Feruz Davletov, Ali Selman Aydin, Ali Cakmak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=High+Impact+Academic+Paper+Prediction+Using+Temporal+and+Topological+Features)|21| +|[SemStore: A Semantic-Preserving Distributed RDF Triple Store](https://doi.org/10.1145/2661829.2661876)|Buwen Wu, Yongluan Zhou, Pingpeng Yuan, Hai Jin, Ling Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemStore:+A+Semantic-Preserving+Distributed+RDF+Triple+Store)|21| |[Ranking-based Clustering on General Heterogeneous Information Networks by Network Projection](https://doi.org/10.1145/2661829.2662040)|Chuan Shi, Ran Wang, Yitong Li, Philip S. Yu, Bin Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking-based+Clustering+on+General+Heterogeneous+Information+Networks+by+Network+Projection)|21| -|[EgoCentric: Ego Networks for Knowledge-based Short Text Classification](https://doi.org/10.1145/2661829.2661990)|William Lucia, Elena Ferrari||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EgoCentric:+Ego+Networks+for+Knowledge-based+Short+Text+Classification)|21| -|[Correct Me If I'm Wrong: Fixing Grammatical Errors by Preposition Ranking](https://doi.org/10.1145/2661829.2661942)|Roman Prokofyev, Ruslan Mavlyutov, Martin Grund, Gianluca Demartini, Philippe CudréMauroux||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Correct+Me+If+I'm+Wrong:+Fixing+Grammatical+Errors+by+Preposition+Ranking)|20| -|[Increasing the Responsiveness of Recommended Expert Collaborators for Online Open Projects](https://doi.org/10.1145/2661829.2662032)|Mohammad Y. Allaho, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Increasing+the+Responsiveness+of+Recommended+Expert+Collaborators+for+Online+Open+Projects)|20| -|[Sampling Triples from Restricted Networks using MCMC Strategy](https://doi.org/10.1145/2661829.2662075)|Mahmudur Rahman, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sampling+Triples+from+Restricted+Networks+using+MCMC+Strategy)|20| -|[Relationship Emergence Prediction in Heterogeneous Networks through Dynamic Frequent Subgraph Mining](https://doi.org/10.1145/2661829.2661916)|Yang Liu, Songhua Xu, Lian Duan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relationship+Emergence+Prediction+in+Heterogeneous+Networks+through+Dynamic+Frequent+Subgraph+Mining)|20| -|[MaC: A Probabilistic Framework for Query Answering with Machine-Crowd Collaboration](https://doi.org/10.1145/2661829.2661880)|Chen Jason Zhang, Lei Chen, Yongxin Tong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MaC:+A+Probabilistic+Framework+for+Query+Answering+with+Machine-Crowd+Collaboration)|19| -|[Improving Co-Cluster Quality with Application to Product Recommendations](https://doi.org/10.1145/2661829.2661980)|Michail Vlachos, Francesco Fusco, Charalampos Mavroforakis, Anastasios Kyrillidis, Vassilios G. Vassiliadis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Co-Cluster+Quality+with+Application+to+Product+Recommendations)|19| -|[DFD: Efficient Functional Dependency Discovery](https://doi.org/10.1145/2661829.2661884)|Ziawasch Abedjan, Patrick Schulze, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DFD:+Efficient+Functional+Dependency+Discovery)|19| -|[Exploring Legal Patent Citations for Patent Valuation](https://doi.org/10.1145/2661829.2662029)|Shuting Wang, Zhen Lei, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Legal+Patent+Citations+for+Patent+Valuation)|19| -|[Tell Me What You Want and I Will Tell Others Where You Have Been](https://doi.org/10.1145/2661829.2661866)|Anthony Quattrone, Elham Naghizade, Lars Kulik, Egemen Tanin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tell+Me+What+You+Want+and+I+Will+Tell+Others+Where+You+Have+Been)|19| -|[Pulling Conjunctive Query Equivalence out of the Bag](https://doi.org/10.1145/2661829.2661881)|Stefan Böttcher, Sebastian Link, Lin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pulling+Conjunctive+Query+Equivalence+out+of+the+Bag)|18| -|[Mining Semi-Structured Online Knowledge Bases to Answer Natural Language Questions on Community QA Websites](https://doi.org/10.1145/2661829.2661968)|Parikshit Sondhi, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Semi-Structured+Online+Knowledge+Bases+to+Answer+Natural+Language+Questions+on+Community+QA+Websites)|18| -|[Maximizing Multi-scale Spatial Statistical Discrepancy](https://doi.org/10.1145/2661829.2662007)|Weishan Dong, Renjie Yao, Chunyang Ma, Changsheng Li, Lei Shi, Lu Wang, Yu Wang, Peng Gao, Junchi Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximizing+Multi-scale+Spatial+Statistical+Discrepancy)|18| -|["Strength Lies in Differences": Diversifying Friends for Recommendations through Subspace Clustering](https://doi.org/10.1145/2661829.2662026)|Eirini Ntoutsi, Kostas Stefanidis, Katharina Rausch, HansPeter Kriegel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Strength+Lies+in+Differences":+Diversifying+Friends+for+Recommendations+through+Subspace+Clustering)|18| -|[Succinct Queries for Linking and Tracking News in Social Media](https://doi.org/10.1145/2661829.2661963)|Luchen Tan, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Succinct+Queries+for+Linking+and+Tracking+News+in+Social+Media)|18| -|[Ranking Sentiment Explanations for Review Summarization Using Dual Decomposition](https://doi.org/10.1145/2661829.2662048)|Lei Fang, Qiao Qian, Minlie Huang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Sentiment+Explanations+for+Review+Summarization+Using+Dual+Decomposition)|18| -|[Head First: Living Labs for Ad-hoc Search Evaluation](https://doi.org/10.1145/2661829.2661962)|Krisztian Balog, Liadh Kelly, Anne Schuth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Head+First:+Living+Labs+for+Ad-hoc+Search+Evaluation)|17| -|[Medical Semantic Similarity with a Neural Language Model](https://doi.org/10.1145/2661829.2661974)|Lance De Vine, Guido Zuccon, Bevan Koopman, Laurianne Sitbon, Peter Bruza||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Medical+Semantic+Similarity+with+a+Neural+Language+Model)|17| -|[On the Importance of Venue-Dependent Features for Learning to Rank Contextual Suggestions](https://doi.org/10.1145/2661829.2661956)|Romain Deveaud, MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Importance+of+Venue-Dependent+Features+for+Learning+to+Rank+Contextual+Suggestions)|17| -|[Axiomatic Analysis of Cross-Language Information Retrieval](https://doi.org/10.1145/2661829.2661915)|Razieh Rahimi, Azadeh Shakery, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Axiomatic+Analysis+of+Cross-Language+Information+Retrieval)|17| -|[Semantic Topology](https://doi.org/10.1145/2661829.2662028)|Jussi Karlgren, Martin Bohman, Ariel Ekgren, Gabriel Isheden, Emelie Kullmann, David Nilsson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Topology)|17| -|[DEESSE: entity-Driven Exploratory and sErendipitous Search SystEm](https://doi.org/10.1145/2661829.2661853)|Olivier Van Laere, Ilaria Bordino, Yelena Mejova, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DEESSE:+entity-Driven+Exploratory+and+sErendipitous+Search+SystEm)|17| -|[ExpressQ: Identifying Keyword Context and Search Target in Relational Keyword Queries](https://doi.org/10.1145/2661829.2661870)|Zhong Zeng, Zhifeng Bao, Thuy Ngoc Le, MongLi Lee, Tok Wang Ling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ExpressQ:+Identifying+Keyword+Context+and+Search+Target+in+Relational+Keyword+Queries)|16| -|[How Many Folders Do You Really Need?: Classifying Email into a Handful of Categories](https://doi.org/10.1145/2661829.2662018)|Mihajlo Grbovic, Guy Halawi, Zohar Shay Karnin, Yoelle Maarek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+Many+Folders+Do+You+Really+Need?:+Classifying+Email+into+a+Handful+of+Categories)|16| -|[Computing Multi-Relational Sufficient Statistics for Large Databases](https://doi.org/10.1145/2661829.2662010)|Zhensong Qian, Oliver Schulte, Yan Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+Multi-Relational+Sufficient+Statistics+for+Large+Databases)|16| -|[Identification of Answer-Seeking Questions in Arabic Microblogs](https://doi.org/10.1145/2661829.2661959)|Maram Hasanain, Tamer Elsayed, Walid Magdy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identification+of+Answer-Seeking+Questions+in+Arabic+Microblogs)|16| -|[Revisiting the Divergence Minimization Feedback Model](https://doi.org/10.1145/2661829.2661900)|Yuanhua Lv, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Revisiting+the+Divergence+Minimization+Feedback+Model)|16| -|[Towards Pathway Variation Identification: Aligning Patient Records with a Care Pathway](https://doi.org/10.1145/2661829.2662013)|Haifeng Liu, Yang Liu, Xiang Li, Guo Tong Xie, Geetika T. Lakshmanan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Pathway+Variation+Identification:+Aligning+Patient+Records+with+a+Care+Pathway)|15| -|[Simple Arabic Stemmer](https://doi.org/10.1145/2661829.2661972)|Mohammed Algarni, Brent Martin, Tim Bell, Kourosh Neshatian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simple+Arabic+Stemmer)|15| -|[Estimating the Number and Sizes of Fuzzy-Duplicate Clusters](https://doi.org/10.1145/2661829.2661885)|Arvid Heise, Gjergji Kasneci, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+the+Number+and+Sizes+of+Fuzzy-Duplicate+Clusters)|14| -|[Travel distance versus navigation complexity: a study on different spatial queries on road networks](https://doi.org/10.1145/2661829.2661861)|Jie Shao, Lars Kulik, Egemen Tanin, Long Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Travel+distance+versus+navigation+complexity:+a+study+on+different+spatial+queries+on+road+networks)|14| -|[Identifying Time Intervals of Interest to Queries](https://doi.org/10.1145/2661829.2661927)|Dhruv Gupta, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Time+Intervals+of+Interest+to+Queries)|14| -|[Exploiting Knowledge Structure for Proximity-aware Movie Retrieval Model](https://doi.org/10.1145/2661829.2661949)|Sansung Kim, Keejun Han, Mun Yong Yi, Sinhee Cho, Seongchan Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Knowledge+Structure+for+Proximity-aware+Movie+Retrieval+Model)|14| -|[Query Performance Prediction for Aspect Weighting in Search Result Diversification](https://doi.org/10.1145/2661829.2661975)|Ahmet Murat Ozdemiray, Ismail Sengor Altingovde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Performance+Prediction+for+Aspect+Weighting+in+Search+Result+Diversification)|14| -|[Log-Bilinear Document Language Model for Ad-hoc Information Retrieval](https://doi.org/10.1145/2661829.2661919)|Xinhui Tu, Jing Luo, Bo Li, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Log-Bilinear+Document+Language+Model+for+Ad-hoc+Information+Retrieval)|14| -|[What is the Shape of a Cluster?: Structural Comparisons of Document Clusters](https://doi.org/10.1145/2661829.2662001)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+the+Shape+of+a+Cluster?:+Structural+Comparisons+of+Document+Clusters)|14| -|[Dynamic Clustering of Contextual Multi-Armed Bandits](https://doi.org/10.1145/2661829.2662063)|Trong T. Nguyen, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+Clustering+of+Contextual+Multi-Armed+Bandits)|14| -|[Active Exploration in Networks: Using Probabilistic Relationships for Learning and Inference](https://doi.org/10.1145/2661829.2662072)|Joseph John Pfeiffer III, Jennifer Neville, Paul N. Bennett||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Exploration+in+Networks:+Using+Probabilistic+Relationships+for+Learning+and+Inference)|13| -|[Distributed Graph Summarization](https://doi.org/10.1145/2661829.2661862)|Xingjie Liu, Yuanyuan Tian, Qi He, WangChien Lee, John McPherson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Graph+Summarization)|13| -|[Scalable Privacy-Preserving Record Linkage for Multiple Databases](https://doi.org/10.1145/2661829.2661875)|Dinusha Vatsalan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Privacy-Preserving+Record+Linkage+for+Multiple+Databases)|13| -|[Parameter Tuning with User Models: Influencing Aggregate User Behavior in Cluster Based Retrieval Systems](https://doi.org/10.1145/2661829.2661911)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parameter+Tuning+with+User+Models:+Influencing+Aggregate+User+Behavior+in+Cluster+Based+Retrieval+Systems)|13| -|[How People Use the Web in Large Indoor Spaces](https://doi.org/10.1145/2661829.2661929)|Yongli Ren, Martin Tomko, Kevin Ong, Mark Sanderson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+People+Use+the+Web+in+Large+Indoor+Spaces)|13| -|[Query Performance Prediction By Considering Score Magnitude and Variance Together](https://doi.org/10.1145/2661829.2661906)|Yongquan Tao, Shengli Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Performance+Prediction+By+Considering+Score+Magnitude+and+Variance+Together)|13| -|[A Generative Model for Generating Relevance Labels from Human Judgments and Click-Logs](https://doi.org/10.1145/2661829.2661897)|Xugang Ye, Jingjing Li, Zijie Qi, Bingyue Peng, Dan Massey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Generative+Model+for+Generating+Relevance+Labels+from+Human+Judgments+and+Click-Logs)|13| -|[Unsupervised Feature Selection for Multi-View Clustering on Text-Image Web News Data](https://doi.org/10.1145/2661829.2661993)|Mingjie Qian, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+for+Multi-View+Clustering+on+Text-Image+Web+News+Data)|13| -|[Exploit Latent Dirichlet Allocation for One-Class Collaborative Filtering](https://doi.org/10.1145/2661829.2661992)|Haijun Zhang, Zhoujun Li, Yan Chen, Xiaoming Zhang, Senzhang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploit+Latent+Dirichlet+Allocation+for+One-Class+Collaborative+Filtering)|13| -|[VFDS: An Application to Generate Fast Sample Databases](https://doi.org/10.1145/2661829.2661845)|Teodora Sandra Buda, Thomas Cerqueus, John Murphy, Morten Kristiansen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=VFDS:+An+Application+to+Generate+Fast+Sample+Databases)|13| -|[Distance or Coverage?: Retrieving Knowledge-Rich Documents From Enterprise Text Collections](https://doi.org/10.1145/2661829.2661865)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distance+or+Coverage?:+Retrieving+Knowledge-Rich+Documents+From+Enterprise+Text+Collections)|12| -|[Hashcube: A Data Structure for Space- and Query-Efficient Skycube Compression](https://doi.org/10.1145/2661829.2661891)|Kenneth S. Bøgh, Sean Chester, Darius Sidlauskas, Ira Assent||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashcube:+A+Data+Structure+for+Space-+and+Query-Efficient+Skycube+Compression)|12| -|[Phrase Query Optimization on Inverted Indexes](https://doi.org/10.1145/2661829.2661928)|Avishek Anand, Ida Mele, Srikanta J. Bedathur, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Phrase+Query+Optimization+on+Inverted+Indexes)|12| -|[Modelling Complex Relevance Spaces with Copulas](https://doi.org/10.1145/2661829.2661925)|Carsten Eickhoff, Arjen P. de Vries||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+Complex+Relevance+Spaces+with+Copulas)|12| -|[Vertical-Aware Click Model-Based Effectiveness Metrics](https://doi.org/10.1145/2661829.2661944)|Ilya Markov, Eugene Kharitonov, Vadim Nikulin, Pavel Serdyukov, Maarten de Rijke, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Vertical-Aware+Click+Model-Based+Effectiveness+Metrics)|12| -|[Sparse Semantic Hashing for Efficient Large Scale Similarity Search](https://doi.org/10.1145/2661829.2662145)|Qifan Wang, Bin Shen, Zhiwei Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sparse+Semantic+Hashing+for+Efficient+Large+Scale+Similarity+Search)|12| -|[A Meta-reasoner to Rule Them All: Automated Selection of OWL Reasoners Based on Efficiency](https://doi.org/10.1145/2661829.2662079)|YongBin Kang, Shonali Krishnaswamy, YuanFang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Meta-reasoner+to+Rule+Them+All:+Automated+Selection+of+OWL+Reasoners+Based+on+Efficiency)|12| -|[Improving Recommendation Accuracy by Combining Trust Communities and Collaborative Filtering](https://doi.org/10.1145/2661829.2662085)|Xiao Ma, Hongwei Lu, Zaobin Gan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Recommendation+Accuracy+by+Combining+Trust+Communities+and+Collaborative+Filtering)|12| -|[Knowledge Management for Keyword Search over Data Graphs](https://doi.org/10.1145/2661829.2661846)|Yosi Mass, Yehoshua Sagiv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge+Management+for+Keyword+Search+over+Data+Graphs)|12| -|[Forest-Based Dynamic Sorted Neighborhood Indexing for Real-Time Entity Resolution](https://doi.org/10.1145/2661829.2661869)|Banda Ramadan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forest-Based+Dynamic+Sorted+Neighborhood+Indexing+for+Real-Time+Entity+Resolution)|11| -|[Exploring Tag-Free RFID-Based Passive Localization and Tracking via Learning-Based Probabilistic Approaches](https://doi.org/10.1145/2661829.2661873)|Lina Yao, Wenjie Ruan, Quan Z. Sheng, Xue Li, Nickolas J. G. Falkner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Tag-Free+RFID-Based+Passive+Localization+and+Tracking+via+Learning-Based+Probabilistic+Approaches)|11| -|[Size and Source Matter: Understanding Inconsistencies in Test Collection-Based Evaluation](https://doi.org/10.1145/2661829.2661945)|Timothy Jones, Andrew Turpin, Stefano Mizzaro, Falk Scholer, Mark Sanderson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Size+and+Source+Matter:+Understanding+Inconsistencies+in+Test+Collection-Based+Evaluation)|11| -|[Multi-document Hyperedge-based Ranking for Text Summarization](https://doi.org/10.1145/2661829.2662036)|Abdelghani Bellaachia, Mohammed AlDhelaan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-document+Hyperedge-based+Ranking+for+Text+Summarization)|11| -|[Identifying Latent Study Habits by Mining Learner Behavior Patterns in Massive Open Online Courses](https://doi.org/10.1145/2661829.2662033)|Miaomiao Wen, Carolyn Penstein Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Latent+Study+Habits+by+Mining+Learner+Behavior+Patterns+in+Massive+Open+Online+Courses)|11| +|[Verifiable UML Artifact-Centric Business Process Models](https://doi.org/10.1145/2661829.2662050)|Diego Calvanese, Marco Montali, Montserrat Estañol, Ernest Teniente||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Verifiable+UML+Artifact-Centric+Business+Process+Models)|21| +|[Competitive Game Designs for Improving the Cost Effectiveness of Crowdsourcing](https://doi.org/10.1145/2661829.2661946)|Markus Rokicki, Sergiu Chelaru, Sergej Zerr, Stefan Siersdorfer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Competitive+Game+Designs+for+Improving+the+Cost+Effectiveness+of+Crowdsourcing)|21| +|[Query Performance Prediction By Considering Score Magnitude and Variance Together](https://doi.org/10.1145/2661829.2661906)|Yongquan Tao, Shengli Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Performance+Prediction+By+Considering+Score+Magnitude+and+Variance+Together)|21| +|[Modeling Topic Diffusion in Multi-Relational Bibliographic Information Networks](https://doi.org/10.1145/2661829.2662000)|Huan Gui, Yizhou Sun, Jiawei Han, George Brova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Topic+Diffusion+in+Multi-Relational+Bibliographic+Information+Networks)|20| +|[Incremental Update Summarization: Adaptive Sentence Selection based on Prevalence and Novelty](https://doi.org/10.1145/2661829.2661951)|Richard McCreadie, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+Update+Summarization:+Adaptive+Sentence+Selection+based+on+Prevalence+and+Novelty)|19| +|[CAST: A Context-Aware Story-Teller for Streaming Social Content](https://doi.org/10.1145/2661829.2661859)|Pei Lee, Laks V. S. Lakshmanan, Evangelos E. Milios||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CAST:+A+Context-Aware+Story-Teller+for+Streaming+Social+Content)|19| +|[Identifying Time Intervals of Interest to Queries](https://doi.org/10.1145/2661829.2661927)|Dhruv Gupta, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Time+Intervals+of+Interest+to+Queries)|19| +|[Improving Term Weighting for Community Question Answering Search Using Syntactic Analysis](https://doi.org/10.1145/2661829.2661901)|David Carmel, Avihai Mejer, Yuval Pinter, Idan Szpektor||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Term+Weighting+for+Community+Question+Answering+Search+Using+Syntactic+Analysis)|18| +|[Truth Discovery in Crowdsourced Detection of Spatial Events](https://doi.org/10.1145/2661829.2662003)|Wentao Robin Ouyang, Mani B. Srivastava, Alice Toniolo, Timothy J. Norman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+in+Crowdsourced+Detection+of+Spatial+Events)|18| +|[Multi-task Sparse Structure Learning](https://doi.org/10.1145/2661829.2662091)|André R. Gonçalves, Puja Das, Soumyadeep Chatterjee, Vidyashankar Sivakumar, Fernando J. Von Zuben, Arindam Banerjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-task+Sparse+Structure+Learning)|18| +|[The Effects of Vertical Rank and Border on Aggregated Search Coherence and Search Behavior](https://doi.org/10.1145/2661829.2661930)|Jaime Arguello, Robert G. Capra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Effects+of+Vertical+Rank+and+Border+on+Aggregated+Search+Coherence+and+Search+Behavior)|18| +|[What a Nasty Day: Exploring Mood-Weather Relationship from Twitter](https://doi.org/10.1145/2661829.2662090)|Jiwei Li, Xun Wang, Eduard H. Hovy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+a+Nasty+Day:+Exploring+Mood-Weather+Relationship+from+Twitter)|18| +|[Mining and Planning Time-aware Routes from Check-in Data](https://doi.org/10.1145/2661829.2662084)|HsunPing Hsieh, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+and+Planning+Time-aware+Routes+from+Check-in+Data)|16| +|[SocialTransfer: Transferring Social Knowledge for Cold-Start Cowdsourcing](https://doi.org/10.1145/2661829.2661871)|Zhou Zhao, James Cheng, Furu Wei, Ming Zhou, Wilfred Ng, Yingjun Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SocialTransfer:+Transferring+Social+Knowledge+for+Cold-Start+Cowdsourcing)|16| +|[Predicting the Popularity of Online Serials with Autoregressive Models](https://doi.org/10.1145/2661829.2662055)|Biao Chang, Hengshu Zhu, Yong Ge, Enhong Chen, Hui Xiong, Chang Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+the+Popularity+of+Online+Serials+with+Autoregressive+Models)|16| +|[Improving Recommendation Accuracy by Combining Trust Communities and Collaborative Filtering](https://doi.org/10.1145/2661829.2662085)|Xiao Ma, Hongwei Lu, Zaobin Gan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Recommendation+Accuracy+by+Combining+Trust+Communities+and+Collaborative+Filtering)|16| +|[A Bootstrapping Based Refinement Framework for Mining Opinion Words and Targets](https://doi.org/10.1145/2661829.2662069)|Qiyun Zhao, Hao Wang, Pin Lv, Chen Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Bootstrapping+Based+Refinement+Framework+for+Mining+Opinion+Words+and+Targets)|16| +|[A Retrievability Analysis: Exploring the Relationship Between Retrieval Bias and Retrieval Performance](https://doi.org/10.1145/2661829.2661948)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Retrievability+Analysis:+Exploring+the+Relationship+Between+Retrieval+Bias+and+Retrieval+Performance)|15| +|[Online Exploration for Detecting Shifts in Fresh Intent](https://doi.org/10.1145/2661829.2661947)|Damien Lefortier, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Exploration+for+Detecting+Shifts+in+Fresh+Intent)|15| +|[Efficient Filter Approximation Using the Earth Mover's Distance in Very Large Multimedia Databases with Feature Signatures](https://doi.org/10.1145/2661829.2661877)|Merih Seran Uysal, Christian Beecks, Jochen Schmücking, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Filter+Approximation+Using+the+Earth+Mover's+Distance+in+Very+Large+Multimedia+Databases+with+Feature+Signatures)|15| +|[Structure Learning via Parameter Learning](https://doi.org/10.1145/2661829.2662022)|William Yang Wang, Kathryn Mazaitis, William W. Cohen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structure+Learning+via+Parameter+Learning)|15| +|[Tracking Temporal Dynamics of Purchase Decisions via Hierarchical Time-Rescaling Model](https://doi.org/10.1145/2661829.2662012)|Hideaki Kim, Noriko Takaya, Hiroshi Sawada||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Temporal+Dynamics+of+Purchase+Decisions+via+Hierarchical+Time-Rescaling+Model)|15| +|[Cross-Modality Submodular Dictionary Learning for Information Retrieval](https://doi.org/10.1145/2661829.2661926)|Fan Zhu, Ling Shao, Mengyang Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Modality+Submodular+Dictionary+Learning+for+Information+Retrieval)|15| +|[Forest-Based Dynamic Sorted Neighborhood Indexing for Real-Time Entity Resolution](https://doi.org/10.1145/2661829.2661869)|Banda Ramadan, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forest-Based+Dynamic+Sorted+Neighborhood+Indexing+for+Real-Time+Entity+Resolution)|15| +|[Focusing Decomposition Accuracy by Personalizing Tensor Decomposition (PTD)](https://doi.org/10.1145/2661829.2662051)|Xinsheng Li, Shengyu Huang, Kasim Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Focusing+Decomposition+Accuracy+by+Personalizing+Tensor+Decomposition+(PTD))|14| +|["Picture the scene...";: Visually Summarising Social Media Events](https://doi.org/10.1145/2661829.2661923)|Philip J. McParlane, Andrew James McMinn, Joemon M. Jose||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Picture+the+scene...";:+Visually+Summarising+Social+Media+Events)|14| +|[Pushing the Envelope in Graph Compression](https://doi.org/10.1145/2661829.2662053)|Panagiotis Liakos, Katia Papakonstantinopoulou, Michael Sioutis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pushing+the+Envelope+in+Graph+Compression)|14| +|[Scalable Vaccine Distribution in Large Graphs given Uncertain Data](https://doi.org/10.1145/2661829.2662088)|Yao Zhang, B. Aditya Prakash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Vaccine+Distribution+in+Large+Graphs+given+Uncertain+Data)|14| +|[Adding Robustness to Support Vector Machines Against Adversarial Reverse Engineering](https://doi.org/10.1145/2661829.2662047)|Ibrahim M. Alabdulmohsin, Xin Gao, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adding+Robustness+to+Support+Vector+Machines+Against+Adversarial+Reverse+Engineering)|13| +|[Narrow or Broad?: Estimating Subjective Specificity in Exploratory Search](https://doi.org/10.1145/2661829.2661904)|Kumaripaba Athukorala, Antti Oulasvirta, Dorota Glowacka, Jilles Vreeken, Giulio Jacucci||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Narrow+or+Broad?:+Estimating+Subjective+Specificity+in+Exploratory+Search)|13| +|[Automatic Social Circle Detection Using Multi-View Clustering](https://doi.org/10.1145/2661829.2661973)|Yuhao Yang, Chao Lan, Xiaoli Li, Bo Luo, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Social+Circle+Detection+Using+Multi-View+Clustering)|13| +|[Exploring Ensemble of Models in Taxonomy-based Cross-Domain Sentiment Classification](https://doi.org/10.1145/2661829.2662071)|CongKai Lin, YangYin Lee, ChiHsin Yu, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Ensemble+of+Models+in+Taxonomy-based+Cross-Domain+Sentiment+Classification)|13| +|[Distributed Stochastic ADMM for Matrix Factorization](https://doi.org/10.1145/2661829.2661996)|ZhiQin Yu, XingJian Shi, Ling Yan, WuJun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Stochastic+ADMM+for+Matrix+Factorization)|13| +|[Deviation-Based Contextual SLIM Recommenders](https://doi.org/10.1145/2661829.2661987)|Yong Zheng, Bamshad Mobasher, Robin D. Burke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deviation-Based+Contextual+SLIM+Recommenders)|12| +|[Predicting Search Task Difficulty at Different Search Stages](https://doi.org/10.1145/2661829.2661939)|Chang Liu, Jingjing Liu, Nicholas J. Belkin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Search+Task+Difficulty+at+Different+Search+Stages)|12| +|[HGMF: Hierarchical Group Matrix Factorization for Collaborative Recommendation](https://doi.org/10.1145/2661829.2662021)|Xin Wang, Weike Pan, Congfu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HGMF:+Hierarchical+Group+Matrix+Factorization+for+Collaborative+Recommendation)|12| +|[Efficient Subgraph Skyline Search Over Large Graphs](https://doi.org/10.1145/2661829.2662037)|Weiguo Zheng, Lei Zou, Xiang Lian, Liang Hong, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Subgraph+Skyline+Search+Over+Large+Graphs)|12| +|[ExpressQ: Identifying Keyword Context and Search Target in Relational Keyword Queries](https://doi.org/10.1145/2661829.2661870)|Zhong Zeng, Zhifeng Bao, Thuy Ngoc Le, MongLi Lee, Tok Wang Ling||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ExpressQ:+Identifying+Keyword+Context+and+Search+Target+in+Relational+Keyword+Queries)|11| +|[NCR: A Scalable Network-Based Approach to Co-Ranking in Question-and-Answer Sites](https://doi.org/10.1145/2661829.2661978)|Jingyuan Zhang, Xiangnan Kong, Roger Jie Luo, Yi Chang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=NCR:+A+Scalable+Network-Based+Approach+to+Co-Ranking+in+Question-and-Answer+Sites)|11| +|[Sampling Triples from Restricted Networks using MCMC Strategy](https://doi.org/10.1145/2661829.2662075)|Mahmudur Rahman, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sampling+Triples+from+Restricted+Networks+using+MCMC+Strategy)|11| +|[Within-Network Classification Using Radius-Constrained Neighborhood Patterns](https://doi.org/10.1145/2661829.2661979)|Jialong Han, JiRong Wen, Jian Pei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Within-Network+Classification+Using+Radius-Constrained+Neighborhood+Patterns)|11| +|[Query-Driven Mining of Citation Networks for Patent Citation Retrieval and Recommendation](https://doi.org/10.1145/2661829.2661899)|Parvaz Mahdabi, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-Driven+Mining+of+Citation+Networks+for+Patent+Citation+Retrieval+and+Recommendation)|11| |[TensorDB: In-Database Tensor Manipulation with Tensor-Relational Query Plans](https://doi.org/10.1145/2661829.2661842)|Mijung Kim, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TensorDB:+In-Database+Tensor+Manipulation+with+Tensor-Relational+Query+Plans)|11| -|[Negative FaceBlurring: A Privacy-by-Design Approach to Visual Lifelogging with Google Glass](https://doi.org/10.1145/2661829.2661841)|Tengqi Ye, Brian Moynagh, Rami Albatal, Cathal Gurrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Negative+FaceBlurring:+A+Privacy-by-Design+Approach+to+Visual+Lifelogging+with+Google+Glass)|11| -|[TweetMogaz v2: Identifying News Stories in Social Media](https://doi.org/10.1145/2661829.2661843)|Eslam Elsawy, Moamen Mokhtar, Walid Magdy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TweetMogaz+v2:+Identifying+News+Stories+in+Social+Media)|11| -|[Manual Annotation of Semi-Structured Documents for Entity-Linking](https://doi.org/10.1145/2661829.2661854)|Salvatore Trani, Diego Ceccarelli, Claudio Lucchese, Salvatore Orlando, Raffaele Perego||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Manual+Annotation+of+Semi-Structured+Documents+for+Entity-Linking)|11| -|[SmartVenues: Recommending Popular and Personalised Venues in a City](https://doi.org/10.1145/2661829.2661855)|Romain Deveaud, MDyaa Albakour, Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SmartVenues:+Recommending+Popular+and+Personalised+Venues+in+a+City)|11| -|[Exploring Document Collections with Topic Frames](https://doi.org/10.1145/2661829.2661857)|Alexander Hinneburg, Frank Rosner, Stefan Peßler, Christian Oberländer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Document+Collections+with+Topic+Frames)|11| -|[CLIR for Informal Content in Arabic Forum Posts](https://doi.org/10.1145/2661829.2661924)|Mossaab Bagdouri, Douglas W. Oard, Vittorio Castelli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CLIR+for+Informal+Content+in+Arabic+Forum+Posts)|10| -|[Exploring Shared Subspace and Joint Sparsity for Canonical Correlation Analysis](https://doi.org/10.1145/2661829.2661970)|Liang Tao, Horace HoShing Ip, Yinglin Wang, Xin Shu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Shared+Subspace+and+Joint+Sparsity+for+Canonical+Correlation+Analysis)|10| -|[Spatial Verification for Scalable Mobile Image Retrieval](https://doi.org/10.1145/2661829.2661971)|Xiyu Yang, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+Verification+for+Scalable+Mobile+Image+Retrieval)|10| -|[Using Local Information to Significantly Improve Classification Performance](https://doi.org/10.1145/2661829.2662045)|Wei Liu, Dong Lee, Rao Kotagiri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Local+Information+to+Significantly+Improve+Classification+Performance)|10| -|[A Problem-Action Relation Extraction Based on Causality Patterns of Clinical Events in Discharge Summaries](https://doi.org/10.1145/2661829.2662080)|JaeWook Seol, SeungHyeon Jo, Wangjin Yi, Jinwook Choi, KyungSoon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Problem-Action+Relation+Extraction+Based+on+Causality+Patterns+of+Clinical+Events+in+Discharge+Summaries)|10| -|[Constrained Question Recommendation in MOOCs via Submodularity](https://doi.org/10.1145/2661829.2662089)|Diyi Yang, Jingbo Shang, Carolyn Penstein Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constrained+Question+Recommendation+in+MOOCs+via+Submodularity)|10| -|[AESTHETICS: Analytics with Strings, Things, and Cats](https://doi.org/10.1145/2661829.2661835)|Johannes Hoffart, Dragan Milchevski, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AESTHETICS:+Analytics+with+Strings,+Things,+and+Cats)|10| -|[iMiner: Mining Inventory Data for Intelligent Management](https://doi.org/10.1145/2661829.2661848)|Lei Li, Chao Shen, Long Wang, Li Zheng, Yexi Jiang, Liang Tang, Hongtai Li, Longhui Zhang, Chunqiu Zeng, Tao Li, Jun Tang, Dong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iMiner:+Mining+Inventory+Data+for+Intelligent+Management)|10| -|[CONDOR: A System for CONstraint DiscOvery and Repair](https://doi.org/10.1145/2661829.2661858)|Joshua Segeren, Dhruv Gairola, Fei Chiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONDOR:+A+System+for+CONstraint+DiscOvery+and+Repair)|10| -|[Indexing Linked Data in a Wireless Broadcast System with 3D Hilbert Space-Filling Curves](https://doi.org/10.1145/2661829.2661890)|Yongrui Qin, Quan Z. Sheng, Nickolas J. G. Falkner, Wei Emma Zhang, Hua Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexing+Linked+Data+in+a+Wireless+Broadcast+System+with+3D+Hilbert+Space-Filling+Curves)|9| -|[Towards Efficient Dissemination of Linked Data in the Internet of Things](https://doi.org/10.1145/2661829.2661889)|Yongrui Qin, Quan Z. Sheng, Nickolas J. G. Falkner, Ali Shemshadi, Edward Curry||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Efficient+Dissemination+of+Linked+Data+in+the+Internet+of+Things)|9| -|[Probabilistic Classifier Chain Inference via Gibbs Sampling](https://doi.org/10.1145/2661829.2661917)|Li Li, Longkai Zhang, Guangyi Li, Houfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Classifier+Chain+Inference+via+Gibbs+Sampling)|9| -|[Aligning Vertical Collection Relevance with User Intent](https://doi.org/10.1145/2661829.2661941)|Ke Zhou, Thomas Demeester, Dong Nguyen, Djoerd Hiemstra, Dolf Trieschnigg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aligning+Vertical+Collection+Relevance+with+User+Intent)|9| -|[Generalized Bias-Variance Evaluation of TREC Participated Systems](https://doi.org/10.1145/2661829.2661934)|Peng Zhang, Linxue Hao, Dawei Song, Jun Wang, Yuexian Hou, Bin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalized+Bias-Variance+Evaluation+of+TREC+Participated+Systems)|9| -|[Non-independent Cascade Formation: Temporal and Spatial Effects](https://doi.org/10.1145/2661829.2662035)|Biru Cui, Shanchieh Jay Yang, Christopher Homan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-independent+Cascade+Formation:+Temporal+and+Spatial+Effects)|9| -|[Nonlinear Classification via Linear SVMs and Multi-Task Learning](https://doi.org/10.1145/2661829.2662068)|Xue Mao, Ou Wu, Weiming Hu, Peter O'Donovan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nonlinear+Classification+via+Linear+SVMs+and+Multi-Task+Learning)|9| -|[AMiner-mini: A People Search Engine for University](https://doi.org/10.1145/2661829.2661852)|Jingyuan Liu, Debing Liu, Xingyu Yan, Li Dong, Ting Zeng, Yutao Zhang, Jie Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AMiner-mini:+A+People+Search+Engine+for+University)|9| -|[GPQ: Directly Optimizing Q-measure based on Genetic Programming](https://doi.org/10.1145/2661829.2661932)|Yuan Lin, Hongfei Lin, Ping Zhang, Bo Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPQ:+Directly+Optimizing+Q-measure+based+on+Genetic+Programming)|8| -|[Supervised Hashing with Soft Constraints](https://doi.org/10.1145/2661829.2661937)|Cong Leng, Jian Cheng, Jiaxiang Wu, Xi Zhang, Hanqing Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Hashing+with+Soft+Constraints)|8| -|[CONR: A Novel Method for Sentiment Word Identification](https://doi.org/10.1145/2661829.2662015)|Jiguang Liang, Xiaofei Zhou, Yue Hu, Li Guo, Shuo Bai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONR:+A+Novel+Method+for+Sentiment+Word+Identification)|8| -|[Enterprise Discussion Analysis](https://doi.org/10.1145/2661829.2661999)|Sara Rosenthal, Ashish Jagmohan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enterprise+Discussion+Analysis)|8| +|[Predictability of Distrust with Interaction Data](https://doi.org/10.1145/2661829.2661988)|Jiliang Tang, Xia Hu, Yi Chang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predictability+of+Distrust+with+Interaction+Data)|10| +|[People Search within an Online Social Network: Large Scale Analysis of Facebook Graph Search Query Logs](https://doi.org/10.1145/2661829.2661967)|Nikita V. Spirin, Junfeng He, Mike Develin, Karrie G. Karahalios, Maxime Boucher||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=People+Search+within+an+Online+Social+Network:+Large+Scale+Analysis+of+Facebook+Graph+Search+Query+Logs)|10| +|[Adaptive Pairwise Preference Learning for Collaborative Recommendation with Implicit Feedbacks](https://doi.org/10.1145/2661829.2661986)|Hao Zhong, Weike Pan, Congfu Xu, Zhi Yin, Zhong Ming||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Pairwise+Preference+Learning+for+Collaborative+Recommendation+with+Implicit+Feedbacks)|10| +|[Rubato DB: A Highly Scalable Staged Grid Database System for OLTP and Big Data Applications](https://doi.org/10.1145/2661829.2661879)|LiYan Yuan, Lengdong Wu, JiaHuai You, Yan Chi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rubato+DB:+A+Highly+Scalable+Staged+Grid+Database+System+for+OLTP+and+Big+Data+Applications)|9| +|[Search Result Diversification via Filling Up Multiple Knapsacks](https://doi.org/10.1145/2661829.2661933)|Haitao Yu, Fuji Ren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+Result+Diversification+via+Filling+Up+Multiple+Knapsacks)|9| +|[Improving Co-Cluster Quality with Application to Product Recommendations](https://doi.org/10.1145/2661829.2661980)|Michail Vlachos, Francesco Fusco, Charalampos Mavroforakis, Anastasios Kyrillidis, Vassilios G. Vassiliadis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Co-Cluster+Quality+with+Application+to+Product+Recommendations)|9| +|[Similarity Search using Concept Graphs](https://doi.org/10.1145/2661829.2661995)|Rakesh Agrawal, Sreenivas Gollapudi, Anitha Kannan, Krishnaram Kenthapadi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity+Search+using+Concept+Graphs)|9| +|[Latent Aspect Mining via Exploring Sparsity and Intrinsic Information](https://doi.org/10.1145/2661829.2662062)|Yinqing Xu, Tianyi Lin, Wai Lam, Zirui Zhou, Hong Cheng, Anthony ManCho So||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latent+Aspect+Mining+via+Exploring+Sparsity+and+Intrinsic+Information)|9| +|[A Practical Fine-grained Approach to Resolving Incoherent OWL 2 DL Terminologies](https://doi.org/10.1145/2661829.2662046)|Jianfeng Du, Guilin Qi, Xuefeng Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Practical+Fine-grained+Approach+to+Resolving+Incoherent+OWL+2+DL+Terminologies)|9| +|[EgoCentric: Ego Networks for Knowledge-based Short Text Classification](https://doi.org/10.1145/2661829.2661990)|William Lucia, Elena Ferrari||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EgoCentric:+Ego+Networks+for+Knowledge-based+Short+Text+Classification)|9| +|[A Cross-Lingual Joint Aspect/Sentiment Model for Sentiment Analysis](https://doi.org/10.1145/2661829.2662019)|Zheng Lin, Xiaolong Jin, Xueke Xu, Weiping Wang, Xueqi Cheng, Yuanzhuo Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cross-Lingual+Joint+Aspect/Sentiment+Model+for+Sentiment+Analysis)|9| +|[Active Learning for Streaming Networked Data](https://doi.org/10.1145/2661829.2661981)|Zhilin Yang, Jie Tang, Yutao Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+for+Streaming+Networked+Data)|9| +|[Fast, Accurate, and Space-efficient Tracking of Time-weighted Frequent Items from Data Streams](https://doi.org/10.1145/2661829.2662006)|Yongsub Lim, Jihoon Choi, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast,+Accurate,+and+Space-efficient+Tracking+of+Time-weighted+Frequent+Items+from+Data+Streams)|9| +|[Scalable Distributed Belief Propagation with Prioritized Block Updates](https://doi.org/10.1145/2661829.2662081)|Jiangtao Yin, Lixin Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Distributed+Belief+Propagation+with+Prioritized+Block+Updates)|9| +|[Transfer Understanding from Head Queries to Tail Queries](https://doi.org/10.1145/2661829.2662078)|Yangqiu Song, Haixun Wang, Weizhu Chen, Shusen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transfer+Understanding+from+Head+Queries+to+Tail+Queries)|9| +|[Modelling and Detecting Changes in User Satisfaction](https://doi.org/10.1145/2661829.2661960)|Julia Kiseleva, Eric Crestan, Riccardo Brigo, Roland Ditte||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+and+Detecting+Changes+in+User+Satisfaction)|9| +|[Exploring Tag-Free RFID-Based Passive Localization and Tracking via Learning-Based Probabilistic Approaches](https://doi.org/10.1145/2661829.2661873)|Lina Yao, Wenjie Ruan, Quan Z. Sheng, Xue Li, Nickolas J. G. Falkner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Tag-Free+RFID-Based+Passive+Localization+and+Tracking+via+Learning-Based+Probabilistic+Approaches)|9| +|[CONR: A Novel Method for Sentiment Word Identification](https://doi.org/10.1145/2661829.2662015)|Jiguang Liang, Xiaofei Zhou, Yue Hu, Li Guo, Shuo Bai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONR:+A+Novel+Method+for+Sentiment+Word+Identification)|9| +|[Designing Test Collections for Comparing Many Systems](https://doi.org/10.1145/2661829.2661893)|Tetsuya Sakai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Designing+Test+Collections+for+Comparing+Many+Systems)|8| +|[A Fixed-Point Method for Weighting Terms in Verbose Informational Queries](https://doi.org/10.1145/2661829.2661957)|Jiaul H. Paik, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fixed-Point+Method+for+Weighting+Terms+in+Verbose+Informational+Queries)|8| +|[Social Book Search Reranking with Generalized Content-Based Filtering](https://doi.org/10.1145/2661829.2661940)|BoWen Zhang, XuCheng Yin, XiaoPing Cui, Jiao Qu, Bin Geng, Fang Zhou, Li Song, HongWei Hao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Book+Search+Reranking+with+Generalized+Content-Based+Filtering)|8| +|[Active Exploration in Networks: Using Probabilistic Relationships for Learning and Inference](https://doi.org/10.1145/2661829.2662072)|Joseph John Pfeiffer III, Jennifer Neville, Paul N. Bennett||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Exploration+in+Networks:+Using+Probabilistic+Relationships+for+Learning+and+Inference)|8| +|[Efficient Probabilistic Supergraph Search Over Large Uncertain Graphs](https://doi.org/10.1145/2661829.2661872)|Yongxin Tong, Xiaofei Zhang, Caleb Chen Cao, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Probabilistic+Supergraph+Search+Over+Large+Uncertain+Graphs)|8| +|[Semantic Compositionality in Tree Kernels](https://doi.org/10.1145/2661829.2661955)|Paolo Annesi, Danilo Croce, Roberto Basili||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Compositionality+in+Tree+Kernels)|8| +|[Analysis of Physical Activity Propagation in a Health Social Network](https://doi.org/10.1145/2661829.2662025)|NhatHai Phan, Dejing Dou, Xiao Xiao, Brigitte Piniewski, David Kil||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+of+Physical+Activity+Propagation+in+a+Health+Social+Network)|8| +|[On Efficient Meta-Level Features for Effective Text Classification](https://doi.org/10.1145/2661829.2662060)|Sérgio D. Canuto, Thiago Salles, Marcos André Gonçalves, Leonardo Rocha, Gabriel Spada Ramos, Luiz Gonçalves, Thierson Couto Rosa, Wellington Santos Martins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Efficient+Meta-Level+Features+for+Effective+Text+Classification)|8| +|[Query Performance Prediction for Aspect Weighting in Search Result Diversification](https://doi.org/10.1145/2661829.2661975)|Ahmet Murat Ozdemiray, Ismail Sengor Altingovde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Performance+Prediction+for+Aspect+Weighting+in+Search+Result+Diversification)|8| |[Entity Oriented Task Extraction from Query Logs](https://doi.org/10.1145/2661829.2662076)|Manisha Verma, Emine Yilmaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+Oriented+Task+Extraction+from+Query+Logs)|8| -|[Modeling Retail Transaction Data for Personalized Shopping Recommendation](https://doi.org/10.1145/2661829.2662020)|Pengfei Wang, Jiafeng Guo, Yanyan Lan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Retail+Transaction+Data+for+Personalized+Shopping+Recommendation)|8| -|[CoDEM: An Ingenious Tool of Insight into Community Detection in Social Networks](https://doi.org/10.1145/2661829.2661831)|Meng Wang, Chaokun Wang, Jun Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoDEM:+An+Ingenious+Tool+of+Insight+into+Community+Detection+in+Social+Networks)|8| -|[A Demonstration of SearchonTS: An Efficient Pattern Search Framework for Time Series Data](https://doi.org/10.1145/2661829.2661834)|Xiaomin Xu, Sheng Huang, Yaoliang Chen, Chen Wang, Inge Halilovic, Kevin Brown, Mark Ashworth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Demonstration+of+SearchonTS:+An+Efficient+Pattern+Search+Framework+for+Time+Series+Data)|8| -|[Accelerometer-based Activity Recognition on Smartphone](https://doi.org/10.1145/2661829.2661836)|Xing Su, Hanghang Tong, Ping Ji||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accelerometer-based+Activity+Recognition+on+Smartphone)|8| -|[A Bootstrapping Based Refinement Framework for Mining Opinion Words and Targets](https://doi.org/10.1145/2661829.2662069)|Qiyun Zhao, Hao Wang, Pin Lv, Chen Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Bootstrapping+Based+Refinement+Framework+for+Mining+Opinion+Words+and+Targets)|7| -|[Cleanix: A Big Data Cleaning Parfait](https://doi.org/10.1145/2661829.2661837)|Hongzhi Wang, Mingda Li, Yingyi Bu, Jianzhong Li, Hong Gao, Jiacheng Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cleanix:+A+Big+Data+Cleaning+Parfait)|7| -|[Clairvoyant: An Early Prediction System For Video Hits](https://doi.org/10.1145/2661829.2661847)|Hao Chen, Qinmin Hu, Liang He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clairvoyant:+An+Early+Prediction+System+For+Video+Hits)|7| -|[RecLand: A Recommender System for Social Networks](https://doi.org/10.1145/2661829.2661850)|Ryadh Dahimene, Camélia Constantin, Cédric du Mouza||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RecLand:+A+Recommender+System+for+Social+Networks)|7| -|[GTE-Rank: Searching for Implicit Temporal Query Results](https://doi.org/10.1145/2661829.2661856)|Ricardo Campos, Gaël Dias, Alípio Mário Jorge, Célia Nunes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GTE-Rank:+Searching+for+Implicit+Temporal+Query+Results)|7| -|[Adaptive Pairwise Preference Learning for Collaborative Recommendation with Implicit Feedbacks](https://doi.org/10.1145/2661829.2661986)|Hao Zhong, Weike Pan, Congfu Xu, Zhi Yin, Zhong Ming||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Pairwise+Preference+Learning+for+Collaborative+Recommendation+with+Implicit+Feedbacks)|6| -|[TwinChat: A Twitter and Web User Interactive Chat System](https://doi.org/10.1145/2661829.2661844)|Yuanyuan Wang, Gouki Yasui, Yuji Hosokawa, Yukiko Kawai, Toyokazu Akiyama, Kazutoshi Sumiya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TwinChat:+A+Twitter+and+Web+User+Interactive+Chat+System)|6| -|[MeowsReader: Real-Time Ranking and Filtering of News with Generalized Continuous Top-k Queries](https://doi.org/10.1145/2661829.2661851)|Nelly Vouzoukidou, Bernd Amann, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MeowsReader:+Real-Time+Ranking+and+Filtering+of+News+with+Generalized+Continuous+Top-k+Queries)|6| -|[INK: A Cloud-Based System for Efficient Top-k Interval Keyword Search](https://doi.org/10.1145/2661829.2661830)|Rui Li, Xiao Zhang, Xin Zhou, Shan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=INK:+A+Cloud-Based+System+for+Efficient+Top-k+Interval+Keyword+Search)|5| -|[Building and Exploring Dynamic Topic Models on the Web](https://doi.org/10.1145/2661829.2661833)|Michael Derntl, Nikou Günnemann, Alexander Tillmann, Ralf Klamma, Matthias Jarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+and+Exploring+Dynamic+Topic+Models+on+the+Web)|5| -|[Faceted Exploring for Domain Knowledge over Linked Open Data](https://doi.org/10.1145/2661829.2661832)|Meng Wang, Jun Liu, Wenqiang Liu, Qinghua Zheng, Wei Zhang, Lingyun Song, Siyu Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Faceted+Exploring+for+Domain+Knowledge+over+Linked+Open+Data)|5| -|[Keeping You in the Loop: Enabling Web-based Things Management in the Internet of Things](https://doi.org/10.1145/2661829.2661838)|Lina Yao, Quan Z. Sheng, Anne H. H. Ngu, Byron J. Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Keeping+You+in+the+Loop:+Enabling+Web-based+Things+Management+in+the+Internet+of+Things)|5| -|[WiiCluster: a Platform for Wikipedia Infobox Generation](https://doi.org/10.1145/2661829.2661840)|Kezun Zhang, Yanghua Xiao, Hanghang Tong, Haixun Wang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WiiCluster:+a+Platform+for+Wikipedia+Infobox+Generation)|4| +|[Optimizing Multi-Relational Factorization Models for Multiple Target Relations](https://doi.org/10.1145/2661829.2662052)|Lucas Rêgo Drumond, Ernesto DiazAviles, Lars SchmidtThieme, Wolfgang Nejdl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Multi-Relational+Factorization+Models+for+Multiple+Target+Relations)|7| +|[User Interests Imbalance Exploration in Social Recommendation: A Fitness Adaptation](https://doi.org/10.1145/2661829.2662043)|Tianchun Wang, Xiaoming Jin, Xuetao Ding, Xiaojun Ye||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Interests+Imbalance+Exploration+in+Social+Recommendation:+A+Fitness+Adaptation)|7| +|[Mining Semi-Structured Online Knowledge Bases to Answer Natural Language Questions on Community QA Websites](https://doi.org/10.1145/2661829.2661968)|Parikshit Sondhi, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Semi-Structured+Online+Knowledge+Bases+to+Answer+Natural+Language+Questions+on+Community+QA+Websites)|7| +|[Modeling Paying Behavior in Game Social Networks](https://doi.org/10.1145/2661829.2662024)|Zhanpeng Fang, Xinyu Zhou, Jie Tang, Wei Shao, Alvis Cheuk M. Fong, Longjun Sun, Ying Ding, Ling Zhou, Jarder Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Paying+Behavior+in+Game+Social+Networks)|7| +|[Generative Modeling of Entity Comparisons in Text](https://doi.org/10.1145/2661829.2662016)|Maksim Tkachenko, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generative+Modeling+of+Entity+Comparisons+in+Text)|7| +|[Estimating the Number and Sizes of Fuzzy-Duplicate Clusters](https://doi.org/10.1145/2661829.2661885)|Arvid Heise, Gjergji Kasneci, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+the+Number+and+Sizes+of+Fuzzy-Duplicate+Clusters)|7| +|[Time-Aware Rank Aggregation for Microblog Search](https://doi.org/10.1145/2661829.2661905)|Shangsong Liang, Zhaochun Ren, Wouter Weerkamp, Edgar Meij, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-Aware+Rank+Aggregation+for+Microblog+Search)|7| +|[Microblog Topic Contagiousness Measurement and Emerging Outbreak Monitoring](https://doi.org/10.1145/2661829.2662014)|Victor W. Chu, Raymond K. Wong, Fang Chen, ChiHung Chi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Microblog+Topic+Contagiousness+Measurement+and+Emerging+Outbreak+Monitoring)|7| +|[Aroma: A New Data Protection Method with Differential Privacy and Accurate Query Answering](https://doi.org/10.1145/2661829.2661886)|Chunyao Song, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aroma:+A+New+Data+Protection+Method+with+Differential+Privacy+and+Accurate+Query+Answering)|7| +|[Document Prioritization for Scalable Query Processing](https://doi.org/10.1145/2661829.2661914)|Hao Wu, Hui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document+Prioritization+for+Scalable+Query+Processing)|7| +|[Hashcube: A Data Structure for Space- and Query-Efficient Skycube Compression](https://doi.org/10.1145/2661829.2661891)|Kenneth S. Bøgh, Sean Chester, Darius Sidlauskas, Ira Assent||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashcube:+A+Data+Structure+for+Space-+and+Query-Efficient+Skycube+Compression)|7| +|[Supervised Hashing with Soft Constraints](https://doi.org/10.1145/2661829.2661937)|Cong Leng, Jian Cheng, Jiaxiang Wu, Xi Zhang, Hanqing Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Hashing+with+Soft+Constraints)|7| +|[Vertical-Aware Click Model-Based Effectiveness Metrics](https://doi.org/10.1145/2661829.2661944)|Ilya Markov, Eugene Kharitonov, Vadim Nikulin, Pavel Serdyukov, Maarten de Rijke, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Vertical-Aware+Click+Model-Based+Effectiveness+Metrics)|7| +|[Multi-document Hyperedge-based Ranking for Text Summarization](https://doi.org/10.1145/2661829.2662036)|Abdelghani Bellaachia, Mohammed AlDhelaan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-document+Hyperedge-based+Ranking+for+Text+Summarization)|7| +|[Accelerometer-based Activity Recognition on Smartphone](https://doi.org/10.1145/2661829.2661836)|Xing Su, Hanghang Tong, Ping Ji||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accelerometer-based+Activity+Recognition+on+Smartphone)|7| +|[Analysis on Community Variational Trend in Dynamic Networks](https://doi.org/10.1145/2661829.2662004)|Xiaowei Jia, Nan Du, Jing Gao, Aidong Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+on+Community+Variational+Trend+in+Dynamic+Networks)|6| +|[A Cross-modal Multi-task Learning Framework for Image Annotation](https://doi.org/10.1145/2661829.2662023)|Liang Xie, Peng Pan, Yansheng Lu, Shixun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cross-modal+Multi-task+Learning+Framework+for+Image+Annotation)|6| +|[Pattern Match Query in a Large Uncertain Graph](https://doi.org/10.1145/2661829.2661868)|Ye Yuan, Guoren Wang, Lei Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pattern+Match+Query+in+a+Large+Uncertain+Graph)|6| +|[Efficient Static and Dynamic In-Database Tensor Decompositions on Chunk-Based Array Stores](https://doi.org/10.1145/2661829.2661864)|Mijung Kim, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Static+and+Dynamic+In-Database+Tensor+Decompositions+on+Chunk-Based+Array+Stores)|6| +|[Understanding the Sparsity: Augmented Matrix Factorization with Sampled Constraints on Unobservables](https://doi.org/10.1145/2661829.2661976)|Yongfeng Zhang, Min Zhang, Yi Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+Sparsity:+Augmented+Matrix+Factorization+with+Sampled+Constraints+on+Unobservables)|6| +|[Data/Feature Distributed Stochastic Coordinate Descent for Logistic Regression](https://doi.org/10.1145/2661829.2662082)|Dongyeop Kang, Woosang Lim, Kijung Shin, Lee Sael, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data/Feature+Distributed+Stochastic+Coordinate+Descent+for+Logistic+Regression)|6| +|[Sequential Action Patterns in Collaborative Ontology-Engineering Projects: A Case-Study in the Biomedical Domain](https://doi.org/10.1145/2661829.2662049)|Simon Walk, Philipp Singer, Markus Strohmaier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+Action+Patterns+in+Collaborative+Ontology-Engineering+Projects:+A+Case-Study+in+the+Biomedical+Domain)|6| +|[Exploring Legal Patent Citations for Patent Valuation](https://doi.org/10.1145/2661829.2662029)|Shuting Wang, Zhen Lei, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Legal+Patent+Citations+for+Patent+Valuation)|6| +|[Customized Organization of Social Media Contents using Focused Topic Hierarchy](https://doi.org/10.1145/2661829.2661896)|Xingwei Zhu, Zhaoyan Ming, Yu Hao, Xiaoyan Zhu, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Customized+Organization+of+Social+Media+Contents+using+Focused+Topic+Hierarchy)|6| +|[Analytical Performance Modeling for Top-K Query Processing](https://doi.org/10.1145/2661829.2661931)|Hao Wu, Hui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analytical+Performance+Modeling+for+Top-K+Query+Processing)|6| +|[On the Importance of Venue-Dependent Features for Learning to Rank Contextual Suggestions](https://doi.org/10.1145/2661829.2661956)|Romain Deveaud, MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Importance+of+Venue-Dependent+Features+for+Learning+to+Rank+Contextual+Suggestions)|6| +|[Size and Source Matter: Understanding Inconsistencies in Test Collection-Based Evaluation](https://doi.org/10.1145/2661829.2661945)|Timothy Jones, Andrew Turpin, Stefano Mizzaro, Falk Scholer, Mark Sanderson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Size+and+Source+Matter:+Understanding+Inconsistencies+in+Test+Collection-Based+Evaluation)|6| +|[How People Use the Web in Large Indoor Spaces](https://doi.org/10.1145/2661829.2661929)|Yongli Ren, Martin Tomko, Kevin Ong, Mark Sanderson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+People+Use+the+Web+in+Large+Indoor+Spaces)|6| +|[Exploit Latent Dirichlet Allocation for One-Class Collaborative Filtering](https://doi.org/10.1145/2661829.2661992)|Haijun Zhang, Zhoujun Li, Yan Chen, Xiaoming Zhang, Senzhang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploit+Latent+Dirichlet+Allocation+for+One-Class+Collaborative+Filtering)|6| +|[Keeping You in the Loop: Enabling Web-based Things Management in the Internet of Things](https://doi.org/10.1145/2661829.2661838)|Lina Yao, Quan Z. Sheng, Anne H. H. Ngu, Byron J. Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Keeping+You+in+the+Loop:+Enabling+Web-based+Things+Management+in+the+Internet+of+Things)|6| +|[Cleanix: A Big Data Cleaning Parfait](https://doi.org/10.1145/2661829.2661837)|Hongzhi Wang, Mingda Li, Yingyi Bu, Jianzhong Li, Hong Gao, Jiacheng Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cleanix:+A+Big+Data+Cleaning+Parfait)|6| +|[RecLand: A Recommender System for Social Networks](https://doi.org/10.1145/2661829.2661850)|Ryadh Dahimene, Camélia Constantin, Cédric du Mouza||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RecLand:+A+Recommender+System+for+Social+Networks)|6| +|[Using Crowdsourcing to Investigate Perception of Narrative Similarity](https://doi.org/10.1145/2661829.2661918)|Dong Nguyen, Dolf Trieschnigg, Mariët Theune||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Crowdsourcing+to+Investigate+Perception+of+Narrative+Similarity)|5| +|[GI-NMF: Group Incremental Non-Negative Matrix Factorization on Data Streams](https://doi.org/10.1145/2661829.2662008)|Xilun Chen, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GI-NMF:+Group+Incremental+Non-Negative+Matrix+Factorization+on+Data+Streams)|5| +|[On Independence Atoms and Keys](https://doi.org/10.1145/2661829.2662058)|Miika Hannula, Juha Kontinen, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Independence+Atoms+and+Keys)|5| +|[Deal or deceit: detecting cheating in distribution channels](https://doi.org/10.1145/2661829.2661874)|Kai Shu, Ping Luo, Wan Li, Peifeng Yin, Linpeng Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deal+or+deceit:+detecting+cheating+in+distribution+channels)|5| +|[A Word-Scale Probabilistic Latent Variable Model for Detecting Human Values](https://doi.org/10.1145/2661829.2661966)|Yasuhiro Takayama, Yoichi Tomiura, Emi Ishita, Douglas W. Oard, Kenneth R. Fleischmann, AnShou Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Word-Scale+Probabilistic+Latent+Variable+Model+for+Detecting+Human+Values)|5| +|[PraDa: Privacy-preserving Data-Deduplication-as-a-Service](https://doi.org/10.1145/2661829.2661863)|Boxiang Dong, Ruilin Liu, Wendy Hui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PraDa:+Privacy-preserving+Data-Deduplication-as-a-Service)|5| +|[Travel distance versus navigation complexity: a study on different spatial queries on road networks](https://doi.org/10.1145/2661829.2661861)|Jie Shao, Lars Kulik, Egemen Tanin, Long Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Travel+distance+versus+navigation+complexity:+a+study+on+different+spatial+queries+on+road+networks)|5| +|[Modelling Complex Relevance Spaces with Copulas](https://doi.org/10.1145/2661829.2661925)|Carsten Eickhoff, Arjen P. de Vries||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+Complex+Relevance+Spaces+with+Copulas)|5| +|[Identification of Answer-Seeking Questions in Arabic Microblogs](https://doi.org/10.1145/2661829.2661959)|Maram Hasanain, Tamer Elsayed, Walid Magdy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identification+of+Answer-Seeking+Questions+in+Arabic+Microblogs)|5| +|[Generalized Bias-Variance Evaluation of TREC Participated Systems](https://doi.org/10.1145/2661829.2661934)|Peng Zhang, Linxue Hao, Dawei Song, Jun Wang, Yuexian Hou, Bin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalized+Bias-Variance+Evaluation+of+TREC+Participated+Systems)|5| +|[TwinChat: A Twitter and Web User Interactive Chat System](https://doi.org/10.1145/2661829.2661844)|Yuanyuan Wang, Gouki Yasui, Yuji Hosokawa, Yukiko Kawai, Toyokazu Akiyama, Kazutoshi Sumiya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TwinChat:+A+Twitter+and+Web+User+Interactive+Chat+System)|5| +|[Negative FaceBlurring: A Privacy-by-Design Approach to Visual Lifelogging with Google Glass](https://doi.org/10.1145/2661829.2661841)|Tengqi Ye, Brian Moynagh, Rami Albatal, Cathal Gurrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Negative+FaceBlurring:+A+Privacy-by-Design+Approach+to+Visual+Lifelogging+with+Google+Glass)|5| +|[MaC: A Probabilistic Framework for Query Answering with Machine-Crowd Collaboration](https://doi.org/10.1145/2661829.2661880)|Chen Jason Zhang, Lei Chen, Yongxin Tong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MaC:+A+Probabilistic+Framework+for+Query+Answering+with+Machine-Crowd+Collaboration)|4| +|[Machine-Assisted Search Preference Evaluation](https://doi.org/10.1145/2661829.2661913)|Ahmed Hassan Awadallah, Imed Zitouni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine-Assisted+Search+Preference+Evaluation)|4| +|[Learning to Propagate Rare Labels](https://doi.org/10.1145/2661829.2661982)|Rakesh Pimplikar, Dinesh Garg, Deepesh Bharani, Gyana R. Parija||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Propagate+Rare+Labels)|4| +|[Enabling Precision/Recall Preferences for Semi-supervised SVM Training](https://doi.org/10.1145/2661829.2661977)|Zeyi Wen, Rui Zhang, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enabling+Precision/Recall+Preferences+for+Semi-supervised+SVM+Training)|4| +|[Semantic Approximate Keyword Query Based on Keyword and Query Coupling Relationship Analysis](https://doi.org/10.1145/2661829.2661867)|Xiangfu Meng, Longbing Cao, Jingyu Shao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Approximate+Keyword+Query+Based+on+Keyword+and+Query+Coupling+Relationship+Analysis)|4| +|[Improving Tail Query Performance by Fusion Model](https://doi.org/10.1145/2661829.2661943)|Shuai Huo, Min Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Tail+Query+Performance+by+Fusion+Model)|4| +|[On Building Decision Trees from Large-scale Data in Applications of On-line Advertising](https://doi.org/10.1145/2661829.2662044)|Shivaram Kalyanakrishnan, Deepthi Singh, Ravi Kant||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Building+Decision+Trees+from+Large-scale+Data+in+Applications+of+On-line+Advertising)|4| +|[Computing Multi-Relational Sufficient Statistics for Large Databases](https://doi.org/10.1145/2661829.2662010)|Zhensong Qian, Oliver Schulte, Yan Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+Multi-Relational+Sufficient+Statistics+for+Large+Databases)|4| +|[Relationship Emergence Prediction in Heterogeneous Networks through Dynamic Frequent Subgraph Mining](https://doi.org/10.1145/2661829.2661916)|Yang Liu, Songhua Xu, Lian Duan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relationship+Emergence+Prediction+in+Heterogeneous+Networks+through+Dynamic+Frequent+Subgraph+Mining)|4| +|[Hotspot Detection in a Service-Oriented Architecture](https://doi.org/10.1145/2661829.2661991)|Pranay Anchuri, Roshan Sumbaly, Sam Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hotspot+Detection+in+a+Service-Oriented+Architecture)|4| +|[Towards Efficient Dissemination of Linked Data in the Internet of Things](https://doi.org/10.1145/2661829.2661889)|Yongrui Qin, Quan Z. Sheng, Nickolas J. G. Falkner, Ali Shemshadi, Edward Curry||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Efficient+Dissemination+of+Linked+Data+in+the+Internet+of+Things)|4| +|[Axiomatic Analysis of Cross-Language Information Retrieval](https://doi.org/10.1145/2661829.2661915)|Razieh Rahimi, Azadeh Shakery, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Axiomatic+Analysis+of+Cross-Language+Information+Retrieval)|4| +|[Spatial Verification for Scalable Mobile Image Retrieval](https://doi.org/10.1145/2661829.2661971)|Xiyu Yang, Xueming Qian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatial+Verification+for+Scalable+Mobile+Image+Retrieval)|4| +|[TweetMogaz v2: Identifying News Stories in Social Media](https://doi.org/10.1145/2661829.2661843)|Eslam Elsawy, Moamen Mokhtar, Walid Magdy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TweetMogaz+v2:+Identifying+News+Stories+in+Social+Media)|4| |[RApID: A System for Real-time Analysis of Information Diffusion in Twitter](https://doi.org/10.1145/2661829.2661849)|Io Taxidou, Peter M. Fischer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RApID:+A+System+for+Real-time+Analysis+of+Information+Diffusion+in+Twitter)|4| -|[Anything You Can Do, I Can Do Better: Finding Expert Teams by CrewScout](https://doi.org/10.1145/2661829.2661839)|Naeemul Hassan, Huadong Feng, Ramesh Venkataraman, Gautam Das, Chengkai Li, Nan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anything+You+Can+Do,+I+Can+Do+Better:+Finding+Expert+Teams+by+CrewScout)|3| +|[iMiner: Mining Inventory Data for Intelligent Management](https://doi.org/10.1145/2661829.2661848)|Lei Li, Chao Shen, Long Wang, Li Zheng, Yexi Jiang, Liang Tang, Hongtai Li, Longhui Zhang, Chunqiu Zeng, Tao Li, Jun Tang, Dong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iMiner:+Mining+Inventory+Data+for+Intelligent+Management)|4| +|[DEESSE: entity-Driven Exploratory and sErendipitous Search SystEm](https://doi.org/10.1145/2661829.2661853)|Olivier Van Laere, Ilaria Bordino, Yelena Mejova, Mounia Lalmas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DEESSE:+entity-Driven+Exploratory+and+sErendipitous+Search+SystEm)|4| +|[Learning Interactions for Social Prediction in Large-scale Networks](https://doi.org/10.1145/2661829.2662056)|Xiaofeng Yu, Junqing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Interactions+for+Social+Prediction+in+Large-scale+Networks)|3| +|[Re-call and Re-cognition in Episode Re-retrieval: A User Study on News Re-finding a Fortnight Later](https://doi.org/10.1145/2661829.2661920)|Shuya Ochiai, Makoto P. Kato, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Re-call+and+Re-cognition+in+Episode+Re-retrieval:+A+User+Study+on+News+Re-finding+a+Fortnight+Later)|3| +|[Increasing the Responsiveness of Recommended Expert Collaborators for Online Open Projects](https://doi.org/10.1145/2661829.2662032)|Mohammad Y. Allaho, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Increasing+the+Responsiveness+of+Recommended+Expert+Collaborators+for+Online+Open+Projects)|3| +|[Towards Consistency Checking over Evolving Ontologies](https://doi.org/10.1145/2661829.2662061)|Jiewen Wu, Freddy Lécué||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Consistency+Checking+over+Evolving+Ontologies)|3| +|[Domain Cartridge: Unsupervised Framework for Shallow Domain Ontology Construction from Corpus](https://doi.org/10.1145/2661829.2662087)|Subhabrata Mukherjee, Jitendra Ajmera, Sachindra Joshi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Domain+Cartridge:+Unsupervised+Framework+for+Shallow+Domain+Ontology+Construction+from+Corpus)|3| +|[Rebuilding the Tower of Babel: Towards Cross-System Malware Information Sharing](https://doi.org/10.1145/2661829.2662086)|Ting Wang, Shicong Meng, Wei Gao, Xin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rebuilding+the+Tower+of+Babel:+Towards+Cross-System+Malware+Information+Sharing)|3| +|[Towards Pathway Variation Identification: Aligning Patient Records with a Care Pathway](https://doi.org/10.1145/2661829.2662013)|Haifeng Liu, Yang Liu, Xiang Li, Guo Tong Xie, Geetika T. Lakshmanan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Pathway+Variation+Identification:+Aligning+Patient+Records+with+a+Care+Pathway)|3| +|[Exploring Features for Complicated Objects: Cross-View Feature Selection for Multi-Instance Learning](https://doi.org/10.1145/2661829.2662041)|Jia Wu, Zhibin Hong, Shirui Pan, Xingquan Zhu, Zhihua Cai, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Features+for+Complicated+Objects:+Cross-View+Feature+Selection+for+Multi-Instance+Learning)|3| +|[Exploiting Knowledge Structure for Proximity-aware Movie Retrieval Model](https://doi.org/10.1145/2661829.2661949)|Sansung Kim, Keejun Han, Mun Yong Yi, Sinhee Cho, Seongchan Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Knowledge+Structure+for+Proximity-aware+Movie+Retrieval+Model)|3| +|[Aligning Vertical Collection Relevance with User Intent](https://doi.org/10.1145/2661829.2661941)|Ke Zhou, Thomas Demeester, Dong Nguyen, Djoerd Hiemstra, Dolf Trieschnigg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aligning+Vertical+Collection+Relevance+with+User+Intent)|3| +|[Non-independent Cascade Formation: Temporal and Spatial Effects](https://doi.org/10.1145/2661829.2662035)|Biru Cui, Shanchieh Jay Yang, Christopher Homan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-independent+Cascade+Formation:+Temporal+and+Spatial+Effects)|3| +|[Constrained Question Recommendation in MOOCs via Submodularity](https://doi.org/10.1145/2661829.2662089)|Diyi Yang, Jingbo Shang, Carolyn Penstein Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constrained+Question+Recommendation+in+MOOCs+via+Submodularity)|3| +|[VFDS: An Application to Generate Fast Sample Databases](https://doi.org/10.1145/2661829.2661845)|Teodora Sandra Buda, Thomas Cerqueus, John Murphy, Morten Kristiansen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=VFDS:+An+Application+to+Generate+Fast+Sample+Databases)|3| +|[GTE-Rank: Searching for Implicit Temporal Query Results](https://doi.org/10.1145/2661829.2661856)|Ricardo Campos, Gaël Dias, Alípio Mário Jorge, Célia Nunes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GTE-Rank:+Searching+for+Implicit+Temporal+Query+Results)|3| +|[Term Selection and Result Reranking for Question Retrieval by Exploiting Hierarchical Classification](https://doi.org/10.1145/2661829.2661938)|Wen Chan, Jintao Du, Weidong Yang, Jinhui Tang, Xiangdong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Term+Selection+and+Result+Reranking+for+Question+Retrieval+by+Exploiting+Hierarchical+Classification)|2| +|[Solving Linear SVMs with Multiple 1D Projections](https://doi.org/10.1145/2661829.2661994)|Johannes Schneider, Jasmina Bogojeska, Michail Vlachos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Solving+Linear+SVMs+with+Multiple+1D+Projections)|2| +|[Supervised Nested PageRank](https://doi.org/10.1145/2661829.2661969)|Maxim Zhukovskiy, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Nested+PageRank)|2| +|[A Flexible Framework for Projecting Heterogeneous Data](https://doi.org/10.1145/2661829.2662030)|Aubrey Gress, Ian Davidson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Flexible+Framework+for+Projecting+Heterogeneous+Data)|2| +|[Model Selection with the Covering Number of the Ball of RKHS](https://doi.org/10.1145/2661829.2662034)|Lizhong Ding, Shizhong Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model+Selection+with+the+Covering+Number+of+the+Ball+of+RKHS)|2| +|[PatentDom: Analyzing Patent Relationships on Multi-View Patent Graphs](https://doi.org/10.1145/2661829.2662031)|Longhui Zhang, Lei Li, Tao Li, Dingding Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PatentDom:+Analyzing+Patent+Relationships+on+Multi-View+Patent+Graphs)|2| +|[Compact Auxiliary Dictionaries for Incremental Compression of Large Repositories](https://doi.org/10.1145/2661829.2661961)|Jiancong Tong, Anthony Wirth, Justin Zobel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+Auxiliary+Dictionaries+for+Incremental+Compression+of+Large+Repositories)|2| +|[Modelling Relevance towards Multiple Inclusion Criteria when Ranking Patients](https://doi.org/10.1145/2661829.2661958)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+Relevance+towards+Multiple+Inclusion+Criteria+when+Ranking+Patients)|2| +|[Component Detection in Directed Networks](https://doi.org/10.1145/2661829.2662074)|YuKeng Shih, Sungmin Kim, Yiye Ruan, Jinxing Cheng, Abhishek Gattani, Tao Shi, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Component+Detection+in+Directed+Networks)|2| +|[Distance or Coverage?: Retrieving Knowledge-Rich Documents From Enterprise Text Collections](https://doi.org/10.1145/2661829.2661865)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distance+or+Coverage?:+Retrieving+Knowledge-Rich+Documents+From+Enterprise+Text+Collections)|2| +|[Tell Me What You Want and I Will Tell Others Where You Have Been](https://doi.org/10.1145/2661829.2661866)|Anthony Quattrone, Elham Naghizade, Lars Kulik, Egemen Tanin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tell+Me+What+You+Want+and+I+Will+Tell+Others+Where+You+Have+Been)|2| +|[Simple Arabic Stemmer](https://doi.org/10.1145/2661829.2661972)|Mohammed Algarni, Brent Martin, Tim Bell, Kourosh Neshatian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simple+Arabic+Stemmer)|2| +|[CLIR for Informal Content in Arabic Forum Posts](https://doi.org/10.1145/2661829.2661924)|Mossaab Bagdouri, Douglas W. Oard, Vittorio Castelli||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CLIR+for+Informal+Content+in+Arabic+Forum+Posts)|2| +|[Phrase Query Optimization on Inverted Indexes](https://doi.org/10.1145/2661829.2661928)|Avishek Anand, Ida Mele, Srikanta J. Bedathur, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Phrase+Query+Optimization+on+Inverted+Indexes)|2| +|[Probabilistic Classifier Chain Inference via Gibbs Sampling](https://doi.org/10.1145/2661829.2661917)|Li Li, Longkai Zhang, Guangyi Li, Houfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Classifier+Chain+Inference+via+Gibbs+Sampling)|2| +|[A Generative Model for Generating Relevance Labels from Human Judgments and Click-Logs](https://doi.org/10.1145/2661829.2661897)|Xugang Ye, Jingjing Li, Zijie Qi, Bingyue Peng, Dan Massey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Generative+Model+for+Generating+Relevance+Labels+from+Human+Judgments+and+Click-Logs)|2| +|[Ranking Sentiment Explanations for Review Summarization Using Dual Decomposition](https://doi.org/10.1145/2661829.2662048)|Lei Fang, Qiao Qian, Minlie Huang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Sentiment+Explanations+for+Review+Summarization+Using+Dual+Decomposition)|2| +|[A Meta-reasoner to Rule Them All: Automated Selection of OWL Reasoners Based on Efficiency](https://doi.org/10.1145/2661829.2662079)|YongBin Kang, Shonali Krishnaswamy, YuanFang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Meta-reasoner+to+Rule+Them+All:+Automated+Selection+of+OWL+Reasoners+Based+on+Efficiency)|2| +|[Nonlinear Classification via Linear SVMs and Multi-Task Learning](https://doi.org/10.1145/2661829.2662068)|Xue Mao, Ou Wu, Weiming Hu, Peter O'Donovan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nonlinear+Classification+via+Linear+SVMs+and+Multi-Task+Learning)|2| +|[CoDEM: An Ingenious Tool of Insight into Community Detection in Social Networks](https://doi.org/10.1145/2661829.2661831)|Meng Wang, Chaokun Wang, Jun Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoDEM:+An+Ingenious+Tool+of+Insight+into+Community+Detection+in+Social+Networks)|2| +|[Building and Exploring Dynamic Topic Models on the Web](https://doi.org/10.1145/2661829.2661833)|Michael Derntl, Nikou Günnemann, Alexander Tillmann, Ralf Klamma, Matthias Jarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+and+Exploring+Dynamic+Topic+Models+on+the+Web)|2| +|[AESTHETICS: Analytics with Strings, Things, and Cats](https://doi.org/10.1145/2661829.2661835)|Johannes Hoffart, Dragan Milchevski, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AESTHETICS:+Analytics+with+Strings,+Things,+and+Cats)|2| +|[WiiCluster: a Platform for Wikipedia Infobox Generation](https://doi.org/10.1145/2661829.2661840)|Kezun Zhang, Yanghua Xiao, Hanghang Tong, Haixun Wang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WiiCluster:+a+Platform+for+Wikipedia+Infobox+Generation)|2| +|[AMiner-mini: A People Search Engine for University](https://doi.org/10.1145/2661829.2661852)|Jingyuan Liu, Debing Liu, Xingyu Yan, Li Dong, Ting Zeng, Yutao Zhang, Jie Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AMiner-mini:+A+People+Search+Engine+for+University)|2| +|[Exploring Document Collections with Topic Frames](https://doi.org/10.1145/2661829.2661857)|Alexander Hinneburg, Frank Rosner, Stefan Peßler, Christian Oberländer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Document+Collections+with+Topic+Frames)|2| +|[Pulling Conjunctive Query Equivalence out of the Bag](https://doi.org/10.1145/2661829.2661881)|Stefan Böttcher, Sebastian Link, Lin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pulling+Conjunctive+Query+Equivalence+out+of+the+Bag)|1| +|[Templated Search over Relational Databases](https://doi.org/10.1145/2661829.2661883)|Anastasios Zouzias, Michail Vlachos, Vagelis Hristidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Templated+Search+over+Relational+Databases)|1| +|[A Mixtures-of-Trees Framework for Multi-Label Classification](https://doi.org/10.1145/2661829.2661989)|Charmgil Hong, Iyad Batal, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Mixtures-of-Trees+Framework+for+Multi-Label+Classification)|1| +|[Correct Me If I'm Wrong: Fixing Grammatical Errors by Preposition Ranking](https://doi.org/10.1145/2661829.2661942)|Roman Prokofyev, Ruslan Mavlyutov, Martin Grund, Gianluca Demartini, Philippe CudréMauroux||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Correct+Me+If+I'm+Wrong:+Fixing+Grammatical+Errors+by+Preposition+Ranking)|1| +|[A Dynamic Reconstruction Approach to Topic Summarization of User-Generated-Content](https://doi.org/10.1145/2661829.2661936)|Zhaoyan Ming, Jintao Ye, TatSeng Chua||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Dynamic+Reconstruction+Approach+to+Topic+Summarization+of+User-Generated-Content)|1| +|[Maximizing Multi-scale Spatial Statistical Discrepancy](https://doi.org/10.1145/2661829.2662007)|Weishan Dong, Renjie Yao, Chunyang Ma, Changsheng Li, Lei Shi, Lu Wang, Yu Wang, Peng Gao, Junchi Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maximizing+Multi-scale+Spatial+Statistical+Discrepancy)|1| +|[Effect of Intent Descriptions on Retrieval Evaluation](https://doi.org/10.1145/2661829.2661950)|Emine Yilmaz, Evangelos Kanoulas, Nick Craswell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effect+of+Intent+Descriptions+on+Retrieval+Evaluation)|1| +|[Ranking Optimization with Constraints](https://doi.org/10.1145/2661829.2661895)|Fangzhao Wu, Jun Xu, Hang Li, Xin Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Optimization+with+Constraints)|1| +|[Searching Locally-Defined Entities](https://doi.org/10.1145/2661829.2661954)|Zhaohui Wu, Yuanhua Lv, Ariel Fuxman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Searching+Locally-Defined+Entities)|1| +|[Succinct Queries for Linking and Tracking News in Social Media](https://doi.org/10.1145/2661829.2661963)|Luchen Tan, Charles L. A. Clarke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Succinct+Queries+for+Linking+and+Tracking+News+in+Social+Media)|1| +|[Sparse Semantic Hashing for Efficient Large Scale Similarity Search](https://doi.org/10.1145/2661829.2662145)|Qifan Wang, Bin Shen, Zhiwei Zhang, Luo Si||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sparse+Semantic+Hashing+for+Efficient+Large+Scale+Similarity+Search)|1| +|[Semantic Topology](https://doi.org/10.1145/2661829.2662028)|Jussi Karlgren, Martin Bohman, Ariel Ekgren, Gabriel Isheden, Emelie Kullmann, David Nilsson||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Topology)|1| +|[What is the Shape of a Cluster?: Structural Comparisons of Document Clusters](https://doi.org/10.1145/2661829.2662001)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+is+the+Shape+of+a+Cluster?:+Structural+Comparisons+of+Document+Clusters)|1| +|[A Demonstration of SearchonTS: An Efficient Pattern Search Framework for Time Series Data](https://doi.org/10.1145/2661829.2661834)|Xiaomin Xu, Sheng Huang, Yaoliang Chen, Chen Wang, Inge Halilovic, Kevin Brown, Mark Ashworth||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Demonstration+of+SearchonTS:+An+Efficient+Pattern+Search+Framework+for+Time+Series+Data)|1| +|[Anything You Can Do, I Can Do Better: Finding Expert Teams by CrewScout](https://doi.org/10.1145/2661829.2661839)|Naeemul Hassan, Huadong Feng, Ramesh Venkataraman, Gautam Das, Chengkai Li, Nan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anything+You+Can+Do,+I+Can+Do+Better:+Finding+Expert+Teams+by+CrewScout)|1| +|[Knowledge Management for Keyword Search over Data Graphs](https://doi.org/10.1145/2661829.2661846)|Yosi Mass, Yehoshua Sagiv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge+Management+for+Keyword+Search+over+Data+Graphs)|1| +|[Clairvoyant: An Early Prediction System For Video Hits](https://doi.org/10.1145/2661829.2661847)|Hao Chen, Qinmin Hu, Liang He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clairvoyant:+An+Early+Prediction+System+For+Video+Hits)|1| +|[Manual Annotation of Semi-Structured Documents for Entity-Linking](https://doi.org/10.1145/2661829.2661854)|Salvatore Trani, Diego Ceccarelli, Claudio Lucchese, Salvatore Orlando, Raffaele Perego||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Manual+Annotation+of+Semi-Structured+Documents+for+Entity-Linking)|1| +|[SmartVenues: Recommending Popular and Personalised Venues in a City](https://doi.org/10.1145/2661829.2661855)|Romain Deveaud, MDyaa Albakour, Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SmartVenues:+Recommending+Popular+and+Personalised+Venues+in+a+City)|1| +|[Query Augmentation based Intent Matching in Retail Vertical Ads](https://doi.org/10.1145/2661829.2661898)|Huasha Zhao, Ye Chen, John F. Canny, Tak W. Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Augmentation+based+Intent+Matching+in+Retail+Vertical+Ads)|0| +|[Fair Allocation in Online Markets](https://doi.org/10.1145/2661829.2662011)|Sreenivas Gollapudi, Debmalya Panigrahi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fair+Allocation+in+Online+Markets)|0| +|[An Appliance-Driven Approach to Detection of Corrupted Load Curve Data](https://doi.org/10.1145/2661829.2661860)|Guoming Tang, Kui Wu, Jian Pei, Jiuyang Tang, Jingsheng Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Appliance-Driven+Approach+to+Detection+of+Corrupted+Load+Curve+Data)|0| +|[Indexing Linked Data in a Wireless Broadcast System with 3D Hilbert Space-Filling Curves](https://doi.org/10.1145/2661829.2661890)|Yongrui Qin, Quan Z. Sheng, Nickolas J. G. Falkner, Wei Emma Zhang, Hua Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexing+Linked+Data+in+a+Wireless+Broadcast+System+with+3D+Hilbert+Space-Filling+Curves)|0| +|[Parameter Tuning with User Models: Influencing Aggregate User Behavior in Cluster Based Retrieval Systems](https://doi.org/10.1145/2661829.2661911)|Vinay Deolalikar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parameter+Tuning+with+User+Models:+Influencing+Aggregate+User+Behavior+in+Cluster+Based+Retrieval+Systems)|0| +|[GPQ: Directly Optimizing Q-measure based on Genetic Programming](https://doi.org/10.1145/2661829.2661932)|Yuan Lin, Hongfei Lin, Ping Zhang, Bo Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPQ:+Directly+Optimizing+Q-measure+based+on+Genetic+Programming)|0| +|[Exploring Shared Subspace and Joint Sparsity for Canonical Correlation Analysis](https://doi.org/10.1145/2661829.2661970)|Liang Tao, Horace HoShing Ip, Yinglin Wang, Xin Shu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+Shared+Subspace+and+Joint+Sparsity+for+Canonical+Correlation+Analysis)|0| +|[Log-Bilinear Document Language Model for Ad-hoc Information Retrieval](https://doi.org/10.1145/2661829.2661919)|Xinhui Tu, Jing Luo, Bo Li, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Log-Bilinear+Document+Language+Model+for+Ad-hoc+Information+Retrieval)|0| +|[Using Local Information to Significantly Improve Classification Performance](https://doi.org/10.1145/2661829.2662045)|Wei Liu, Dong Lee, Rao Kotagiri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Local+Information+to+Significantly+Improve+Classification+Performance)|0| +|[Enterprise Discussion Analysis](https://doi.org/10.1145/2661829.2661999)|Sara Rosenthal, Ashish Jagmohan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enterprise+Discussion+Analysis)|0| +|[A Problem-Action Relation Extraction Based on Causality Patterns of Clinical Events in Discharge Summaries](https://doi.org/10.1145/2661829.2662080)|JaeWook Seol, SeungHyeon Jo, Wangjin Yi, Jinwook Choi, KyungSoon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Problem-Action+Relation+Extraction+Based+on+Causality+Patterns+of+Clinical+Events+in+Discharge+Summaries)|0| +|[INK: A Cloud-Based System for Efficient Top-k Interval Keyword Search](https://doi.org/10.1145/2661829.2661830)|Rui Li, Xiao Zhang, Xin Zhou, Shan Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=INK:+A+Cloud-Based+System+for+Efficient+Top-k+Interval+Keyword+Search)|0| +|[Faceted Exploring for Domain Knowledge over Linked Open Data](https://doi.org/10.1145/2661829.2661832)|Meng Wang, Jun Liu, Wenqiang Liu, Qinghua Zheng, Wei Zhang, Lingyun Song, Siyu Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Faceted+Exploring+for+Domain+Knowledge+over+Linked+Open+Data)|0| +|[MeowsReader: Real-Time Ranking and Filtering of News with Generalized Continuous Top-k Queries](https://doi.org/10.1145/2661829.2661851)|Nelly Vouzoukidou, Bernd Amann, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MeowsReader:+Real-Time+Ranking+and+Filtering+of+News+with+Generalized+Continuous+Top-k+Queries)|0| +|[CONDOR: A System for CONstraint DiscOvery and Repair](https://doi.org/10.1145/2661829.2661858)|Joshua Segeren, Dhruv Gairola, Fei Chiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CONDOR:+A+System+for+CONstraint+DiscOvery+and+Repair)|0| diff --git a/papers/cikm/cikm2015.md b/papers/cikm/cikm2015.md index 60262f48..cfc80f01 100644 --- a/papers/cikm/cikm2015.md +++ b/papers/cikm/cikm2015.md @@ -2,239 +2,239 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[Gradient-based Signatures for Efficient Similarity Search in Large-scale Multimedia Databases](https://doi.org/10.1145/2806416.2806459)|Christian Beecks, Merih Seran Uysal, Judith Hermanns, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gradient-based+Signatures+for+Efficient+Similarity+Search+in+Large-scale+Multimedia+Databases)|65| -|[Scalable Facility Location for Massive Graphs on Pregel-like Systems](https://doi.org/10.1145/2806416.2806508)|Kiran Garimella, Gianmarco De Francisci Morales, Aristides Gionis, Mauro Sozio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Facility+Location+for+Massive+Graphs+on+Pregel-like+Systems)|49| -|[Who Will You "@"?](https://doi.org/10.1145/2806416.2806458)|Yeyun Gong, Qi Zhang, Xuyang Sun, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+Will+You+"@"?)|47| -|[Contextual Text Understanding in Distributional Semantic Space](https://doi.org/10.1145/2806416.2806517)|Jianpeng Cheng, Zhongyuan Wang, JiRong Wen, Jun Yan, Zheng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextual+Text+Understanding+in+Distributional+Semantic+Space)|46| -|[PlateClick: Bootstrapping Food Preferences Through an Adaptive Visual Interface](https://doi.org/10.1145/2806416.2806544)|Longqi Yang, Yin Cui, Fan Zhang, John P. Pollak, Serge J. Belongie, Deborah Estrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PlateClick:+Bootstrapping+Food+Preferences+Through+an+Adaptive+Visual+Interface)|45| -|[10 Bits of Surprise: Detecting Malicious Users with Minimum Information](https://doi.org/10.1145/2806416.2806535)|Reza Zafarani, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=10+Bits+of+Surprise:+Detecting+Malicious+Users+with+Minimum+Information)|45| -|[Improving Latent Factor Models via Personalized Feature Projection for One Class Recommendation](https://doi.org/10.1145/2806416.2806511)|Tong Zhao, Julian J. McAuley, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Latent+Factor+Models+via+Personalized+Feature+Projection+for+One+Class+Recommendation)|45| -|[Discovering Canonical Correlations between Topical and Topological Information in Document Networks](https://doi.org/10.1145/2806416.2806518)|Yuan He, Cheng Wang, Changjun Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Canonical+Correlations+between+Topical+and+Topological+Information+in+Document+Networks)|45| -|[Assessing the Impact of Syntactic and Semantic Structures for Answer Passages Reranking](https://doi.org/10.1145/2806416.2806490)|Kateryna Tymoshenko, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Assessing+the+Impact+of+Syntactic+and+Semantic+Structures+for+Answer+Passages+Reranking)|45| -|[Deep Collaborative Filtering via Marginalized Denoising Auto-encoder](https://doi.org/10.1145/2806416.2806527)|Sheng Li, Jaya Kawale, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Collaborative+Filtering+via+Marginalized+Denoising+Auto-encoder)|44| -|[What Is a Network Community?: A Novel Quality Function and Detection Algorithms](https://doi.org/10.1145/2806416.2806555)|Atsushi Miyauchi, Yasushi Kawase||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+Is+a+Network+Community?:+A+Novel+Quality+Function+and+Detection+Algorithms)|44| -|[Struggling and Success in Web Search](https://doi.org/10.1145/2806416.2806488)|Daan Odijk, Ryen W. White, Ahmed Hassan Awadallah, Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Struggling+and+Success+in+Web+Search)|44| -|[Search Result Diversification Based on Hierarchical Intents](https://doi.org/10.1145/2806416.2806455)|Sha Hu, Zhicheng Dou, Xiaojie Wang, Tetsuya Sakai, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+Result+Diversification+Based+on+Hierarchical+Intents)|43| -|[Knowlywood: Mining Activity Knowledge From Hollywood Narratives](https://doi.org/10.1145/2806416.2806583)|Niket Tandon, Gerard de Melo, Abir De, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowlywood:+Mining+Activity+Knowledge+From+Hollywood+Narratives)|43| -|[A Hierarchical Recurrent Encoder-Decoder for Generative Context-Aware Query Suggestion](https://doi.org/10.1145/2806416.2806493)|Alessandro Sordoni, Yoshua Bengio, Hossein Vahabi, Christina Lioma, Jakob Grue Simonsen, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Hierarchical+Recurrent+Encoder-Decoder+for+Generative+Context-Aware+Query+Suggestion)|43| -|[Ranking Entities for Web Queries Through Text and Knowledge](https://doi.org/10.1145/2806416.2806480)|Michael Schuhmacher, Laura Dietz, Simone Paolo Ponzetto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Entities+for+Web+Queries+Through+Text+and+Knowledge)|43| -|[Modeling Individual-Level Infection Dynamics Using Social Network Information](https://doi.org/10.1145/2806416.2806575)|Suppawong Tuarob, Conrad S. Tucker, Marcel Salathé, Nilam Ram||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Individual-Level+Infection+Dynamics+Using+Social+Network+Information)|43| -|[Robust Subspace Clustering via Tighter Rank Approximation](https://doi.org/10.1145/2806416.2806506)|Zhao Kang, Chong Peng, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Subspace+Clustering+via+Tighter+Rank+Approximation)|42| -|[The Role of Query Sessions in Interpreting Compound Noun Phrases](https://doi.org/10.1145/2806416.2806571)|Marius Pasca||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+of+Query+Sessions+in+Interpreting+Compound+Noun+Phrases)|42| -|[Cross-Modal Similarity Learning: A Low Rank Bilinear Formulation](https://doi.org/10.1145/2806416.2806469)|Cuicui Kang, Shengcai Liao, Yonghao He, Jian Wang, Wenjia Niu, Shiming Xiang, Chunhong Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Modal+Similarity+Learning:+A+Low+Rank+Bilinear+Formulation)|42| -|[Joint Modeling of User Check-in Behaviors for Point-of-Interest Recommendation](https://doi.org/10.1145/2806416.2806500)|Hongzhi Yin, Xiaofang Zhou, Yingxia Shao, Hao Wang, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Modeling+of+User+Check-in+Behaviors+for+Point-of-Interest+Recommendation)|42| -|[An Optimization Framework for Merging Multiple Result Lists](https://doi.org/10.1145/2806416.2806489)|ChiaJung Lee, Qingyao Ai, W. Bruce Croft, Daniel Sheldon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimization+Framework+for+Merging+Multiple+Result+Lists)|41| -|[gSparsify: Graph Motif Based Sparsification for Graph Clustering](https://doi.org/10.1145/2806416.2806543)|Peixiang Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=gSparsify:+Graph+Motif+Based+Sparsification+for+Graph+Clustering)|40| -|[Rank Consistency based Multi-View Learning: A Privacy-Preserving Approach](https://doi.org/10.1145/2806416.2806552)|HanJia Ye, DeChuan Zhan, Yuan Miao, Yuan Jiang, ZhiHua Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank+Consistency+based+Multi-View+Learning:+A+Privacy-Preserving+Approach)|40| -|[WaveCluster with Differential Privacy](https://doi.org/10.1145/2806416.2806546)|Ling Chen, Ting Yu, Rada Chirkova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WaveCluster+with+Differential+Privacy)|40| -|[Inclusion Dependencies Reloaded](https://doi.org/10.1145/2806416.2806539)|Henning Köhler, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inclusion+Dependencies+Reloaded)|40| -|[Experiments with a Venue-Centric Model for Personalisedand Time-Aware Venue Suggestion](https://doi.org/10.1145/2806416.2806484)|Romain Deveaud, MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Experiments+with+a+Venue-Centric+Model+for+Personalisedand+Time-Aware+Venue+Suggestion)|39| -|[Associative Classification with Statistically Significant Positive and Negative Rules](https://doi.org/10.1145/2806416.2806524)|Jundong Li, Osmar R. Zaïane||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Associative+Classification+with+Statistically+Significant+Positive+and+Negative+Rules)|39| -|[Exploiting Game Theoretic Analysis for Link Recommendation in Social Networks](https://doi.org/10.1145/2806416.2806510)|Tong Zhao, H. Vicky Zhao, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Game+Theoretic+Analysis+for+Link+Recommendation+in+Social+Networks)|39| -|[Inducing Space Dirichlet Process Mixture Large-Margin Entity RelationshipInference in Knowledge Bases](https://doi.org/10.1145/2806416.2806499)|Sotirios P. Chatzis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inducing+Space+Dirichlet+Process+Mixture+Large-Margin+Entity+RelationshipInference+in+Knowledge+Bases)|39| -|[Social Spammer and Spam Message Co-Detection in Microblogging with Social Context Regularization](https://doi.org/10.1145/2806416.2806560)|Fangzhao Wu, Jinyun Shu, Yongfeng Huang, Zhigang Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Spammer+and+Spam+Message+Co-Detection+in+Microblogging+with+Social+Context+Regularization)|39| -|[Tumblr Blog Recommendation with Boosted Inductive Matrix Completion](https://doi.org/10.1145/2806416.2806578)|Donghyuk Shin, Suleyman Cetintas, KuangChih Lee, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tumblr+Blog+Recommendation+with+Boosted+Inductive+Matrix+Completion)|38| -|[Towards Scale-out Capability on Social Graphs](https://doi.org/10.1145/2806416.2806420)|Haichuan Shang, Xiang Zhao, R. Uday Kiran, Masaru Kitsuregawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Scale-out+Capability+on+Social+Graphs)|38| -|[A Min-Max Optimization Framework For Online Graph Classification](https://doi.org/10.1145/2806416.2806548)|Peng Yang, Peilin Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Min-Max+Optimization+Framework+For+Online+Graph+Classification)|38| -|[Unsupervised Streaming Feature Selection in Social Media](https://doi.org/10.1145/2806416.2806501)|Jundong Li, Xia Hu, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Streaming+Feature+Selection+in+Social+Media)|38| -|[Does Vertical Bring more Satisfaction?: Predicting Search Satisfaction in a Heterogeneous Environment](https://doi.org/10.1145/2806416.2806473)|Ye Chen, Yiqun Liu, Ke Zhou, Meng Wang, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Does+Vertical+Bring+more+Satisfaction?:+Predicting+Search+Satisfaction+in+a+Heterogeneous+Environment)|38| -|[Scalable Clustering Algorithm via a Triangle Folding Processing for Complex Networks](https://doi.org/10.1145/2806416.2806563)|Ying Kang, Xiaoyan Gu, Weiping Wang, Dan Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Clustering+Algorithm+via+a+Triangle+Folding+Processing+for+Complex+Networks)|37| -|[Collaborating between Local and Global Learning for Distributed Online Multiple Tasks](https://doi.org/10.1145/2806416.2806553)|Xin Jin, Ping Luo, Fuzhen Zhuang, Jia He, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborating+between+Local+and+Global+Learning+for+Distributed+Online+Multiple+Tasks)|37| -|[Leveraging Joint Interactions for Credibility Analysis in News Communities](https://doi.org/10.1145/2806416.2806537)|Subhabrata Mukherjee, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Joint+Interactions+for+Credibility+Analysis+in+News+Communities)|37| -|[A Graph-based Recommendation across Heterogeneous Domains](https://doi.org/10.1145/2806416.2806523)|Deqing Yang, Jingrui He, Huazheng Qin, Yanghua Xiao, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Graph-based+Recommendation+across+Heterogeneous+Domains)|37| -|[Enterprise Social Link Recommendation](https://doi.org/10.1145/2806416.2806549)|Jiawei Zhang, Yuanhua Lv, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enterprise+Social+Link+Recommendation)|37| -|[Sampling Big Trajectory Data](https://doi.org/10.1145/2806416.2806422)|Yanhua Li, ChiYin Chow, Ke Deng, Mingxuan Yuan, Jia Zeng, JiaDong Zhang, Qiang Yang, ZhiLi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sampling+Big+Trajectory+Data)|37| -|[An Optimization Framework for Propagation of Query-Document Features by Query Similarity Functions](https://doi.org/10.1145/2806416.2806487)|Maxim Zhukovskiy, Tsimafei Khatkevich, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimization+Framework+for+Propagation+of+Query-Document+Features+by+Query+Similarity+Functions)|37| -|[Protecting Your Children from Inappropriate Content in Mobile Apps: An Automatic Maturity Rating Framework](https://doi.org/10.1145/2806416.2806579)|Bing Hu, Bin Liu, Neil Zhenqiang Gong, Deguang Kong, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Protecting+Your+Children+from+Inappropriate+Content+in+Mobile+Apps:+An+Automatic+Maturity+Rating+Framework)|37| -|[DifRec: A Social-Diffusion-Aware Recommender System](https://doi.org/10.1145/2806416.2806559)|Hossein Vahabi, Iordanis Koutsopoulos, Francesco Gullo, Maria Halkidi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DifRec:+A+Social-Diffusion-Aware+Recommender+System)|37| -|[Who With Whom And How?: Extracting Large Social Networks Using Search Engines](https://doi.org/10.1145/2806416.2806582)|Stefan Siersdorfer, Philipp Kemkes, Hanno Ackermann, Sergej Zerr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+With+Whom+And+How?:+Extracting+Large+Social+Networks+Using+Search+Engines)|37| -|[Behavioral Dynamics from the SERP's Perspective: What are Failed SERPs and How to Fix Them?](https://doi.org/10.1145/2806416.2806483)|Julia Kiseleva, Jaap Kamps, Vadim Nikulin, Nikita Makarov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Behavioral+Dynamics+from+the+SERP's+Perspective:+What+are+Failed+SERPs+and+How+to+Fix+Them?)|37| -|[External Knowledge and Query Strategies in Active Learning: a Study in Clinical Information Extraction](https://doi.org/10.1145/2806416.2806550)|Mahnoosh Kholghi, Laurianne Sitbon, Guido Zuccon, Anthony N. Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+Knowledge+and+Query+Strategies+in+Active+Learning:+a+Study+in+Clinical+Information+Extraction)|36| -|[Learning Entity Types from Query Logs via Graph-Based Modeling](https://doi.org/10.1145/2806416.2806498)|Jingyuan Zhang, Luo Jie, Altaf Rahman, Sihong Xie, Yi Chang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Entity+Types+from+Query+Logs+via+Graph-Based+Modeling)|36| -|[TriRank: Review-aware Explainable Recommendation by Modeling Aspects](https://doi.org/10.1145/2806416.2806504)|Xiangnan He, Tao Chen, MinYen Kan, Xiao Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TriRank:+Review-aware+Explainable+Recommendation+by+Modeling+Aspects)|36| -|[A Unified Posterior Regularized Topic Model with Maximum Margin for Learning-to-Rank](https://doi.org/10.1145/2806416.2806482)|Shoaib Jameel, Wai Lam, Steven Schockaert, Lidong Bing||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Unified+Posterior+Regularized+Topic+Model+with+Maximum+Margin+for+Learning-to-Rank)|35| -|[Ranking Deep Web Text Collections for Scalable Information Extraction](https://doi.org/10.1145/2806416.2806581)|Pablo Barrio, Luis Gravano, Chris Develder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Deep+Web+Text+Collections+for+Scalable+Information+Extraction)|35| -|[Unsupervised Feature Selection on Data Streams](https://doi.org/10.1145/2806416.2806521)|Hao Huang, Shinjae Yoo, Shiva Prasad Kasiviswanathan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+on+Data+Streams)|35| -|[Learning Relative Similarity from Data Streams: Active Online Learning Approaches](https://doi.org/10.1145/2806416.2806464)|Shuji Hao, Peilin Zhao, Steven C. H. Hoi, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Relative+Similarity+from+Data+Streams:+Active+Online+Learning+Approaches)|35| -|[ORec: An Opinion-Based Point-of-Interest Recommendation Framework](https://doi.org/10.1145/2806416.2806516)|JiaDong Zhang, ChiYin Chow, Yu Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ORec:+An+Opinion-Based+Point-of-Interest+Recommendation+Framework)|35| -|[A Parallel GPU-Based Approach to Clustering Very Fast Data Streams](https://doi.org/10.1145/2806416.2806545)|Pengtao Huang, Xiu Li, Bo Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Parallel+GPU-Based+Approach+to+Clustering+Very+Fast+Data+Streams)|34| -|[Searching and Stopping: An Analysis of Stopping Rules and Strategies](https://doi.org/10.1145/2806416.2806476)|David Maxwell, Leif Azzopardi, Kalervo Järvelin, Heikki Keskustalo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Searching+and+Stopping:+An+Analysis+of+Stopping+Rules+and+Strategies)|34| +|[GraRep: Learning Graph Representations with Global Structural Information](https://doi.org/10.1145/2806416.2806512)|Shaosheng Cao, Wei Lu, Qiongkai Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GraRep:+Learning+Graph+Representations+with+Global+Structural+Information)|821| +|[Detect Rumors Using Time Series of Social Context Information on Microblogging Websites](https://doi.org/10.1145/2806416.2806607)|Jing Ma, Wei Gao, Zhongyu Wei, Yueming Lu, KamFai Wong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detect+Rumors+Using+Time+Series+of+Social+Context+Information+on+Microblogging+Websites)|282| +|[TriRank: Review-aware Explainable Recommendation by Modeling Aspects](https://doi.org/10.1145/2806416.2806504)|Xiangnan He, Tao Chen, MinYen Kan, Xiao Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TriRank:+Review-aware+Explainable+Recommendation+by+Modeling+Aspects)|243| +|[Deep Collaborative Filtering via Marginalized Denoising Auto-encoder](https://doi.org/10.1145/2806416.2806527)|Sheng Li, Jaya Kawale, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Collaborative+Filtering+via+Marginalized+Denoising+Auto-encoder)|238| +|[Semantic Path based Personalized Recommendation on Weighted Heterogeneous Information Networks](https://doi.org/10.1145/2806416.2806528)|Chuan Shi, Zhiqiang Zhang, Ping Luo, Philip S. Yu, Yading Yue, Bin Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Path+based+Personalized+Recommendation+on+Weighted+Heterogeneous+Information+Networks)|183| +|[A Hierarchical Recurrent Encoder-Decoder for Generative Context-Aware Query Suggestion](https://doi.org/10.1145/2806416.2806493)|Alessandro Sordoni, Yoshua Bengio, Hossein Vahabi, Christina Lioma, Jakob Grue Simonsen, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Hierarchical+Recurrent+Encoder-Decoder+for+Generative+Context-Aware+Query+Suggestion)|178| +|[Learning to Represent Knowledge Graphs with Gaussian Embedding](https://doi.org/10.1145/2806416.2806502)|Shizhu He, Kang Liu, Guoliang Ji, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Represent+Knowledge+Graphs+with+Gaussian+Embedding)|152| +|[Real-time Rumor Debunking on Twitter](https://doi.org/10.1145/2806416.2806651)|Xiaomo Liu, Armineh Nourbakhsh, Quanzhi Li, Rui Fang, Sameena Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+Rumor+Debunking+on+Twitter)|149| +|[More Accurate Question Answering on Freebase](https://doi.org/10.1145/2806416.2806472)|Hannah Bast, Elmar Haussmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=More+Accurate+Question+Answering+on+Freebase)|107| +|[Extracting Situational Information from Microblogs during Disaster Events: a Classification-Summarization Approach](https://doi.org/10.1145/2806416.2806485)|Koustav Rudra, Subham Ghosh, Niloy Ganguly, Pawan Goyal, Saptarshi Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Situational+Information+from+Microblogs+during+Disaster+Events:+a+Classification-Summarization+Approach)|100| +|[HDRF: Stream-Based Partitioning for Power-Law Graphs](https://doi.org/10.1145/2806416.2806424)|Fabio Petroni, Leonardo Querzoni, Khuzaima Daudjee, Shahin Kamali, Giorgio Iacoboni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HDRF:+Stream-Based+Partitioning+for+Power-Law+Graphs)|83| +|[Joint Modeling of User Check-in Behaviors for Point-of-Interest Recommendation](https://doi.org/10.1145/2806416.2806500)|Hongzhi Yin, Xiaofang Zhou, Yingxia Shao, Hao Wang, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Modeling+of+User+Check-in+Behaviors+for+Point-of-Interest+Recommendation)|76| +|[A Convolutional Click Prediction Model](https://doi.org/10.1145/2806416.2806603)|Qiang Liu, Feng Yu, Shu Wu, Liang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Convolutional+Click+Prediction+Model)|68| +|[EsdRank: Connecting Query and Documents through External Semi-Structured Data](https://doi.org/10.1145/2806416.2806456)|Chenyan Xiong, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EsdRank:+Connecting+Query+and+Documents+through+External+Semi-Structured+Data)|56| +|[Unsupervised Streaming Feature Selection in Social Media](https://doi.org/10.1145/2806416.2806501)|Jundong Li, Xia Hu, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Streaming+Feature+Selection+in+Social+Media)|52| +|[Location and Time Aware Social Collaborative Retrieval for New Successive Point-of-Interest Recommendation](https://doi.org/10.1145/2806416.2806564)|Wei Zhang, Jianyong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+and+Time+Aware+Social+Collaborative+Retrieval+for+New+Successive+Point-of-Interest+Recommendation)|52| +|[Detecting Check-worthy Factual Claims in Presidential Debates](https://doi.org/10.1145/2806416.2806652)|Naeemul Hassan, Chengkai Li, Mark Tremayne||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Check-worthy+Factual+Claims+in+Presidential+Debates)|52| +|[Search Result Diversification Based on Hierarchical Intents](https://doi.org/10.1145/2806416.2806455)|Sha Hu, Zhicheng Dou, Xiaojie Wang, Tetsuya Sakai, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Search+Result+Diversification+Based+on+Hierarchical+Intents)|47| +|[Personalized Trip Recommendation with POI Availability and Uncertain Traveling Time](https://doi.org/10.1145/2806416.2806558)|Chenyi Zhang, Hongwei Liang, Ke Wang, Jianling Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Trip+Recommendation+with+POI+Availability+and+Uncertain+Traveling+Time)|47| +|[Location-Based Influence Maximization in Social Networks](https://doi.org/10.1145/2806416.2806462)|Tao Zhou, Jiuxin Cao, Bo Liu, Shuai Xu, Ziqing Zhu, Junzhou Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-Based+Influence+Maximization+in+Social+Networks)|43| +|[Leveraging Joint Interactions for Credibility Analysis in News Communities](https://doi.org/10.1145/2806416.2806537)|Subhabrata Mukherjee, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Joint+Interactions+for+Credibility+Analysis+in+News+Communities)|42| +|[Probabilistic Forecasts of Bike-Sharing Systems for Journey Planning](https://doi.org/10.1145/2806416.2806569)|Nicolas Gast, Guillaume Massonnet, Daniël Reijsbergen, Mirco Tribastone||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Forecasts+of+Bike-Sharing+Systems+for+Journey+Planning)|41| +|[Query Auto-Completion for Rare Prefixes](https://doi.org/10.1145/2806416.2806599)|Bhaskar Mitra, Nick Craswell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Auto-Completion+for+Rare+Prefixes)|39| +|[Struggling and Success in Web Search](https://doi.org/10.1145/2806416.2806488)|Daan Odijk, Ryen W. White, Ahmed Hassan Awadallah, Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Struggling+and+Success+in+Web+Search)|37| +|[ORec: An Opinion-Based Point-of-Interest Recommendation Framework](https://doi.org/10.1145/2806416.2806516)|JiaDong Zhang, ChiYin Chow, Yu Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ORec:+An+Opinion-Based+Point-of-Interest+Recommendation+Framework)|36| |[Incomplete Multi-view Clustering via Subspace Learning](https://doi.org/10.1145/2806416.2806526)|Qiyue Yin, Shu Wu, Liang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incomplete+Multi-view+Clustering+via+Subspace+Learning)|34| -|[Personalized Trip Recommendation with POI Availability and Uncertain Traveling Time](https://doi.org/10.1145/2806416.2806558)|Chenyi Zhang, Hongwei Liang, Ke Wang, Jianling Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Trip+Recommendation+with+POI+Availability+and+Uncertain+Traveling+Time)|34| -|[Balancing Novelty and Salience: Adaptive Learning to Rank Entities for Timeline Summarization of High-impact Events](https://doi.org/10.1145/2806416.2806486)|Tuan Tran, Claudia Niederée, Nattiya Kanhabua, Ujwal Gadiraju, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balancing+Novelty+and+Salience:+Adaptive+Learning+to+Rank+Entities+for+Timeline+Summarization+of+High-impact+Events)|34| -|[Video Popularity Prediction by Sentiment Propagation via Implicit Network](https://doi.org/10.1145/2806416.2806505)|Wanying Ding, Yue Shang, Lifan Guo, Xiaohua Hu, Rui Yan, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Video+Popularity+Prediction+by+Sentiment+Propagation+via+Implicit+Network)|34| -|[Toward Dual Roles of Users in Recommender Systems](https://doi.org/10.1145/2806416.2806520)|Suhang Wang, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+Dual+Roles+of+Users+in+Recommender+Systems)|34| -|[BiasWatch: A Lightweight System for Discovering and Tracking Topic-Sensitive Opinion Bias in Social Media](https://doi.org/10.1145/2806416.2806573)|Haokai Lu, James Caverlee, Wei Niu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BiasWatch:+A+Lightweight+System+for+Discovering+and+Tracking+Topic-Sensitive+Opinion+Bias+in+Social+Media)|33| -|[Profession-Based Person Search in Microblogs: Using Seed Sets to Find Journalists](https://doi.org/10.1145/2806416.2806466)|Mossaab Bagdouri, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profession-Based+Person+Search+in+Microblogs:+Using+Seed+Sets+to+Find+Journalists)|33| -|[Exploiting Document Content for Efficient Aggregation of Crowdsourcing Votes](https://doi.org/10.1145/2806416.2806460)|Martin Davtyan, Carsten Eickhoff, Thomas Hofmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Document+Content+for+Efficient+Aggregation+of+Crowdsourcing+Votes)|33| -|[What Users Ask a Search Engine: Analyzing One Billion Russian Question Queries](https://doi.org/10.1145/2806416.2806457)|Michael Völske, Pavel Braslavski, Matthias Hagen, Galina Lezina, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+Users+Ask+a+Search+Engine:+Analyzing+One+Billion+Russian+Question+Queries)|33| -|[Understanding the Impact of the Role Factor in Collaborative Information Retrieval](https://doi.org/10.1145/2806416.2806481)|Lynda Tamine, Laure Soulier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+Impact+of+the+Role+Factor+in+Collaborative+Information+Retrieval)|32| -|[A Soft Computing Approach for Learning to Aggregate Rankings](https://doi.org/10.1145/2806416.2806478)|Javier Alvaro Vargas Muñoz, Ricardo da Silva Torres, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Soft+Computing+Approach+for+Learning+to+Aggregate+Rankings)|32| -|[Concept-Based Relevance Models for Medical and Semantic Information Retrieval](https://doi.org/10.1145/2806416.2806497)|Chunye Wang, Ramakrishna Akella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-Based+Relevance+Models+for+Medical+and+Semantic+Information+Retrieval)|32| -|[A Network-Aware Approach for Searching As-You-Type in Social Media](https://doi.org/10.1145/2806416.2806435)|Paul Lagrée, Bogdan Cautis, Hossein Vahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Network-Aware+Approach+for+Searching+As-You-Type+in+Social+Media)|32| -|[Learning to Represent Knowledge Graphs with Gaussian Embedding](https://doi.org/10.1145/2806416.2806502)|Shizhu He, Kang Liu, Guoliang Ji, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Represent+Knowledge+Graphs+with+Gaussian+Embedding)|32| -|[Crowdsourcing Pareto-Optimal Object Finding By Pairwise Comparisons](https://doi.org/10.1145/2806416.2806451)|Abolfazl Asudeh, Gensheng Zhang, Naeemul Hassan, Chengkai Li, Gergely V. Záruba||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing+Pareto-Optimal+Object+Finding+By+Pairwise+Comparisons)|32| -|[Identifying Top-k Structural Hole Spanners in Large-Scale Social Networks](https://doi.org/10.1145/2806416.2806431)|Mojtaba Rezvani, Weifa Liang, Wenzheng Xu, Chengfei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-k+Structural+Hole+Spanners+in+Large-Scale+Social+Networks)|31| -|[Extracting Situational Information from Microblogs during Disaster Events: a Classification-Summarization Approach](https://doi.org/10.1145/2806416.2806485)|Koustav Rudra, Subham Ghosh, Niloy Ganguly, Pawan Goyal, Saptarshi Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Situational+Information+from+Microblogs+during+Disaster+Events:+a+Classification-Summarization+Approach)|31| -|[An Inference Approach to Basic Level of Categorization](https://doi.org/10.1145/2806416.2806533)|Zhongyuan Wang, Haixun Wang, JiRong Wen, Yanghua Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Inference+Approach+to+Basic+Level+of+Categorization)|31| -|[MF-Tree: Matrix Factorization Tree for Large Multi-Class Learning](https://doi.org/10.1145/2806416.2806540)|Lei Liu, PangNing Tan, Xi Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MF-Tree:+Matrix+Factorization+Tree+for+Large+Multi-Class+Learning)|31| -|[GraRep: Learning Graph Representations with Global Structural Information](https://doi.org/10.1145/2806416.2806512)|Shaosheng Cao, Wei Lu, Qiongkai Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GraRep:+Learning+Graph+Representations+with+Global+Structural+Information)|31| -|[A Probabilistic Framework for Temporal User Modeling on Microblogs](https://doi.org/10.1145/2806416.2806470)|Jitao Sang, Dongyuan Lu, Changsheng Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Framework+for+Temporal+User+Modeling+on+Microblogs)|31| -|[Deriving Intensional Descriptions for Web Services](https://doi.org/10.1145/2806416.2806447)|Maria Koutraki, Dan Vodislav, Nicoleta Preda||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deriving+Intensional+Descriptions+for+Web+Services)|31| +|[Improving Latent Factor Models via Personalized Feature Projection for One Class Recommendation](https://doi.org/10.1145/2806416.2806511)|Tong Zhao, Julian J. McAuley, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Latent+Factor+Models+via+Personalized+Feature+Projection+for+One+Class+Recommendation)|34| +|[Rank by Time or by Relevance?: Revisiting Email Search](https://doi.org/10.1145/2806416.2806471)|David Carmel, Guy Halawi, Liane LewinEytan, Yoelle Maarek, Ariel Raviv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank+by+Time+or+by+Relevance?:+Revisiting+Email+Search)|31| |[Differentially Private Histogram Publication for Dynamic Datasets: an Adaptive Sampling Approach](https://doi.org/10.1145/2806416.2806441)|Haoran Li, Li Xiong, Xiaoqian Jiang, Jinfei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differentially+Private+Histogram+Publication+for+Dynamic+Datasets:+an+Adaptive+Sampling+Approach)|31| -|[Weakly Supervised Natural Language Processing Framework for Abstractive Multi-Document Summarization: Weakly Supervised Abstractive Multi-Document Summarization](https://doi.org/10.1145/2806416.2806494)|Peng Li, Tom Weidong Cai, Heng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weakly+Supervised+Natural+Language+Processing+Framework+for+Abstractive+Multi-Document+Summarization:+Weakly+Supervised+Abstractive+Multi-Document+Summarization)|31| -|[Aggregation of Crowdsourced Ordinal Assessments and Integration with Learning to Rank: A Latent Trait Model](https://doi.org/10.1145/2806416.2806492)|Pavel Metrikov, Virgil Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aggregation+of+Crowdsourced+Ordinal+Assessments+and+Integration+with+Learning+to+Rank:+A+Latent+Trait+Model)|31| -|[Improving Ranking Consistency for Web Search by Leveraging a Knowledge Base and Search Logs](https://doi.org/10.1145/2806416.2806479)|JyunYu Jiang, Jing Liu, ChinYew Lin, PuJen Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Ranking+Consistency+for+Web+Search+by+Leveraging+a+Knowledge+Base+and+Search+Logs)|31| -|[Central Topic Model for Event-oriented Topics Mining in Microblog Stream](https://doi.org/10.1145/2806416.2806561)|Min Peng, Jiahui Zhu, Xuhui Li, Jiajia Huang, Hua Wang, Yanchun Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Central+Topic+Model+for+Event-oriented+Topics+Mining+in+Microblog+Stream)|31| -|[Clustering-based Active Learning on Sensor Type Classification in Buildings](https://doi.org/10.1145/2806416.2806574)|Dezhi Hong, Hongning Wang, Kamin Whitehouse||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+Active+Learning+on+Sensor+Type+Classification+in+Buildings)|30| -|[Collaborative Prediction for Multi-entity Interaction With Hierarchical Representation](https://doi.org/10.1145/2806416.2806530)|Qiang Liu, Shu Wu, Liang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Prediction+for+Multi-entity+Interaction+With+Hierarchical+Representation)|30| -|[ReverseCloak: Protecting Multi-level Location Privacy over Road Networks](https://doi.org/10.1145/2806416.2806437)|Chao Li, Balaji Palanisamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ReverseCloak:+Protecting+Multi-level+Location+Privacy+over+Road+Networks)|30| -|[Interruption-Sensitive Empty Result Feedback: Rethinking the Visual Query Feedback Paradigm for Semistructured Data](https://doi.org/10.1145/2806416.2806432)|Sourav S. Bhowmick, Curtis E. Dyreson, Byron Choi, MinHwee Ang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interruption-Sensitive+Empty+Result+Feedback:+Rethinking+the+Visual+Query+Feedback+Paradigm+for+Semistructured+Data)|30| -|[Practical Aspects of Sensitivity in Online Experimentation with User Engagement Metrics](https://doi.org/10.1145/2806416.2806496)|Alexey Drutsa, Anna Ufliand, Gleb Gusev||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Practical+Aspects+of+Sensitivity+in+Online+Experimentation+with+User+Engagement+Metrics)|30| -|[Process-Driven Data Privacy](https://doi.org/10.1145/2806416.2806580)|Weiyi Xia, Murat Kantarcioglu, Zhiyu Wan, Raymond Heatherly, Yevgeniy Vorobeychik, Bradley A. Malin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Process-Driven+Data+Privacy)|30| -|[Weighted Similarity Estimation in Data Streams](https://doi.org/10.1145/2806416.2806515)|Konstantin Kutzkov, Mohamed Ahmed, Sofia Nikitaki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+Similarity+Estimation+in+Data+Streams)|30| -|[Learning Task Grouping using Supervised Task Space Partitioning in Lifelong Multitask Learning](https://doi.org/10.1145/2806416.2806570)|Meenakshi Mishra, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Task+Grouping+using+Supervised+Task+Space+Partitioning+in+Lifelong+Multitask+Learning)|30| -|[Ordering Selection Operators Under Partial Ignorance](https://doi.org/10.1145/2806416.2806446)|Khaled Hamed Alyoubi, Sven Helmer, Peter T. Wood||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ordering+Selection+Operators+Under+Partial+Ignorance)|30| -|[Forming Online Support Groups for Internet and Behavior Related Addictions](https://doi.org/10.1145/2806416.2806423)|ChihYa Shen, HongHan Shuai, DeNian Yang, YiFeng Lan, WangChien Lee, Philip S. Yu, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forming+Online+Support+Groups+for+Internet+and+Behavior+Related+Addictions)|29| -|[Classification with Active Learning and Meta-Paths in Heterogeneous Information Networks](https://doi.org/10.1145/2806416.2806507)|Chang Wan, Xiang Li, Ben Kao, Xiao Yu, Quanquan Gu, David WaiLok Cheung, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Classification+with+Active+Learning+and+Meta-Paths+in+Heterogeneous+Information+Networks)|29| -|[Characterizing and Predicting Voice Query Reformulation](https://doi.org/10.1145/2806416.2806491)|Ahmed Hassan Awadallah, Ranjitha Gurunath Kulkarni, Umut Ozertem, Rosie Jones||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+and+Predicting+Voice+Query+Reformulation)|29| -|[EsdRank: Connecting Query and Documents through External Semi-Structured Data](https://doi.org/10.1145/2806416.2806456)|Chenyan Xiong, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EsdRank:+Connecting+Query+and+Documents+through+External+Semi-Structured+Data)|29| -|[Parallel Lazy Semi-Naive Bayes Strategies for Effective and Efficient Document Classification](https://doi.org/10.1145/2806416.2806565)|Felipe Viegas, Marcos André Gonçalves, Wellington Martins, Leonardo Rocha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+Lazy+Semi-Naive+Bayes+Strategies+for+Effective+and+Efficient+Document+Classification)|29| -|[A Novel Class Noise Estimation Method and Application in Classification](https://doi.org/10.1145/2806416.2806554)|Lin Gui, Qin Lu, Ruifeng Xu, Minglei Li, Qikang Wei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Novel+Class+Noise+Estimation+Method+and+Application+in+Classification)|29| -|[KSGM: Keynode-driven Scalable Graph Matching](https://doi.org/10.1145/2806416.2806577)|Xilun Chen, K. Selçuk Candan, Maria Luisa Sapino, Paulo Shakarian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KSGM:+Keynode-driven+Scalable+Graph+Matching)|29| -|[Ad Hoc Monitoring of Vocabulary Shifts over Time](https://doi.org/10.1145/2806416.2806474)|Tom Kenter, Melvin Wevers, Pim Huijnen, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ad+Hoc+Monitoring+of+Vocabulary+Shifts+over+Time)|29| -|[Finding Probabilistic k-Skyline Sets on Uncertain Data](https://doi.org/10.1145/2806416.2806452)|Jinfei Liu, Haoyu Zhang, Li Xiong, Haoran Li, Jun Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+Probabilistic+k-Skyline+Sets+on+Uncertain+Data)|29| -|[Efficient Incremental Evaluation of Succinct Regular Expressions](https://doi.org/10.1145/2806416.2806434)|Henrik Björklund, Wim Martens, Thomas Timm||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Incremental+Evaluation+of+Succinct+Regular+Expressions)|29| -|[Characterizing and Predicting Viral-and-Popular Video Content](https://doi.org/10.1145/2806416.2806556)|David Vallet, Shlomo Berkovsky, Sebastien Ardon, Anirban Mahanti, Mohamed Ali Kâafar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+and+Predicting+Viral-and-Popular+Video+Content)|29| -|[HDRF: Stream-Based Partitioning for Power-Law Graphs](https://doi.org/10.1145/2806416.2806424)|Fabio Petroni, Leonardo Querzoni, Khuzaima Daudjee, Shahin Kamali, Giorgio Iacoboni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HDRF:+Stream-Based+Partitioning+for+Power-Law+Graphs)|28| -|[Approximated Summarization of Data Provenance](https://doi.org/10.1145/2806416.2806429)|Eleanor Ainy, Pierre Bourhis, Susan B. Davidson, Daniel Deutch, Tova Milo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximated+Summarization+of+Data+Provenance)|28| -|[Improving Microblog Retrieval with Feedback Entity Model](https://doi.org/10.1145/2806416.2806461)|Feifan Fan, Runwei Qiang, Chao Lv, Jianwu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Microblog+Retrieval+with+Feedback+Entity+Model)|28| -|[Context-Adaptive Matrix Factorization for Multi-Context Recommendation](https://doi.org/10.1145/2806416.2806503)|Tong Man, Huawei Shen, Junming Huang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Context-Adaptive+Matrix+Factorization+for+Multi-Context+Recommendation)|28| -|[Efficient Computation of Trips with Friends and Families](https://doi.org/10.1145/2806416.2806433)|Tanzima Hashem, Sukarna Barua, Mohammed Eunus Ali, Lars Kulik, Egemen Tanin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Trips+with+Friends+and+Families)|28| -|[On Gapped Set Intersection Size Estimation](https://doi.org/10.1145/2806416.2806438)|Chen Chen, Jianbin Qin, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Gapped+Set+Intersection+Size+Estimation)|28| -|[MAPer: A Multi-scale Adaptive Personalized Model for Temporal Human Behavior Prediction](https://doi.org/10.1145/2806416.2806562)|Sarah Masud Preum, John A. Stankovic, Yanjun Qi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MAPer:+A+Multi-scale+Adaptive+Personalized+Model+for+Temporal+Human+Behavior+Prediction)|27| -|[Query Relaxation across Heterogeneous Data Sources](https://doi.org/10.1145/2806416.2806529)|Verena Kantere, George Orfanoudakis, Anastasios Kementsietsidis, Timos K. Sellis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Relaxation+across+Heterogeneous+Data+Sources)|27| -|[Organic or Organized?: Exploring URL Sharing Behavior](https://doi.org/10.1145/2806416.2806572)|Cheng Cao, James Caverlee, Kyumin Lee, Hancheng Ge, JinWook Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Organic+or+Organized?:+Exploring+URL+Sharing+Behavior)|27| -|[Towards Scalable and Complete Query Explanation with OWL 2 EL Ontologies](https://doi.org/10.1145/2806416.2806547)|Zhe Wang, Mahsa Chitsaz, Kewen Wang, Jianfeng Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Scalable+and+Complete+Query+Explanation+with+OWL+2+EL+Ontologies)|27| -|[Location and Time Aware Social Collaborative Retrieval for New Successive Point-of-Interest Recommendation](https://doi.org/10.1145/2806416.2806564)|Wei Zhang, Jianyong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location+and+Time+Aware+Social+Collaborative+Retrieval+for+New+Successive+Point-of-Interest+Recommendation)|27| -|[Chronological Citation Recommendation with Information-Need Shifting](https://doi.org/10.1145/2806416.2806567)|Zhuoren Jiang, Xiaozhong Liu, Liangcai Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Chronological+Citation+Recommendation+with+Information-Need+Shifting)|27| -|[Comprehensible Models for Reconfiguring Enterprise Relational Databases to Avoid Incidents](https://doi.org/10.1145/2806416.2806448)|Ioana Giurgiu, Mirela Botezatu, Dorothea Wiesmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Comprehensible+Models+for+Reconfiguring+Enterprise+Relational+Databases+to+Avoid+Incidents)|27| -|[A Structured Query Model for the Deep Relational Web](https://doi.org/10.1145/2806416.2806589)|Hasan M. Jamil, H. V. Jagadish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Structured+Query+Model+for+the+Deep+Relational+Web)|27| -|[Mining Coordinated Intent Representation for Entity Search and Recommendation](https://doi.org/10.1145/2806416.2806557)|Huizhong Duan, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Coordinated+Intent+Representation+for+Entity+Search+and+Recommendation)|26| -|[Robust Capped Norm Nonnegative Matrix Factorization: Capped Norm NMF](https://doi.org/10.1145/2806416.2806568)|Hongchang Gao, Feiping Nie, Tom Weidong Cai, Heng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Capped+Norm+Nonnegative+Matrix+Factorization:+Capped+Norm+NMF)|26| -|[Time Series Analysis of Nursing Notes for Mortality Prediction via a State Transition Topic Model](https://doi.org/10.1145/2806416.2806541)|Yohan Jo, Natasha Loghmanpour, Carolyn P. Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time+Series+Analysis+of+Nursing+Notes+for+Mortality+Prediction+via+a+State+Transition+Topic+Model)|26| -|[Large-scale Knowledge Base Completion: Inferring via Grounding Network Sampling over Selected Instances](https://doi.org/10.1145/2806416.2806513)|Zhuoyu Wei, Jun Zhao, Kang Liu, Zhenyu Qi, Zhengya Sun, Guanhua Tian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+Knowledge+Base+Completion:+Inferring+via+Grounding+Network+Sampling+over+Selected+Instances)|26| -|[More Accurate Question Answering on Freebase](https://doi.org/10.1145/2806416.2806472)|Hannah Bast, Elmar Haussmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=More+Accurate+Question+Answering+on+Freebase)|26| -|[Rank by Time or by Relevance?: Revisiting Email Search](https://doi.org/10.1145/2806416.2806471)|David Carmel, Guy Halawi, Liane LewinEytan, Yoelle Maarek, Ariel Raviv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank+by+Time+or+by+Relevance?:+Revisiting+Email+Search)|25| -|[Automated News Suggestions for Populating Wikipedia Entity Pages](https://doi.org/10.1145/2806416.2806531)|Besnik Fetahu, Katja Markert, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+News+Suggestions+for+Populating+Wikipedia+Entity+Pages)|25| -|[Viewability Prediction for Online Display Ads](https://doi.org/10.1145/2806416.2806536)|Chong Wang, Achir Kalra, Cristian Borcea, Yi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Viewability+Prediction+for+Online+Display+Ads)|25| -|[A Cost-based Method for Location-Aware Publish/Subscribe Services](https://doi.org/10.1145/2806416.2806427)|Minghe Yu, Guoliang Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cost-based+Method+for+Location-Aware+Publish/Subscribe+Services)|25| -|[L2Knng: Fast Exact K-Nearest Neighbor Graph Construction with L2-Norm Pruning](https://doi.org/10.1145/2806416.2806534)|David C. Anastasiu, George Karypis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=L2Knng:+Fast+Exact+K-Nearest+Neighbor+Graph+Construction+with+L2-Norm+Pruning)|25| -|[Topic Modeling in Semantic Space with Keywords](https://doi.org/10.1145/2806416.2806584)|Xiaojia Pu, Rong Jin, Gangshan Wu, Dingyi Han, GuiRong Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic+Modeling+in+Semantic+Space+with+Keywords)|25| -|[F1: Accelerating the Optimization of Aggregate Continuous Queries](https://doi.org/10.1145/2806416.2806450)|Anatoli U. Shein, Panos K. Chrysanthis, Alexandros Labrinidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=F1:+Accelerating+the+Optimization+of+Aggregate+Continuous+Queries)|25| -|[Where you Instagram?: Associating Your Instagram Photos with Points of Interest](https://doi.org/10.1145/2806416.2806463)|Xutao Li, TuanAnh Nguyen Pham, Gao Cong, Quan Yuan, Xiaoli Li, Shonali Krishnaswamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+you+Instagram?:+Associating+Your+Instagram+Photos+with+Points+of+Interest)|25| -|[Semi-Automated Exploration of Data Warehouses](https://doi.org/10.1145/2806416.2806538)|Thibault Sellam, Emmanuel Müller, Martin L. Kersten||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Automated+Exploration+of+Data+Warehouses)|25| -|[Heterogeneous Multi-task Semantic Feature Learning for Classification](https://doi.org/10.1145/2806416.2806644)|Xin Jin, Fuzhen Zhuang, Sinno Jialin Pan, Changying Du, Ping Luo, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Heterogeneous+Multi-task+Semantic+Feature+Learning+for+Classification)|25| -|[Enhanced Word Embeddings from a Hierarchical Neural Language Model](https://doi.org/10.1145/2806416.2806637)|Xun Wang, Katsuhito Sudoh, Masaaki Nagata||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhanced+Word+Embeddings+from+a+Hierarchical+Neural+Language+Model)|25| -|[Dynamic Resource Management In a Massively Parallel Stream Processing Engine](https://doi.org/10.1145/2806416.2806449)|Kasper Grud Skat Madsen, Yongluan Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+Resource+Management+In+a+Massively+Parallel+Stream+Processing+Engine)|24| -|[Lifespan-based Partitioning of Index Structures for Time-travel Text Search](https://doi.org/10.1145/2806416.2806442)|Animesh Nandi, Suriya Subramanian, Sriram Lakshminarasimhan, Prasad M. Deshpande, Sriram Raghavan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lifespan-based+Partitioning+of+Index+Structures+for+Time-travel+Text+Search)|24| -|[Interactive User Group Analysis](https://doi.org/10.1145/2806416.2806519)|Behrooz OmidvarTehrani, Sihem AmerYahia, Alexandre Termier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+User+Group+Analysis)|24| -|[An Integrated Bayesian Approach for Effective Multi-Truth Discovery](https://doi.org/10.1145/2806416.2806443)|Xianzhi Wang, Quan Z. Sheng, Xiu Susie Fang, Lina Yao, Xiaofei Xu, Xue Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Integrated+Bayesian+Approach+for+Effective+Multi-Truth+Discovery)|24| -|[Modelling the Usefulness of Document Collections for Query Expansion in Patient Search](https://doi.org/10.1145/2806416.2806614)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+the+Usefulness+of+Document+Collections+for+Query+Expansion+in+Patient+Search)|24| -|[Multi-view Clustering via Structured Low-rank Representation](https://doi.org/10.1145/2806416.2806629)|Dong Wang, Qiyue Yin, Ran He, Liang Wang, Tieniu Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-view+Clustering+via+Structured+Low-rank+Representation)|24| -|[Category-Driven Approach for Local Related Business Recommendations](https://doi.org/10.1145/2806416.2806495)|Yonathan Perez, Michael Schueppert, Matthew Lawlor, Shaunak Kishore||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Category-Driven+Approach+for+Local+Related+Business+Recommendations)|23| -|[Entity and Aspect Extraction for Organizing News Comments](https://doi.org/10.1145/2806416.2806576)|Radityo Eko Prasojo, Mouna Kacimi, Werner Nutt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+and+Aspect+Extraction+for+Organizing+News+Comments)|23| -|[Lingo: Linearized Grassmannian Optimization for Nuclear Norm Minimization](https://doi.org/10.1145/2806416.2806532)|Qian Li, Wenjia Niu, Gang Li, Yanan Cao, Jianlong Tan, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lingo:+Linearized+Grassmannian+Optimization+for+Nuclear+Norm+Minimization)|23| -|[Range Search on Uncertain Trajectories](https://doi.org/10.1145/2806416.2806430)|Liming Zhan, Ying Zhang, Wenjie Zhang, Xiaoyang Wang, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Range+Search+on+Uncertain+Trajectories)|23| -|[Sentiment Extraction by Leveraging Aspect-Opinion Association Structure](https://doi.org/10.1145/2806416.2806525)|Li Zhao, Minlie Huang, Jiashen Sun, Hengliang Luo, Xiankai Yang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment+Extraction+by+Leveraging+Aspect-Opinion+Association+Structure)|22| -|[Approximate Truth Discovery via Problem Scale Reduction](https://doi.org/10.1145/2806416.2806444)|Xianzhi Wang, Quan Z. Sheng, Xiu Susie Fang, Xue Li, Xiaofei Xu, Lina Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Truth+Discovery+via+Problem+Scale+Reduction)|22| -|[Mining Brokers in Dynamic Social Networks](https://doi.org/10.1145/2806416.2806468)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Brokers+in+Dynamic+Social+Networks)|22| -|[GLUE: a Parameter-Tuning-Free Map Updating System](https://doi.org/10.1145/2806416.2806425)|Hao Wu, Chuanchuan Tu, Weiwei Sun, Baihua Zheng, Hao Su, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GLUE:+a+Parameter-Tuning-Free+Map+Updating+System)|22| -|[Efficient Computation of Polynomial Explanations of Why-Not Questions](https://doi.org/10.1145/2806416.2806426)|Nicole Bidoit, Melanie Herschel, Aikaterini Tzompanaki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Polynomial+Explanations+of+Why-Not+Questions)|22| -|[Approximate String Matching by End-Users using Active Learning](https://doi.org/10.1145/2806416.2806453)|Lutz Büch, Artur Andrzejak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+String+Matching+by+End-Users+using+Active+Learning)|21| -|[Data Driven Water Pipe Failure Prediction: A Bayesian Nonparametric Approach](https://doi.org/10.1145/2806416.2806509)|Peng Lin, Bang Zhang, Yi Wang, Zhidong Li, Bin Li, Yang Wang, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Driven+Water+Pipe+Failure+Prediction:+A+Bayesian+Nonparametric+Approach)|21| -|[Implementing Query Completeness Reasoning](https://doi.org/10.1145/2806416.2806439)|Werner Nutt, Sergey Paramonov, Ognjen Savkovic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Implementing+Query+Completeness+Reasoning)|21| -|[Node Immunization over Infectious Period](https://doi.org/10.1145/2806416.2806522)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Node+Immunization+over+Infectious+Period)|21| -|[The Role Of Citation Context In Predicting Long-Term Citation Profiles: An Experimental Study Based On A Massive Bibliographic Text Dataset](https://doi.org/10.1145/2806416.2806566)|Mayank Singh, Vikas Patidar, Suhansanu Kumar, Tanmoy Chakraborty, Animesh Mukherjee, Pawan Goyal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+Of+Citation+Context+In+Predicting+Long-Term+Citation+Profiles:+An+Experimental+Study+Based+On+A+Massive+Bibliographic+Text+Dataset)|21| -|[Large-Scale Question Answering with Joint Embedding and Proof Tree Decoding](https://doi.org/10.1145/2806416.2806616)|Zhenghao Wang, Shengquan Yan, Huaming Wang, Xuedong Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-Scale+Question+Answering+with+Joint+Embedding+and+Proof+Tree+Decoding)|21| -|[Making Sense of Spatial Trajectories](https://doi.org/10.1145/2806416.2806418)|Xiaofang Zhou, Kai Zheng, Hoyoung Jeung, Jiajie Xu, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+Sense+of+Spatial+Trajectories)|20| -|[Generalized Team Draft Interleaving](https://doi.org/10.1145/2806416.2806477)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalized+Team+Draft+Interleaving)|20| -|[Extracting Interest Tags for Non-famous Users in Social Network](https://doi.org/10.1145/2806416.2806514)|Wei He, Hongyan Liu, Jun He, Shu Tang, Xiaoyong Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Interest+Tags+for+Non-famous+Users+in+Social+Network)|20| -|[Fast Distributed Correlation Discovery Over Streaming Time-Series Data](https://doi.org/10.1145/2806416.2806440)|Tian Guo, Saket Sathe, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Distributed+Correlation+Discovery+Over+Streaming+Time-Series+Data)|20| -|[Answering Questions with Complex Semantic Constraints on Open Knowledge Bases](https://doi.org/10.1145/2806416.2806542)|Pengcheng Yin, Nan Duan, Ben Kao, Junwei Bao, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Answering+Questions+with+Complex+Semantic+Constraints+on+Open+Knowledge+Bases)|20| -|[Querying Temporal Drifts at Multiple Granularities](https://doi.org/10.1145/2806416.2806436)|Sofia Kleisarchaki, Sihem AmerYahia, Ahlame Douzal Chouakria, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+Temporal+Drifts+at+Multiple+Granularities)|20| -|[On the Cost of Extracting Proximity Features for Term-Dependency Models](https://doi.org/10.1145/2806416.2806467)|Xiaolu Lu, Alistair Moffat, J. Shane Culpepper||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Cost+of+Extracting+Proximity+Features+for+Term-Dependency+Models)|19| -|[Private Analysis of Infinite Data Streams via Retroactive Grouping](https://doi.org/10.1145/2806416.2806454)|Rui Chen, Yilin Shen, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Private+Analysis+of+Infinite+Data+Streams+via+Retroactive+Grouping)|19| -|[Efficient Sparse Matrix Multiplication on GPU for Large Social Network Analysis](https://doi.org/10.1145/2806416.2806445)|YongYeon Jo, SangWook Kim, DuckHo Bae||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Sparse+Matrix+Multiplication+on+GPU+for+Large+Social+Network+Analysis)|19| -|[A Data-Driven Approach to Distinguish Cyber-Attacks from Physical Faults in a Smart Grid](https://doi.org/10.1145/2806416.2806648)|Adnan Anwar, Abdun Naser Mahmood, Zubair Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Data-Driven+Approach+to+Distinguish+Cyber-Attacks+from+Physical+Faults+in+a+Smart+Grid)|19| -|[Transductive Domain Adaptation with Affinity Learning](https://doi.org/10.1145/2806416.2806643)|Le Shu, Longin Jan Latecki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transductive+Domain+Adaptation+with+Affinity+Learning)|19| -|[External Data Access And Indexing In AsterixDB](https://doi.org/10.1145/2806416.2806428)|Abdullah Abdulrahman Alamoudi, Raman Grover, Michael J. Carey, Vinayak R. Borkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+Data+Access+And+Indexing+In+AsterixDB)|18| -|[Deep Semantic Frame-Based Deceptive Opinion Spam Analysis](https://doi.org/10.1145/2806416.2806551)|Seongsoon Kim, Hyeokyoon Chang, Seongwoon Lee, Minhwan Yu, Jaewoo Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Semantic+Frame-Based+Deceptive+Opinion+Spam+Analysis)|18| -|[Query Auto-Completion for Rare Prefixes](https://doi.org/10.1145/2806416.2806599)|Bhaskar Mitra, Nick Craswell||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Auto-Completion+for+Rare+Prefixes)|18| -|[An Optimal Online Algorithm For Retrieving Heavily Perturbed Statistical Databases In The Low-Dimensional Querying Model](https://doi.org/10.1145/2806416.2806421)|Krzysztof Marcin Choromanski, Afshin Rostamizadeh, Umar Syed||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimal+Online+Algorithm+For+Retrieving+Heavily+Perturbed+Statistical+Databases+In+The+Low-Dimensional+Querying+Model)|17| +|[Ranking Entities for Web Queries Through Text and Knowledge](https://doi.org/10.1145/2806416.2806480)|Michael Schuhmacher, Laura Dietz, Simone Paolo Ponzetto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Entities+for+Web+Queries+Through+Text+and+Knowledge)|31| +|[Answering Questions with Complex Semantic Constraints on Open Knowledge Bases](https://doi.org/10.1145/2806416.2806542)|Pengcheng Yin, Nan Duan, Ben Kao, Junwei Bao, Ming Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Answering+Questions+with+Complex+Semantic+Constraints+on+Open+Knowledge+Bases)|30| +|[Efficient Computation of Trips with Friends and Families](https://doi.org/10.1145/2806416.2806433)|Tanzima Hashem, Sukarna Barua, Mohammed Eunus Ali, Lars Kulik, Egemen Tanin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Trips+with+Friends+and+Families)|29| +|[Searching and Stopping: An Analysis of Stopping Rules and Strategies](https://doi.org/10.1145/2806416.2806476)|David Maxwell, Leif Azzopardi, Kalervo Järvelin, Heikki Keskustalo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Searching+and+Stopping:+An+Analysis+of+Stopping+Rules+and+Strategies)|28| +|[Robust Capped Norm Nonnegative Matrix Factorization: Capped Norm NMF](https://doi.org/10.1145/2806416.2806568)|Hongchang Gao, Feiping Nie, Tom Weidong Cai, Heng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Capped+Norm+Nonnegative+Matrix+Factorization:+Capped+Norm+NMF)|28| +|[Assessing the Impact of Syntactic and Semantic Structures for Answer Passages Reranking](https://doi.org/10.1145/2806416.2806490)|Kateryna Tymoshenko, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Assessing+the+Impact+of+Syntactic+and+Semantic+Structures+for+Answer+Passages+Reranking)|27| +|[Video Popularity Prediction by Sentiment Propagation via Implicit Network](https://doi.org/10.1145/2806416.2806505)|Wanying Ding, Yue Shang, Lifan Guo, Xiaohua Hu, Rui Yan, Tingting He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Video+Popularity+Prediction+by+Sentiment+Propagation+via+Implicit+Network)|26| +|[Approximated Summarization of Data Provenance](https://doi.org/10.1145/2806416.2806429)|Eleanor Ainy, Pierre Bourhis, Susan B. Davidson, Daniel Deutch, Tova Milo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximated+Summarization+of+Data+Provenance)|25| +|[An Inference Approach to Basic Level of Categorization](https://doi.org/10.1145/2806416.2806533)|Zhongyuan Wang, Haixun Wang, JiRong Wen, Yanghua Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Inference+Approach+to+Basic+Level+of+Categorization)|24| +|[A Probabilistic Rating Auto-encoder for Personalized Recommender Systems](https://doi.org/10.1145/2806416.2806633)|Huizhi Liang, Timothy Baldwin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Rating+Auto-encoder+for+Personalized+Recommender+Systems)|24| +|[Contextual Text Understanding in Distributional Semantic Space](https://doi.org/10.1145/2806416.2806517)|Jianpeng Cheng, Zhongyuan Wang, JiRong Wen, Jun Yan, Zheng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contextual+Text+Understanding+in+Distributional+Semantic+Space)|23| +|[BiasWatch: A Lightweight System for Discovering and Tracking Topic-Sensitive Opinion Bias in Social Media](https://doi.org/10.1145/2806416.2806573)|Haokai Lu, James Caverlee, Wei Niu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BiasWatch:+A+Lightweight+System+for+Discovering+and+Tracking+Topic-Sensitive+Opinion+Bias+in+Social+Media)|23| +|[Mining Coordinated Intent Representation for Entity Search and Recommendation](https://doi.org/10.1145/2806416.2806557)|Huizhong Duan, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Coordinated+Intent+Representation+for+Entity+Search+and+Recommendation)|23| +|[Interactive User Group Analysis](https://doi.org/10.1145/2806416.2806519)|Behrooz OmidvarTehrani, Sihem AmerYahia, Alexandre Termier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+User+Group+Analysis)|23| +|[PlateClick: Bootstrapping Food Preferences Through an Adaptive Visual Interface](https://doi.org/10.1145/2806416.2806544)|Longqi Yang, Yin Cui, Fan Zhang, John P. Pollak, Serge J. Belongie, Deborah Estrin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PlateClick:+Bootstrapping+Food+Preferences+Through+an+Adaptive+Visual+Interface)|22| +|[An Integrated Bayesian Approach for Effective Multi-Truth Discovery](https://doi.org/10.1145/2806416.2806443)|Xianzhi Wang, Quan Z. Sheng, Xiu Susie Fang, Lina Yao, Xiaofei Xu, Xue Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Integrated+Bayesian+Approach+for+Effective+Multi-Truth+Discovery)|22| +|[Knowlywood: Mining Activity Knowledge From Hollywood Narratives](https://doi.org/10.1145/2806416.2806583)|Niket Tandon, Gerard de Melo, Abir De, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowlywood:+Mining+Activity+Knowledge+From+Hollywood+Narratives)|21| +|[10 Bits of Surprise: Detecting Malicious Users with Minimum Information](https://doi.org/10.1145/2806416.2806535)|Reza Zafarani, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=10+Bits+of+Surprise:+Detecting+Malicious+Users+with+Minimum+Information)|21| +|[A Graph-based Recommendation across Heterogeneous Domains](https://doi.org/10.1145/2806416.2806523)|Deqing Yang, Jingrui He, Huazheng Qin, Yanghua Xiao, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Graph-based+Recommendation+across+Heterogeneous+Domains)|21| +|[Unsupervised Feature Selection on Data Streams](https://doi.org/10.1145/2806416.2806521)|Hao Huang, Shinjae Yoo, Shiva Prasad Kasiviswanathan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+on+Data+Streams)|21| +|[Co-clustering Document-term Matrices by Direct Maximization of Graph Modularity](https://doi.org/10.1145/2806416.2806639)|Melissa Ailem, François Role, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Co-clustering+Document-term+Matrices+by+Direct+Maximization+of+Graph+Modularity)|21| +|[Organic or Organized?: Exploring URL Sharing Behavior](https://doi.org/10.1145/2806416.2806572)|Cheng Cao, James Caverlee, Kyumin Lee, Hancheng Ge, JinWook Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Organic+or+Organized?:+Exploring+URL+Sharing+Behavior)|20| +|[Large-scale Knowledge Base Completion: Inferring via Grounding Network Sampling over Selected Instances](https://doi.org/10.1145/2806416.2806513)|Zhuoyu Wei, Jun Zhao, Kang Liu, Zhenyu Qi, Zhengya Sun, Guanhua Tian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+Knowledge+Base+Completion:+Inferring+via+Grounding+Network+Sampling+over+Selected+Instances)|20| +|[Where You Go Reveals Who You Know: Analyzing Social Ties from Millions of Footprints](https://doi.org/10.1145/2806416.2806653)|HsunPing Hsieh, Rui Yan, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+You+Go+Reveals+Who+You+Know:+Analyzing+Social+Ties+from+Millions+of+Footprints)|20| +|[Automated News Suggestions for Populating Wikipedia Entity Pages](https://doi.org/10.1145/2806416.2806531)|Besnik Fetahu, Katja Markert, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automated+News+Suggestions+for+Populating+Wikipedia+Entity+Pages)|19| +|[L2Knng: Fast Exact K-Nearest Neighbor Graph Construction with L2-Norm Pruning](https://doi.org/10.1145/2806416.2806534)|David C. Anastasiu, George Karypis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=L2Knng:+Fast+Exact+K-Nearest+Neighbor+Graph+Construction+with+L2-Norm+Pruning)|19| +|[Cross-Modal Similarity Learning: A Low Rank Bilinear Formulation](https://doi.org/10.1145/2806416.2806469)|Cuicui Kang, Shengcai Liao, Yonghao He, Jian Wang, Wenjia Niu, Shiming Xiang, Chunhong Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-Modal+Similarity+Learning:+A+Low+Rank+Bilinear+Formulation)|19| +|[Efficient Computation of Polynomial Explanations of Why-Not Questions](https://doi.org/10.1145/2806416.2806426)|Nicole Bidoit, Melanie Herschel, Aikaterini Tzompanaki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Polynomial+Explanations+of+Why-Not+Questions)|18| +|[Social Spammer and Spam Message Co-Detection in Microblogging with Social Context Regularization](https://doi.org/10.1145/2806416.2806560)|Fangzhao Wu, Jinyun Shu, Yongfeng Huang, Zhigang Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Spammer+and+Spam+Message+Co-Detection+in+Microblogging+with+Social+Context+Regularization)|18| +|[Enterprise Social Link Recommendation](https://doi.org/10.1145/2806416.2806549)|Jiawei Zhang, Yuanhua Lv, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enterprise+Social+Link+Recommendation)|17| +|[Deep Semantic Frame-Based Deceptive Opinion Spam Analysis](https://doi.org/10.1145/2806416.2806551)|Seongsoon Kim, Hyeokyoon Chang, Seongwoon Lee, Minhwan Yu, Jaewoo Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Semantic+Frame-Based+Deceptive+Opinion+Spam+Analysis)|17| +|[Characterizing and Predicting Viral-and-Popular Video Content](https://doi.org/10.1145/2806416.2806556)|David Vallet, Shlomo Berkovsky, Sebastien Ardon, Anirban Mahanti, Mohamed Ali Kâafar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+and+Predicting+Viral-and-Popular+Video+Content)|17| +|[Pooled Evaluation Over Query Variations: Users are as Diverse as Systems](https://doi.org/10.1145/2806416.2806606)|Alistair Moffat, Falk Scholer, Paul Thomas, Peter Bailey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pooled+Evaluation+Over+Query+Variations:+Users+are+as+Diverse+as+Systems)|17| |[The Influence of Pre-processing on the Estimation of Readability of Web Documents](https://doi.org/10.1145/2806416.2806613)|João Rafael De Moura Palotti, Guido Zuccon, Allan Hanbury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Influence+of+Pre-processing+on+the+Estimation+of+Readability+of+Web+Documents)|17| -|[Gauging Correct Relative Rankings For Similarity Search](https://doi.org/10.1145/2806416.2806610)|Weiren Yu, Julie A. McCann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gauging+Correct+Relative+Rankings+For+Similarity+Search)|17| -|[Semantic Path based Personalized Recommendation on Weighted Heterogeneous Information Networks](https://doi.org/10.1145/2806416.2806528)|Chuan Shi, Zhiqiang Zhang, Ping Luo, Philip S. Yu, Yading Yue, Bin Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Path+based+Personalized+Recommendation+on+Weighted+Heterogeneous+Information+Networks)|16| -|[Location-Based Influence Maximization in Social Networks](https://doi.org/10.1145/2806416.2806462)|Tao Zhou, Jiuxin Cao, Bo Liu, Shuai Xu, Ziqing Zhu, Junzhou Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-Based+Influence+Maximization+in+Social+Networks)|16| -|[Building Representative Composite Items](https://doi.org/10.1145/2806416.2806465)|Vincent Leroy, Sihem AmerYahia, Éric Gaussier, Seyed Hamid Mirisaee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Representative+Composite+Items)|16| -|[Update Summarization using Semi-Supervised Learning Based on Hellinger Distance](https://doi.org/10.1145/2806416.2806628)|Dingding Wang, Sahar Sohangir, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Update+Summarization+using+Semi-Supervised+Learning+Based+on+Hellinger+Distance)|16| -|[Probabilistic Forecasts of Bike-Sharing Systems for Journey Planning](https://doi.org/10.1145/2806416.2806569)|Nicolas Gast, Guillaume Massonnet, Daniël Reijsbergen, Mirco Tribastone||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Forecasts+of+Bike-Sharing+Systems+for+Journey+Planning)|15| -|[Structural Constraints for Multipartite Entity Resolution with Markov Logic Network](https://doi.org/10.1145/2806416.2806590)|Tengyuan Ye, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural+Constraints+for+Multipartite+Entity+Resolution+with+Markov+Logic+Network)|15| -|[Identification of Microblogs Prominent Users during Events by Learning Temporal Sequences of Features](https://doi.org/10.1145/2806416.2806612)|Imen Bizid, Nibal Nayef, Patrice Boursier, Sami Faïz, Antoine Doucet||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identification+of+Microblogs+Prominent+Users+during+Events+by+Learning+Temporal+Sequences+of+Features)|15| -|[Pooled Evaluation Over Query Variations: Users are as Diverse as Systems](https://doi.org/10.1145/2806416.2806606)|Alistair Moffat, Falk Scholer, Paul Thomas, Peter Bailey||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pooled+Evaluation+Over+Query+Variations:+Users+are+as+Diverse+as+Systems)|15| -|[Query Length, Retrievability Bias and Performance](https://doi.org/10.1145/2806416.2806604)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Length,+Retrievability+Bias+and+Performance)|15| -|[Modeling Parameter Interactions in Ranking SVM](https://doi.org/10.1145/2806416.2806595)|Yaogong Zhang, Jun Xu, Yanyan Lan, Jiafeng Guo, Maoqiang Xie, Yalou Huang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Parameter+Interactions+in+Ranking+SVM)|15| -|[Towards Multi-level Provenance Reconstruction of Information Diffusion on Social Media](https://doi.org/10.1145/2806416.2806642)|Tom De Nies, Io Taxidou, Anastasia Dimou, Ruben Verborgh, Peter M. Fischer, Erik Mannens, Rik Van de Walle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Multi-level+Provenance+Reconstruction+of+Information+Diffusion+on+Social+Media)|15| -|[Profiling Pedestrian Distribution and Anomaly Detection in a Dynamic Environment](https://doi.org/10.1145/2806416.2806645)|Minh Tuan Doan, Sutharshan Rajasegarar, Mahsa Salehi, Masud Moshtaghi, Christopher Leckie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profiling+Pedestrian+Distribution+and+Anomaly+Detection+in+a+Dynamic+Environment)|15| -|[Identifying Attractive News Headlines for Social Media](https://doi.org/10.1145/2806416.2806631)|Sawa Kourogi, Hiroyuki Fujishiro, Akisato Kimura, Hitoshi Nishikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Attractive+News+Headlines+for+Social+Media)|15| -|[DAAV: Dynamic API Authority Vectors for Detecting Software Theft](https://doi.org/10.1145/2806416.2806646)|DongKyu Chae, SangWook Kim, Seongje Cho, Yesol Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DAAV:+Dynamic+API+Authority+Vectors+for+Detecting+Software+Theft)|14| -|[A Real-Time Eye Tracking Based Query Expansion Approach via Latent Topic Modeling](https://doi.org/10.1145/2806416.2806602)|Yongqiang Chen, Peng Zhang, Dawei Song, Benyou Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Real-Time+Eye+Tracking+Based+Query+Expansion+Approach+via+Latent+Topic+Modeling)|13| -|[A Probabilistic Rating Auto-encoder for Personalized Recommender Systems](https://doi.org/10.1145/2806416.2806633)|Huizhi Liang, Timothy Baldwin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Rating+Auto-encoder+for+Personalized+Recommender+Systems)|13| -|[On Query-Update Independence for SPARQL](https://doi.org/10.1145/2806416.2806586)|Nicola Guido, Pierre Genevès, Nabil Layaïda, Cécile Roisin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Query-Update+Independence+for+SPARQL)|12| +|[A Data-Driven Approach to Distinguish Cyber-Attacks from Physical Faults in a Smart Grid](https://doi.org/10.1145/2806416.2806648)|Adnan Anwar, Abdun Naser Mahmood, Zubair Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Data-Driven+Approach+to+Distinguish+Cyber-Attacks+from+Physical+Faults+in+a+Smart+Grid)|17| +|[Tumblr Blog Recommendation with Boosted Inductive Matrix Completion](https://doi.org/10.1145/2806416.2806578)|Donghyuk Shin, Suleyman Cetintas, KuangChih Lee, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tumblr+Blog+Recommendation+with+Boosted+Inductive+Matrix+Completion)|16| +|[Identifying Top-k Structural Hole Spanners in Large-Scale Social Networks](https://doi.org/10.1145/2806416.2806431)|Mojtaba Rezvani, Weifa Liang, Wenzheng Xu, Chengfei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-k+Structural+Hole+Spanners+in+Large-Scale+Social+Networks)|16| +|[Who Will You "@"?](https://doi.org/10.1145/2806416.2806458)|Yeyun Gong, Qi Zhang, Xuyang Sun, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+Will+You+"@"?)|16| +|[Balancing Novelty and Salience: Adaptive Learning to Rank Entities for Timeline Summarization of High-impact Events](https://doi.org/10.1145/2806416.2806486)|Tuan Tran, Claudia Niederée, Nattiya Kanhabua, Ujwal Gadiraju, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balancing+Novelty+and+Salience:+Adaptive+Learning+to+Rank+Entities+for+Timeline+Summarization+of+High-impact+Events)|16| +|[Ad Hoc Monitoring of Vocabulary Shifts over Time](https://doi.org/10.1145/2806416.2806474)|Tom Kenter, Melvin Wevers, Pim Huijnen, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ad+Hoc+Monitoring+of+Vocabulary+Shifts+over+Time)|16| +|[Chronological Citation Recommendation with Information-Need Shifting](https://doi.org/10.1145/2806416.2806567)|Zhuoren Jiang, Xiaozhong Liu, Liangcai Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Chronological+Citation+Recommendation+with+Information-Need+Shifting)|16| +|[Robust Subspace Clustering via Tighter Rank Approximation](https://doi.org/10.1145/2806416.2806506)|Zhao Kang, Chong Peng, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Subspace+Clustering+via+Tighter+Rank+Approximation)|15| +|[Viewability Prediction for Online Display Ads](https://doi.org/10.1145/2806416.2806536)|Chong Wang, Achir Kalra, Cristian Borcea, Yi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Viewability+Prediction+for+Online+Display+Ads)|15| +|[Rank Consistency based Multi-View Learning: A Privacy-Preserving Approach](https://doi.org/10.1145/2806416.2806552)|HanJia Ye, DeChuan Zhan, Yuan Miao, Yuan Jiang, ZhiHua Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rank+Consistency+based+Multi-View+Learning:+A+Privacy-Preserving+Approach)|15| +|[Finding Probabilistic k-Skyline Sets on Uncertain Data](https://doi.org/10.1145/2806416.2806452)|Jinfei Liu, Haoyu Zhang, Li Xiong, Haoran Li, Jun Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+Probabilistic+k-Skyline+Sets+on+Uncertain+Data)|15| +|[Semi-Automated Text Classification for Sensitivity Identification](https://doi.org/10.1145/2806416.2806597)|Giacomo Berardi, Andrea Esuli, Craig Macdonald, Iadh Ounis, Fabrizio Sebastiani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Automated+Text+Classification+for+Sensitivity+Identification)|15| +|[External Data Access And Indexing In AsterixDB](https://doi.org/10.1145/2806416.2806428)|Abdullah Abdulrahman Alamoudi, Raman Grover, Michael J. Carey, Vinayak R. Borkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+Data+Access+And+Indexing+In+AsterixDB)|14| +|[Characterizing and Predicting Voice Query Reformulation](https://doi.org/10.1145/2806416.2806491)|Ahmed Hassan Awadallah, Ranjitha Gurunath Kulkarni, Umut Ozertem, Rosie Jones||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+and+Predicting+Voice+Query+Reformulation)|14| +|[Node Immunization over Infectious Period](https://doi.org/10.1145/2806416.2806522)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Node+Immunization+over+Infectious+Period)|14| +|[Sampling Big Trajectory Data](https://doi.org/10.1145/2806416.2806422)|Yanhua Li, ChiYin Chow, Ke Deng, Mingxuan Yuan, Jia Zeng, JiaDong Zhang, Qiang Yang, ZhiLi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sampling+Big+Trajectory+Data)|14| +|[Classification with Active Learning and Meta-Paths in Heterogeneous Information Networks](https://doi.org/10.1145/2806416.2806507)|Chang Wan, Xiang Li, Ben Kao, Xiao Yu, Quanquan Gu, David WaiLok Cheung, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Classification+with+Active+Learning+and+Meta-Paths+in+Heterogeneous+Information+Networks)|13| +|[Context-Adaptive Matrix Factorization for Multi-Context Recommendation](https://doi.org/10.1145/2806416.2806503)|Tong Man, Huawei Shen, Junming Huang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Context-Adaptive+Matrix+Factorization+for+Multi-Context+Recommendation)|13| +|[Topic Modeling in Semantic Space with Keywords](https://doi.org/10.1145/2806416.2806584)|Xiaojia Pu, Rong Jin, Gangshan Wu, Dingyi Han, GuiRong Xue||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topic+Modeling+in+Semantic+Space+with+Keywords)|13| +|[Fast Distributed Correlation Discovery Over Streaming Time-Series Data](https://doi.org/10.1145/2806416.2806440)|Tian Guo, Saket Sathe, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Distributed+Correlation+Discovery+Over+Streaming+Time-Series+Data)|13| +|[Where you Instagram?: Associating Your Instagram Photos with Points of Interest](https://doi.org/10.1145/2806416.2806463)|Xutao Li, TuanAnh Nguyen Pham, Gao Cong, Quan Yuan, Xiaoli Li, Shonali Krishnaswamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+you+Instagram?:+Associating+Your+Instagram+Photos+with+Points+of+Interest)|13| +|[What Users Ask a Search Engine: Analyzing One Billion Russian Question Queries](https://doi.org/10.1145/2806416.2806457)|Michael Völske, Pavel Braslavski, Matthias Hagen, Galina Lezina, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+Users+Ask+a+Search+Engine:+Analyzing+One+Billion+Russian+Question+Queries)|13| +|[Toward Dual Roles of Users in Recommender Systems](https://doi.org/10.1145/2806416.2806520)|Suhang Wang, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+Dual+Roles+of+Users+in+Recommender+Systems)|13| +|[Social-Relational Topic Model for Social Networks](https://doi.org/10.1145/2806416.2806611)|Weiyu Guo, Shu Wu, Liang Wang, Tieniu Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social-Relational+Topic+Model+for+Social+Networks)|13| +|[ASEM: Mining Aspects and Sentiment of Events from Microblog](https://doi.org/10.1145/2806416.2806622)|Ruhui Wang, Weijing Huang, Wei Chen, Tengjiao Wang, Kai Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ASEM:+Mining+Aspects+and+Sentiment+of+Events+from+Microblog)|13| +|[Extracting Interest Tags for Non-famous Users in Social Network](https://doi.org/10.1145/2806416.2806514)|Wei He, Hongyan Liu, Jun He, Shu Tang, Xiaoyong Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Interest+Tags+for+Non-famous+Users+in+Social+Network)|12| +|[Modeling Individual-Level Infection Dynamics Using Social Network Information](https://doi.org/10.1145/2806416.2806575)|Suppawong Tuarob, Conrad S. Tucker, Marcel Salathé, Nilam Ram||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Individual-Level+Infection+Dynamics+Using+Social+Network+Information)|12| |[Balancing Exploration and Exploitation: Empirical Parameterization of Exploratory Search Systems](https://doi.org/10.1145/2806416.2806609)|Kumaripaba Athukorala, Alan Medlar, Kalle Ilves, Dorota Glowacka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balancing+Exploration+and+Exploitation:+Empirical+Parameterization+of+Exploratory+Search+Systems)|12| -|[Building Effective Query Classifiers: A Case Study in Self-harm Intent Detection](https://doi.org/10.1145/2806416.2806594)|Ashiqur R. KhudaBukhsh, Paul N. Bennett, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Effective+Query+Classifiers:+A+Case+Study+in+Self-harm+Intent+Detection)|12| -|[Detecting Check-worthy Factual Claims in Presidential Debates](https://doi.org/10.1145/2806416.2806652)|Naeemul Hassan, Chengkai Li, Mark Tremayne||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Check-worthy+Factual+Claims+in+Presidential+Debates)|12| -|[Improving Label Quality in Crowdsourcing Using Noise Correction](https://doi.org/10.1145/2806416.2806627)|Jing Zhang, Victor S. Sheng, Jian Wu, Xiaoqin Fu, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Label+Quality+in+Crowdsourcing+Using+Noise+Correction)|12| -|[Know Your Onions: Understanding the User Experience with the Knowledge Module in Web Search](https://doi.org/10.1145/2806416.2806591)|Ioannis Arapakis, Luis A. Leiva, Berkant Barla Cambazoglu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Know+Your+Onions:+Understanding+the+User+Experience+with+the+Knowledge+Module+in+Web+Search)|11| -|[On Predicting Deletions of Microblog Posts](https://doi.org/10.1145/2806416.2806600)|Mossaab Bagdouri, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Predicting+Deletions+of+Microblog+Posts)|11| -|[Semi-Automated Text Classification for Sensitivity Identification](https://doi.org/10.1145/2806416.2806597)|Giacomo Berardi, Andrea Esuli, Craig Macdonald, Iadh Ounis, Fabrizio Sebastiani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Automated+Text+Classification+for+Sensitivity+Identification)|11| -|[Clustered Semi-Supervised Relevance Feedback](https://doi.org/10.1145/2806416.2806596)|Kripabandhu Ghosh, Swapan Kumar Parui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustered+Semi-Supervised+Relevance+Feedback)|11| -|[A Study of Query Length Heuristics in Information Retrieval](https://doi.org/10.1145/2806416.2806592)|Yuanhua Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Query+Length+Heuristics+in+Information+Retrieval)|11| -|[Detect Rumors Using Time Series of Social Context Information on Microblogging Websites](https://doi.org/10.1145/2806416.2806607)|Jing Ma, Wei Gao, Zhongyu Wei, Yueming Lu, KamFai Wong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detect+Rumors+Using+Time+Series+of+Social+Context+Information+on+Microblogging+Websites)|11| -|[Atypical Queries in eCommerce](https://doi.org/10.1145/2806416.2806605)|Neeraj Pradhan, Vinay Deolalikar, Kang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Atypical+Queries+in+eCommerce)|11| -|[Improving Event Detection by Automatically Assessing Validity of Event Occurrence in Text](https://doi.org/10.1145/2806416.2806624)|Andrea Ceroni, Ujwal Kumar Gadiraju, Marco Fisichella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Event+Detection+by+Automatically+Assessing+Validity+of+Event+Occurrence+in+Text)|11| -|[Where You Go Reveals Who You Know: Analyzing Social Ties from Millions of Footprints](https://doi.org/10.1145/2806416.2806653)|HsunPing Hsieh, Rui Yan, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+You+Go+Reveals+Who+You+Know:+Analyzing+Social+Ties+from+Millions+of+Footprints)|11| -|[Real-time Rumor Debunking on Twitter](https://doi.org/10.1145/2806416.2806651)|Xiaomo Liu, Armineh Nourbakhsh, Quanzhi Li, Rui Fang, Sameena Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-time+Rumor+Debunking+on+Twitter)|11| -|[Structured Sparse Regression for Recommender Systems](https://doi.org/10.1145/2806416.2806641)|Mingjie Qian, Liangjie Hong, Yue Shi, Suju Rajan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+Sparse+Regression+for+Recommender+Systems)|11| -|[Improving Collaborative Filtering via Hidden Structured Constraint](https://doi.org/10.1145/2806416.2806623)|Qing Zhang, Houfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Collaborative+Filtering+via+Hidden+Structured+Constraint)|11| -|[Slow Search: Improving Information Retrieval Using Human Assistance](https://doi.org/10.1145/2806416.2806417)|Jaime Teevan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Slow+Search:+Improving+Information+Retrieval+Using+Human+Assistance)|10| -|[On the Effect of "Stupid" Search Components on User Interaction with Search Engines](https://doi.org/10.1145/2806416.2806601)|Lidia Grauer, Aleksandra Lomakina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Effect+of+"Stupid"+Search+Components+on+User+Interaction+with+Search+Engines)|10| -|[Social-Relational Topic Model for Social Networks](https://doi.org/10.1145/2806416.2806611)|Weiyu Guo, Shu Wu, Liang Wang, Tieniu Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social-Relational+Topic+Model+for+Social+Networks)|10| -|[A Convolutional Click Prediction Model](https://doi.org/10.1145/2806416.2806603)|Qiang Liu, Feng Yu, Shu Wu, Liang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Convolutional+Click+Prediction+Model)|10| -|[Bottom-up Faceted Search: Creating Search Neighbourhoods with Datacube Cells](https://doi.org/10.1145/2806416.2806593)|Mark Sifer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bottom-up+Faceted+Search:+Creating+Search+Neighbourhoods+with+Datacube+Cells)|10| -|[Top-k Reliable Edge Colors in Uncertain Graphs](https://doi.org/10.1145/2806416.2806619)|Arijit Khan, Francesco Gullo, Thomas Wohler, Francesco Bonchi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-k+Reliable+Edge+Colors+in+Uncertain+Graphs)|10| -|[Identifying Top-k Consistent News-Casters on Twitter](https://doi.org/10.1145/2806416.2806649)|Sahisnu Mazumder, Sameep Mehta, Dhaval Patel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-k+Consistent+News-Casters+on+Twitter)|10| -|[DeepCamera: A Unified Framework for Recognizing Places-of-Interest based on Deep ConvNets](https://doi.org/10.1145/2806416.2806620)|Pai Peng, Hongxiang Chen, Lidan Shou, Ke Chen, Gang Chen, Chang Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepCamera:+A+Unified+Framework+for+Recognizing+Places-of-Interest+based+on+Deep+ConvNets)|10| -|[ECol 2015: First international workshop on the Evaluation on Collaborative Information Seeking and Retrieval](https://doi.org/10.1145/2806416.2806881)|Leif Azzopardi, Jeremy Pickens, Tetsuya Sakai, Laure Soulier, Lynda Tamine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ECol+2015:+First+international+workshop+on+the+Evaluation+on+Collaborative+Information+Seeking+and+Retrieval)|10| -|[Co-clustering Document-term Matrices by Direct Maximization of Graph Modularity](https://doi.org/10.1145/2806416.2806639)|Melissa Ailem, François Role, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Co-clustering+Document-term+Matrices+by+Direct+Maximization+of+Graph+Modularity)|9| -|[Probabilistic Non-negative Inconsistent-resolution Matrices Factorization](https://doi.org/10.1145/2806416.2806636)|Masahiro Kohjima, Tatsushi Matsubayashi, Hiroshi Sawada||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Non-negative+Inconsistent-resolution+Matrices+Factorization)|9| -|[Core-Sets For Canonical Correlation Analysis](https://doi.org/10.1145/2806416.2806618)|Saurabh Paul||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Core-Sets+For+Canonical+Correlation+Analysis)|9| -|[ASEM: Mining Aspects and Sentiment of Events from Microblog](https://doi.org/10.1145/2806416.2806622)|Ruhui Wang, Weijing Huang, Wei Chen, Tengjiao Wang, Kai Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ASEM:+Mining+Aspects+and+Sentiment+of+Events+from+Microblog)|9| -|[RoadRank: Traffic Diffusion and Influence Estimation in Dynamic Urban Road Networks](https://doi.org/10.1145/2806416.2806588)|Tarique Anwar, Chengfei Liu, Hai Le Vu, Md. Saiful Islam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RoadRank:+Traffic+Diffusion+and+Influence+Estimation+in+Dynamic+Urban+Road+Networks)|8| -|[Message Clustering based Matrix Factorization Model for Retweeting Behavior Prediction](https://doi.org/10.1145/2806416.2806650)|Bo Jiang, Jiguang Liang, Ying Sha, Lihong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Message+Clustering+based+Matrix+Factorization+Model+for+Retweeting+Behavior+Prediction)|8| -|[Fraud Transaction Recognition: A Money Flow Network Approach](https://doi.org/10.1145/2806416.2806647)|Renxin Mao, Zhao Li, Jinhua Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fraud+Transaction+Recognition:+A+Money+Flow+Network+Approach)|8| -|[A Fast k-Nearest Neighbor Search Using Query-Specific Signature Selection](https://doi.org/10.1145/2806416.2806632)|Youngki Park, Heasoo Hwang, Sanggoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fast+k-Nearest+Neighbor+Search+Using+Query-Specific+Signature+Selection)|8| +|[Towards Multi-level Provenance Reconstruction of Information Diffusion on Social Media](https://doi.org/10.1145/2806416.2806642)|Tom De Nies, Io Taxidou, Anastasia Dimou, Ruben Verborgh, Peter M. Fischer, Erik Mannens, Rik Van de Walle||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Multi-level+Provenance+Reconstruction+of+Information+Diffusion+on+Social+Media)|12| +|[Dynamic Resource Management In a Massively Parallel Stream Processing Engine](https://doi.org/10.1145/2806416.2806449)|Kasper Grud Skat Madsen, Yongluan Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dynamic+Resource+Management+In+a+Massively+Parallel+Stream+Processing+Engine)|11| +|[Data Driven Water Pipe Failure Prediction: A Bayesian Nonparametric Approach](https://doi.org/10.1145/2806416.2806509)|Peng Lin, Bang Zhang, Yi Wang, Zhidong Li, Bin Li, Yang Wang, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Driven+Water+Pipe+Failure+Prediction:+A+Bayesian+Nonparametric+Approach)|11| +|[GLUE: a Parameter-Tuning-Free Map Updating System](https://doi.org/10.1145/2806416.2806425)|Hao Wu, Chuanchuan Tu, Weiwei Sun, Baihua Zheng, Hao Su, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GLUE:+a+Parameter-Tuning-Free+Map+Updating+System)|11| +|[A Cost-based Method for Location-Aware Publish/Subscribe Services](https://doi.org/10.1145/2806416.2806427)|Minghe Yu, Guoliang Li, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Cost-based+Method+for+Location-Aware+Publish/Subscribe+Services)|11| +|[Crowdsourcing Pareto-Optimal Object Finding By Pairwise Comparisons](https://doi.org/10.1145/2806416.2806451)|Abolfazl Asudeh, Gensheng Zhang, Naeemul Hassan, Chengkai Li, Gergely V. Záruba||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing+Pareto-Optimal+Object+Finding+By+Pairwise+Comparisons)|11| +|[Practical Aspects of Sensitivity in Online Experimentation with User Engagement Metrics](https://doi.org/10.1145/2806416.2806496)|Alexey Drutsa, Anna Ufliand, Gleb Gusev||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Practical+Aspects+of+Sensitivity+in+Online+Experimentation+with+User+Engagement+Metrics)|11| +|[Exploiting Document Content for Efficient Aggregation of Crowdsourcing Votes](https://doi.org/10.1145/2806416.2806460)|Martin Davtyan, Carsten Eickhoff, Thomas Hofmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Document+Content+for+Efficient+Aggregation+of+Crowdsourcing+Votes)|11| +|[Protecting Your Children from Inappropriate Content in Mobile Apps: An Automatic Maturity Rating Framework](https://doi.org/10.1145/2806416.2806579)|Bing Hu, Bin Liu, Neil Zhenqiang Gong, Deguang Kong, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Protecting+Your+Children+from+Inappropriate+Content+in+Mobile+Apps:+An+Automatic+Maturity+Rating+Framework)|11| +|[Inclusion Dependencies Reloaded](https://doi.org/10.1145/2806416.2806539)|Henning Köhler, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inclusion+Dependencies+Reloaded)|11| +|[Does Vertical Bring more Satisfaction?: Predicting Search Satisfaction in a Heterogeneous Environment](https://doi.org/10.1145/2806416.2806473)|Ye Chen, Yiqun Liu, Ke Zhou, Meng Wang, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Does+Vertical+Bring+more+Satisfaction?:+Predicting+Search+Satisfaction+in+a+Heterogeneous+Environment)|11| +|[RoadRank: Traffic Diffusion and Influence Estimation in Dynamic Urban Road Networks](https://doi.org/10.1145/2806416.2806588)|Tarique Anwar, Chengfei Liu, Hai Le Vu, Md. Saiful Islam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RoadRank:+Traffic+Diffusion+and+Influence+Estimation+in+Dynamic+Urban+Road+Networks)|11| +|[Message Clustering based Matrix Factorization Model for Retweeting Behavior Prediction](https://doi.org/10.1145/2806416.2806650)|Bo Jiang, Jiguang Liang, Ying Sha, Lihong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Message+Clustering+based+Matrix+Factorization+Model+for+Retweeting+Behavior+Prediction)|11| +|[Mining the Minds of Customers from Online Chat Logs](https://doi.org/10.1145/2806416.2806621)|Kunwoo Park, Jaewoo Kim, Jaram Park, Meeyoung Cha, Jiin Nam, Seunghyun Yoon, Eunhee Rhim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+the+Minds+of+Customers+from+Online+Chat+Logs)|11| +|[Experiments with a Venue-Centric Model for Personalisedand Time-Aware Venue Suggestion](https://doi.org/10.1145/2806416.2806484)|Romain Deveaud, MDyaa Albakour, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Experiments+with+a+Venue-Centric+Model+for+Personalisedand+Time-Aware+Venue+Suggestion)|10| +|[Forming Online Support Groups for Internet and Behavior Related Addictions](https://doi.org/10.1145/2806416.2806423)|ChihYa Shen, HongHan Shuai, DeNian Yang, YiFeng Lan, WangChien Lee, Philip S. Yu, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forming+Online+Support+Groups+for+Internet+and+Behavior+Related+Addictions)|10| +|[Discovering Canonical Correlations between Topical and Topological Information in Document Networks](https://doi.org/10.1145/2806416.2806518)|Yuan He, Cheng Wang, Changjun Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Canonical+Correlations+between+Topical+and+Topological+Information+in+Document+Networks)|10| +|[Efficient Incremental Evaluation of Succinct Regular Expressions](https://doi.org/10.1145/2806416.2806434)|Henrik Björklund, Wim Martens, Thomas Timm||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Incremental+Evaluation+of+Succinct+Regular+Expressions)|10| +|[On Predicting Deletions of Microblog Posts](https://doi.org/10.1145/2806416.2806600)|Mossaab Bagdouri, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Predicting+Deletions+of+Microblog+Posts)|10| +|[Fraud Transaction Recognition: A Money Flow Network Approach](https://doi.org/10.1145/2806416.2806647)|Renxin Mao, Zhao Li, Jinhua Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fraud+Transaction+Recognition:+A+Money+Flow+Network+Approach)|10| +|[Improving Label Quality in Crowdsourcing Using Noise Correction](https://doi.org/10.1145/2806416.2806627)|Jing Zhang, Victor S. Sheng, Jian Wu, Xiaoqin Fu, Xindong Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Label+Quality+in+Crowdsourcing+Using+Noise+Correction)|10| +|[Clustering-based Active Learning on Sensor Type Classification in Buildings](https://doi.org/10.1145/2806416.2806574)|Dezhi Hong, Hongning Wang, Kamin Whitehouse||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering-based+Active+Learning+on+Sensor+Type+Classification+in+Buildings)|9| +|[Improving Microblog Retrieval with Feedback Entity Model](https://doi.org/10.1145/2806416.2806461)|Feifan Fan, Runwei Qiang, Chao Lv, Jianwu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Microblog+Retrieval+with+Feedback+Entity+Model)|9| +|[Learning Entity Types from Query Logs via Graph-Based Modeling](https://doi.org/10.1145/2806416.2806498)|Jingyuan Zhang, Luo Jie, Altaf Rahman, Sihong Xie, Yi Chang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Entity+Types+from+Query+Logs+via+Graph-Based+Modeling)|9| +|[Generalized Team Draft Interleaving](https://doi.org/10.1145/2806416.2806477)|Eugene Kharitonov, Craig Macdonald, Pavel Serdyukov, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalized+Team+Draft+Interleaving)|9| +|[A Probabilistic Framework for Temporal User Modeling on Microblogs](https://doi.org/10.1145/2806416.2806470)|Jitao Sang, Dongyuan Lu, Changsheng Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Framework+for+Temporal+User+Modeling+on+Microblogs)|9| +|[Improving Ranking Consistency for Web Search by Leveraging a Knowledge Base and Search Logs](https://doi.org/10.1145/2806416.2806479)|JyunYu Jiang, Jing Liu, ChinYew Lin, PuJen Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Ranking+Consistency+for+Web+Search+by+Leveraging+a+Knowledge+Base+and+Search+Logs)|9| +|[Defragging Subgraph Features for Graph Classification](https://doi.org/10.1145/2806416.2806585)|Haishuai Wang, Peng Zhang, Ivor W. Tsang, Ling Chen, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Defragging+Subgraph+Features+for+Graph+Classification)|9| +|[Personalized Federated Search at LinkedIn](https://doi.org/10.1145/2806416.2806615)|Dhruv Arya, Viet HaThuc, Shakti Sinha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Federated+Search+at+LinkedIn)|9| +|[Profiling Pedestrian Distribution and Anomaly Detection in a Dynamic Environment](https://doi.org/10.1145/2806416.2806645)|Minh Tuan Doan, Sutharshan Rajasegarar, Mahsa Salehi, Masud Moshtaghi, Christopher Leckie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profiling+Pedestrian+Distribution+and+Anomaly+Detection+in+a+Dynamic+Environment)|9| +|[Heterogeneous Multi-task Semantic Feature Learning for Classification](https://doi.org/10.1145/2806416.2806644)|Xin Jin, Fuzhen Zhuang, Sinno Jialin Pan, Changying Du, Ping Luo, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Heterogeneous+Multi-task+Semantic+Feature+Learning+for+Classification)|9| +|[Transductive Domain Adaptation with Affinity Learning](https://doi.org/10.1145/2806416.2806643)|Le Shu, Longin Jan Latecki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Transductive+Domain+Adaptation+with+Affinity+Learning)|9| +|[An Optimization Framework for Merging Multiple Result Lists](https://doi.org/10.1145/2806416.2806489)|ChiaJung Lee, Qingyao Ai, W. Bruce Croft, Daniel Sheldon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimization+Framework+for+Merging+Multiple+Result+Lists)|8| +|[gSparsify: Graph Motif Based Sparsification for Graph Clustering](https://doi.org/10.1145/2806416.2806543)|Peixiang Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=gSparsify:+Graph+Motif+Based+Sparsification+for+Graph+Clustering)|8| +|[Approximate Truth Discovery via Problem Scale Reduction](https://doi.org/10.1145/2806416.2806444)|Xianzhi Wang, Quan Z. Sheng, Xiu Susie Fang, Xue Li, Xiaofei Xu, Lina Yao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Truth+Discovery+via+Problem+Scale+Reduction)|8| +|[Associative Classification with Statistically Significant Positive and Negative Rules](https://doi.org/10.1145/2806416.2806524)|Jundong Li, Osmar R. Zaïane||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Associative+Classification+with+Statistically+Significant+Positive+and+Negative+Rules)|8| +|[ReverseCloak: Protecting Multi-level Location Privacy over Road Networks](https://doi.org/10.1145/2806416.2806437)|Chao Li, Balaji Palanisamy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ReverseCloak:+Protecting+Multi-level+Location+Privacy+over+Road+Networks)|8| +|[Interruption-Sensitive Empty Result Feedback: Rethinking the Visual Query Feedback Paradigm for Semistructured Data](https://doi.org/10.1145/2806416.2806432)|Sourav S. Bhowmick, Curtis E. Dyreson, Byron Choi, MinHwee Ang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interruption-Sensitive+Empty+Result+Feedback:+Rethinking+the+Visual+Query+Feedback+Paradigm+for+Semistructured+Data)|8| +|[Exploiting Game Theoretic Analysis for Link Recommendation in Social Networks](https://doi.org/10.1145/2806416.2806510)|Tong Zhao, H. Vicky Zhao, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Game+Theoretic+Analysis+for+Link+Recommendation+in+Social+Networks)|8| +|[Private Analysis of Infinite Data Streams via Retroactive Grouping](https://doi.org/10.1145/2806416.2806454)|Rui Chen, Yilin Shen, Hongxia Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Private+Analysis+of+Infinite+Data+Streams+via+Retroactive+Grouping)|8| +|[The Role Of Citation Context In Predicting Long-Term Citation Profiles: An Experimental Study Based On A Massive Bibliographic Text Dataset](https://doi.org/10.1145/2806416.2806566)|Mayank Singh, Vikas Patidar, Suhansanu Kumar, Tanmoy Chakraborty, Animesh Mukherjee, Pawan Goyal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+Of+Citation+Context+In+Predicting+Long-Term+Citation+Profiles:+An+Experimental+Study+Based+On+A+Massive+Bibliographic+Text+Dataset)|8| +|[Understanding the Impact of the Role Factor in Collaborative Information Retrieval](https://doi.org/10.1145/2806416.2806481)|Lynda Tamine, Laure Soulier||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+the+Impact+of+the+Role+Factor+in+Collaborative+Information+Retrieval)|7| +|[Concept-Based Relevance Models for Medical and Semantic Information Retrieval](https://doi.org/10.1145/2806416.2806497)|Chunye Wang, Ramakrishna Akella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Concept-Based+Relevance+Models+for+Medical+and+Semantic+Information+Retrieval)|7| +|[Entity and Aspect Extraction for Organizing News Comments](https://doi.org/10.1145/2806416.2806576)|Radityo Eko Prasojo, Mouna Kacimi, Werner Nutt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Entity+and+Aspect+Extraction+for+Organizing+News+Comments)|7| +|[A Min-Max Optimization Framework For Online Graph Classification](https://doi.org/10.1145/2806416.2806548)|Peng Yang, Peilin Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Min-Max+Optimization+Framework+For+Online+Graph+Classification)|7| +|[Time Series Analysis of Nursing Notes for Mortality Prediction via a State Transition Topic Model](https://doi.org/10.1145/2806416.2806541)|Yohan Jo, Natasha Loghmanpour, Carolyn P. Rosé||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time+Series+Analysis+of+Nursing+Notes+for+Mortality+Prediction+via+a+State+Transition+Topic+Model)|7| |[Personalized Recommendation Meets Your Next Favorite](https://doi.org/10.1145/2806416.2806598)|Qiang Song, Jian Cheng, Ting Yuan, Hanqing Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Recommendation+Meets+Your+Next+Favorite)|7| -|[Learning User Preferences for Topically Similar Documents](https://doi.org/10.1145/2806416.2806617)|Mustafa Zengin, Ben Carterette||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+User+Preferences+for+Topically+Similar+Documents)|7| -|[Mining the Minds of Customers from Online Chat Logs](https://doi.org/10.1145/2806416.2806621)|Kunwoo Park, Jaewoo Kim, Jaram Park, Meeyoung Cha, Jiin Nam, Seunghyun Yoon, Eunhee Rhim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+the+Minds+of+Customers+from+Online+Chat+Logs)|7| -|[Partially Labeled Data Tuple Can Optimize Multivariate Performance Measures](https://doi.org/10.1145/2806416.2806630)|Jim JingYan Wang, Xin Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Partially+Labeled+Data+Tuple+Can+Optimize+Multivariate+Performance+Measures)|7| -|[Modeling Infinite Topics on Social Behavior Data with Spatio-temporal Dependence](https://doi.org/10.1145/2806416.2806635)|Peng Wang, Peng Zhang, Chuan Zhou, Zhao Li, Guo Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Infinite+Topics+on+Social+Behavior+Data+with+Spatio-temporal+Dependence)|7| -|[Best First Over-Sampling for Multilabel Classification](https://doi.org/10.1145/2806416.2806634)|Xusheng Ai, Jian Wu, Victor S. Sheng, Yufeng Yao, Pengpeng Zhao, Zhiming Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Best+First+Over-Sampling+for+Multilabel+Classification)|6| -|[A Flash-aware Buffering Scheme using On-the-fly Redo](https://doi.org/10.1145/2806416.2806587)|KyoSung Jeong, SangWook Kim, Sungchae Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Flash-aware+Buffering+Scheme+using+On-the-fly+Redo)|5| -|[Defragging Subgraph Features for Graph Classification](https://doi.org/10.1145/2806416.2806585)|Haishuai Wang, Peng Zhang, Ivor W. Tsang, Ling Chen, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Defragging+Subgraph+Features+for+Graph+Classification)|5| -|[Personalized Federated Search at LinkedIn](https://doi.org/10.1145/2806416.2806615)|Dhruv Arya, Viet HaThuc, Shakti Sinha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Federated+Search+at+LinkedIn)|5| -|[Recommending Short-lived Dynamic Packages for Golf Booking Services](https://doi.org/10.1145/2806416.2806608)|Robin M. E. Swezey, Youngjoo Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+Short-lived+Dynamic+Packages+for+Golf+Booking+Services)|5| -|[Analyzing Document Intensive Business Processes using Ontology](https://doi.org/10.1145/2806416.2806638)|Suman Roychoudhury, Vinay Kulkarni, Nikhil Bellarykar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Document+Intensive+Business+Processes+using+Ontology)|5| -|[A Clustering-based Approach to Detect Probable Outcomes of Lawsuits](https://doi.org/10.1145/2806416.2806640)|Daniel Lemes Gribel, Maíra Gatti de Bayser, Leonardo Guerreiro Azevedo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Clustering-based+Approach+to+Detect+Probable+Outcomes+of+Lawsuits)|4| +|[Gauging Correct Relative Rankings For Similarity Search](https://doi.org/10.1145/2806416.2806610)|Weiren Yu, Julie A. McCann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gauging+Correct+Relative+Rankings+For+Similarity+Search)|7| +|[Improving Event Detection by Automatically Assessing Validity of Event Occurrence in Text](https://doi.org/10.1145/2806416.2806624)|Andrea Ceroni, Ujwal Kumar Gadiraju, Marco Fisichella||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Event+Detection+by+Automatically+Assessing+Validity+of+Event+Occurrence+in+Text)|7| +|[Collaborating between Local and Global Learning for Distributed Online Multiple Tasks](https://doi.org/10.1145/2806416.2806553)|Xin Jin, Ping Luo, Fuzhen Zhuang, Jia He, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborating+between+Local+and+Global+Learning+for+Distributed+Online+Multiple+Tasks)|6| +|[External Knowledge and Query Strategies in Active Learning: a Study in Clinical Information Extraction](https://doi.org/10.1145/2806416.2806550)|Mahnoosh Kholghi, Laurianne Sitbon, Guido Zuccon, Anthony N. Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=External+Knowledge+and+Query+Strategies+in+Active+Learning:+a+Study+in+Clinical+Information+Extraction)|6| +|[Scalable Facility Location for Massive Graphs on Pregel-like Systems](https://doi.org/10.1145/2806416.2806508)|Kiran Garimella, Gianmarco De Francisci Morales, Aristides Gionis, Mauro Sozio||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Facility+Location+for+Massive+Graphs+on+Pregel-like+Systems)|6| +|[Query Relaxation across Heterogeneous Data Sources](https://doi.org/10.1145/2806416.2806529)|Verena Kantere, George Orfanoudakis, Anastasios Kementsietsidis, Timos K. Sellis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Relaxation+across+Heterogeneous+Data+Sources)|6| +|[Profession-Based Person Search in Microblogs: Using Seed Sets to Find Journalists](https://doi.org/10.1145/2806416.2806466)|Mossaab Bagdouri, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profession-Based+Person+Search+in+Microblogs:+Using+Seed+Sets+to+Find+Journalists)|6| +|[Collaborative Prediction for Multi-entity Interaction With Hierarchical Representation](https://doi.org/10.1145/2806416.2806530)|Qiang Liu, Shu Wu, Liang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Prediction+for+Multi-entity+Interaction+With+Hierarchical+Representation)|6| +|[Lingo: Linearized Grassmannian Optimization for Nuclear Norm Minimization](https://doi.org/10.1145/2806416.2806532)|Qian Li, Wenjia Niu, Gang Li, Yanan Cao, Jianlong Tan, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lingo:+Linearized+Grassmannian+Optimization+for+Nuclear+Norm+Minimization)|6| +|[WaveCluster with Differential Privacy](https://doi.org/10.1145/2806416.2806546)|Ling Chen, Ting Yu, Rada Chirkova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=WaveCluster+with+Differential+Privacy)|6| +|[Parallel Lazy Semi-Naive Bayes Strategies for Effective and Efficient Document Classification](https://doi.org/10.1145/2806416.2806565)|Felipe Viegas, Marcos André Gonçalves, Wellington Martins, Leonardo Rocha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+Lazy+Semi-Naive+Bayes+Strategies+for+Effective+and+Efficient+Document+Classification)|6| +|[Semi-Automated Exploration of Data Warehouses](https://doi.org/10.1145/2806416.2806538)|Thibault Sellam, Emmanuel Müller, Martin L. Kersten||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Automated+Exploration+of+Data+Warehouses)|6| +|[Comprehensible Models for Reconfiguring Enterprise Relational Databases to Avoid Incidents](https://doi.org/10.1145/2806416.2806448)|Ioana Giurgiu, Mirela Botezatu, Dorothea Wiesmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Comprehensible+Models+for+Reconfiguring+Enterprise+Relational+Databases+to+Avoid+Incidents)|6| +|[Building Representative Composite Items](https://doi.org/10.1145/2806416.2806465)|Vincent Leroy, Sihem AmerYahia, Éric Gaussier, Seyed Hamid Mirisaee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Representative+Composite+Items)|6| +|[Central Topic Model for Event-oriented Topics Mining in Microblog Stream](https://doi.org/10.1145/2806416.2806561)|Min Peng, Jiahui Zhu, Xuhui Li, Jiajia Huang, Hua Wang, Yanchun Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Central+Topic+Model+for+Event-oriented+Topics+Mining+in+Microblog+Stream)|6| +|[A Structured Query Model for the Deep Relational Web](https://doi.org/10.1145/2806416.2806589)|Hasan M. Jamil, H. V. Jagadish||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Structured+Query+Model+for+the+Deep+Relational+Web)|6| +|[Know Your Onions: Understanding the User Experience with the Knowledge Module in Web Search](https://doi.org/10.1145/2806416.2806591)|Ioannis Arapakis, Luis A. Leiva, Berkant Barla Cambazoglu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Know+Your+Onions:+Understanding+the+User+Experience+with+the+Knowledge+Module+in+Web+Search)|6| +|[Probabilistic Non-negative Inconsistent-resolution Matrices Factorization](https://doi.org/10.1145/2806416.2806636)|Masahiro Kohjima, Tatsushi Matsubayashi, Hiroshi Sawada||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Non-negative+Inconsistent-resolution+Matrices+Factorization)|6| +|[A Parallel GPU-Based Approach to Clustering Very Fast Data Streams](https://doi.org/10.1145/2806416.2806545)|Pengtao Huang, Xiu Li, Bo Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Parallel+GPU-Based+Approach+to+Clustering+Very+Fast+Data+Streams)|5| +|[MAPer: A Multi-scale Adaptive Personalized Model for Temporal Human Behavior Prediction](https://doi.org/10.1145/2806416.2806562)|Sarah Masud Preum, John A. Stankovic, Yanjun Qi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MAPer:+A+Multi-scale+Adaptive+Personalized+Model+for+Temporal+Human+Behavior+Prediction)|5| +|[Process-Driven Data Privacy](https://doi.org/10.1145/2806416.2806580)|Weiyi Xia, Murat Kantarcioglu, Zhiyu Wan, Raymond Heatherly, Yevgeniy Vorobeychik, Bradley A. Malin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Process-Driven+Data+Privacy)|5| +|[F1: Accelerating the Optimization of Aggregate Continuous Queries](https://doi.org/10.1145/2806416.2806450)|Anatoli U. Shein, Panos K. Chrysanthis, Alexandros Labrinidis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=F1:+Accelerating+the+Optimization+of+Aggregate+Continuous+Queries)|5| +|[What Is a Network Community?: A Novel Quality Function and Detection Algorithms](https://doi.org/10.1145/2806416.2806555)|Atsushi Miyauchi, Yasushi Kawase||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=What+Is+a+Network+Community?:+A+Novel+Quality+Function+and+Detection+Algorithms)|5| +|[Behavioral Dynamics from the SERP's Perspective: What are Failed SERPs and How to Fix Them?](https://doi.org/10.1145/2806416.2806483)|Julia Kiseleva, Jaap Kamps, Vadim Nikulin, Nikita Makarov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Behavioral+Dynamics+from+the+SERP's+Perspective:+What+are+Failed+SERPs+and+How+to+Fix+Them?)|5| +|[Building Effective Query Classifiers: A Case Study in Self-harm Intent Detection](https://doi.org/10.1145/2806416.2806594)|Ashiqur R. KhudaBukhsh, Paul N. Bennett, Ryen W. White||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Effective+Query+Classifiers:+A+Case+Study+in+Self-harm+Intent+Detection)|5| +|[A Study of Query Length Heuristics in Information Retrieval](https://doi.org/10.1145/2806416.2806592)|Yuanhua Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Query+Length+Heuristics+in+Information+Retrieval)|5| +|[Top-k Reliable Edge Colors in Uncertain Graphs](https://doi.org/10.1145/2806416.2806619)|Arijit Khan, Francesco Gullo, Thomas Wohler, Francesco Bonchi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-k+Reliable+Edge+Colors+in+Uncertain+Graphs)|5| +|[Modeling Infinite Topics on Social Behavior Data with Spatio-temporal Dependence](https://doi.org/10.1145/2806416.2806635)|Peng Wang, Peng Zhang, Chuan Zhou, Zhao Li, Guo Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Infinite+Topics+on+Social+Behavior+Data+with+Spatio-temporal+Dependence)|5| +|[A Soft Computing Approach for Learning to Aggregate Rankings](https://doi.org/10.1145/2806416.2806478)|Javier Alvaro Vargas Muñoz, Ricardo da Silva Torres, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Soft+Computing+Approach+for+Learning+to+Aggregate+Rankings)|4| +|[On the Cost of Extracting Proximity Features for Term-Dependency Models](https://doi.org/10.1145/2806416.2806467)|Xiaolu Lu, Alistair Moffat, J. Shane Culpepper||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Cost+of+Extracting+Proximity+Features+for+Term-Dependency+Models)|4| +|[Mining Brokers in Dynamic Social Networks](https://doi.org/10.1145/2806416.2806468)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Brokers+in+Dynamic+Social+Networks)|4| +|[MF-Tree: Matrix Factorization Tree for Large Multi-Class Learning](https://doi.org/10.1145/2806416.2806540)|Lei Liu, PangNing Tan, Xi Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MF-Tree:+Matrix+Factorization+Tree+for+Large+Multi-Class+Learning)|4| +|[Deriving Intensional Descriptions for Web Services](https://doi.org/10.1145/2806416.2806447)|Maria Koutraki, Dan Vodislav, Nicoleta Preda||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deriving+Intensional+Descriptions+for+Web+Services)|4| +|[Weighted Similarity Estimation in Data Streams](https://doi.org/10.1145/2806416.2806515)|Konstantin Kutzkov, Mohamed Ahmed, Sofia Nikitaki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weighted+Similarity+Estimation+in+Data+Streams)|4| +|[Learning Task Grouping using Supervised Task Space Partitioning in Lifelong Multitask Learning](https://doi.org/10.1145/2806416.2806570)|Meenakshi Mishra, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Task+Grouping+using+Supervised+Task+Space+Partitioning+in+Lifelong+Multitask+Learning)|4| +|[Learning Relative Similarity from Data Streams: Active Online Learning Approaches](https://doi.org/10.1145/2806416.2806464)|Shuji Hao, Peilin Zhao, Steven C. H. Hoi, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Relative+Similarity+from+Data+Streams:+Active+Online+Learning+Approaches)|4| +|[Efficient Sparse Matrix Multiplication on GPU for Large Social Network Analysis](https://doi.org/10.1145/2806416.2806445)|YongYeon Jo, SangWook Kim, DuckHo Bae||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Sparse+Matrix+Multiplication+on+GPU+for+Large+Social+Network+Analysis)|4| +|[Structural Constraints for Multipartite Entity Resolution with Markov Logic Network](https://doi.org/10.1145/2806416.2806590)|Tengyuan Ye, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural+Constraints+for+Multipartite+Entity+Resolution+with+Markov+Logic+Network)|4| +|[Multi-view Clustering via Structured Low-rank Representation](https://doi.org/10.1145/2806416.2806629)|Dong Wang, Qiyue Yin, Ran He, Liang Wang, Tieniu Tan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-view+Clustering+via+Structured+Low-rank+Representation)|4| +|[Category-Driven Approach for Local Related Business Recommendations](https://doi.org/10.1145/2806416.2806495)|Yonathan Perez, Michael Schueppert, Matthew Lawlor, Shaunak Kishore||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Category-Driven+Approach+for+Local+Related+Business+Recommendations)|3| +|[Sentiment Extraction by Leveraging Aspect-Opinion Association Structure](https://doi.org/10.1145/2806416.2806525)|Li Zhao, Minlie Huang, Jiashen Sun, Hengliang Luo, Xiankai Yang, Xiaoyan Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment+Extraction+by+Leveraging+Aspect-Opinion+Association+Structure)|3| +|[Implementing Query Completeness Reasoning](https://doi.org/10.1145/2806416.2806439)|Werner Nutt, Sergey Paramonov, Ognjen Savkovic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Implementing+Query+Completeness+Reasoning)|3| +|[Weakly Supervised Natural Language Processing Framework for Abstractive Multi-Document Summarization: Weakly Supervised Abstractive Multi-Document Summarization](https://doi.org/10.1145/2806416.2806494)|Peng Li, Tom Weidong Cai, Heng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weakly+Supervised+Natural+Language+Processing+Framework+for+Abstractive+Multi-Document+Summarization:+Weakly+Supervised+Abstractive+Multi-Document+Summarization)|3| +|[DifRec: A Social-Diffusion-Aware Recommender System](https://doi.org/10.1145/2806416.2806559)|Hossein Vahabi, Iordanis Koutsopoulos, Francesco Gullo, Maria Halkidi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DifRec:+A+Social-Diffusion-Aware+Recommender+System)|3| +|[Querying Temporal Drifts at Multiple Granularities](https://doi.org/10.1145/2806416.2806436)|Sofia Kleisarchaki, Sihem AmerYahia, Ahlame Douzal Chouakria, Vassilis Christophides||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+Temporal+Drifts+at+Multiple+Granularities)|3| +|[Identification of Microblogs Prominent Users during Events by Learning Temporal Sequences of Features](https://doi.org/10.1145/2806416.2806612)|Imen Bizid, Nibal Nayef, Patrice Boursier, Sami Faïz, Antoine Doucet||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identification+of+Microblogs+Prominent+Users+during+Events+by+Learning+Temporal+Sequences+of+Features)|3| +|[A Real-Time Eye Tracking Based Query Expansion Approach via Latent Topic Modeling](https://doi.org/10.1145/2806416.2806602)|Yongqiang Chen, Peng Zhang, Dawei Song, Benyou Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Real-Time+Eye+Tracking+Based+Query+Expansion+Approach+via+Latent+Topic+Modeling)|3| +|[Query Length, Retrievability Bias and Performance](https://doi.org/10.1145/2806416.2806604)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Length,+Retrievability+Bias+and+Performance)|3| +|[DeepCamera: A Unified Framework for Recognizing Places-of-Interest based on Deep ConvNets](https://doi.org/10.1145/2806416.2806620)|Pai Peng, Hongxiang Chen, Lidan Shou, Ke Chen, Gang Chen, Chang Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepCamera:+A+Unified+Framework+for+Recognizing+Places-of-Interest+based+on+Deep+ConvNets)|3| +|[A Fast k-Nearest Neighbor Search Using Query-Specific Signature Selection](https://doi.org/10.1145/2806416.2806632)|Youngki Park, Heasoo Hwang, Sanggoo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fast+k-Nearest+Neighbor+Search+Using+Query-Specific+Signature+Selection)|3| +|[Partially Labeled Data Tuple Can Optimize Multivariate Performance Measures](https://doi.org/10.1145/2806416.2806630)|Jim JingYan Wang, Xin Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Partially+Labeled+Data+Tuple+Can+Optimize+Multivariate+Performance+Measures)|3| +|[A Network-Aware Approach for Searching As-You-Type in Social Media](https://doi.org/10.1145/2806416.2806435)|Paul Lagrée, Bogdan Cautis, Hossein Vahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Network-Aware+Approach+for+Searching+As-You-Type+in+Social+Media)|2| +|[Making Sense of Spatial Trajectories](https://doi.org/10.1145/2806416.2806418)|Xiaofang Zhou, Kai Zheng, Hoyoung Jeung, Jiajie Xu, Shazia Wasim Sadiq||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+Sense+of+Spatial+Trajectories)|2| +|[Range Search on Uncertain Trajectories](https://doi.org/10.1145/2806416.2806430)|Liming Zhan, Ying Zhang, Wenjie Zhang, Xiaoyang Wang, Xuemin Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Range+Search+on+Uncertain+Trajectories)|2| +|[A Novel Class Noise Estimation Method and Application in Classification](https://doi.org/10.1145/2806416.2806554)|Lin Gui, Qin Lu, Ruifeng Xu, Minglei Li, Qikang Wei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Novel+Class+Noise+Estimation+Method+and+Application+in+Classification)|2| +|[The Role of Query Sessions in Interpreting Compound Noun Phrases](https://doi.org/10.1145/2806416.2806571)|Marius Pasca||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+of+Query+Sessions+in+Interpreting+Compound+Noun+Phrases)|2| +|[Gradient-based Signatures for Efficient Similarity Search in Large-scale Multimedia Databases](https://doi.org/10.1145/2806416.2806459)|Christian Beecks, Merih Seran Uysal, Judith Hermanns, Thomas Seidl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Gradient-based+Signatures+for+Efficient+Similarity+Search+in+Large-scale+Multimedia+Databases)|2| +|[Aggregation of Crowdsourced Ordinal Assessments and Integration with Learning to Rank: A Latent Trait Model](https://doi.org/10.1145/2806416.2806492)|Pavel Metrikov, Virgil Pavlu, Javed A. Aslam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aggregation+of+Crowdsourced+Ordinal+Assessments+and+Integration+with+Learning+to+Rank:+A+Latent+Trait+Model)|2| +|[Who With Whom And How?: Extracting Large Social Networks Using Search Engines](https://doi.org/10.1145/2806416.2806582)|Stefan Siersdorfer, Philipp Kemkes, Hanno Ackermann, Sergej Zerr||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+With+Whom+And+How?:+Extracting+Large+Social+Networks+Using+Search+Engines)|2| +|[Modelling the Usefulness of Document Collections for Query Expansion in Patient Search](https://doi.org/10.1145/2806416.2806614)|Nut Limsopatham, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modelling+the+Usefulness+of+Document+Collections+for+Query+Expansion+in+Patient+Search)|2| +|[Atypical Queries in eCommerce](https://doi.org/10.1145/2806416.2806605)|Neeraj Pradhan, Vinay Deolalikar, Kang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Atypical+Queries+in+eCommerce)|2| +|[Learning User Preferences for Topically Similar Documents](https://doi.org/10.1145/2806416.2806617)|Mustafa Zengin, Ben Carterette||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+User+Preferences+for+Topically+Similar+Documents)|2| +|[Identifying Attractive News Headlines for Social Media](https://doi.org/10.1145/2806416.2806631)|Sawa Kourogi, Hiroyuki Fujishiro, Akisato Kimura, Hitoshi Nishikawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Attractive+News+Headlines+for+Social+Media)|2| +|[Enhanced Word Embeddings from a Hierarchical Neural Language Model](https://doi.org/10.1145/2806416.2806637)|Xun Wang, Katsuhito Sudoh, Masaaki Nagata||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhanced+Word+Embeddings+from+a+Hierarchical+Neural+Language+Model)|2| +|[Improving Collaborative Filtering via Hidden Structured Constraint](https://doi.org/10.1145/2806416.2806623)|Qing Zhang, Houfeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Collaborative+Filtering+via+Hidden+Structured+Constraint)|2| +|[Approximate String Matching by End-Users using Active Learning](https://doi.org/10.1145/2806416.2806453)|Lutz Büch, Artur Andrzejak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+String+Matching+by+End-Users+using+Active+Learning)|1| +|[Ranking Deep Web Text Collections for Scalable Information Extraction](https://doi.org/10.1145/2806416.2806581)|Pablo Barrio, Luis Gravano, Chris Develder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Deep+Web+Text+Collections+for+Scalable+Information+Extraction)|1| +|[Towards Scalable and Complete Query Explanation with OWL 2 EL Ontologies](https://doi.org/10.1145/2806416.2806547)|Zhe Wang, Mahsa Chitsaz, Kewen Wang, Jianfeng Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Scalable+and+Complete+Query+Explanation+with+OWL+2+EL+Ontologies)|1| +|[An Optimization Framework for Propagation of Query-Document Features by Query Similarity Functions](https://doi.org/10.1145/2806416.2806487)|Maxim Zhukovskiy, Tsimafei Khatkevich, Gleb Gusev, Pavel Serdyukov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimization+Framework+for+Propagation+of+Query-Document+Features+by+Query+Similarity+Functions)|1| +|[KSGM: Keynode-driven Scalable Graph Matching](https://doi.org/10.1145/2806416.2806577)|Xilun Chen, K. Selçuk Candan, Maria Luisa Sapino, Paulo Shakarian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KSGM:+Keynode-driven+Scalable+Graph+Matching)|1| +|[Inducing Space Dirichlet Process Mixture Large-Margin Entity RelationshipInference in Knowledge Bases](https://doi.org/10.1145/2806416.2806499)|Sotirios P. Chatzis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inducing+Space+Dirichlet+Process+Mixture+Large-Margin+Entity+RelationshipInference+in+Knowledge+Bases)|1| +|[On Gapped Set Intersection Size Estimation](https://doi.org/10.1145/2806416.2806438)|Chen Chen, Jianbin Qin, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Gapped+Set+Intersection+Size+Estimation)|1| +|[Ordering Selection Operators Under Partial Ignorance](https://doi.org/10.1145/2806416.2806446)|Khaled Hamed Alyoubi, Sven Helmer, Peter T. Wood||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ordering+Selection+Operators+Under+Partial+Ignorance)|1| +|[Modeling Parameter Interactions in Ranking SVM](https://doi.org/10.1145/2806416.2806595)|Yaogong Zhang, Jun Xu, Yanyan Lan, Jiafeng Guo, Maoqiang Xie, Yalou Huang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Parameter+Interactions+in+Ranking+SVM)|1| +|[Best First Over-Sampling for Multilabel Classification](https://doi.org/10.1145/2806416.2806634)|Xusheng Ai, Jian Wu, Victor S. Sheng, Yufeng Yao, Pengpeng Zhao, Zhiming Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Best+First+Over-Sampling+for+Multilabel+Classification)|1| +|[DAAV: Dynamic API Authority Vectors for Detecting Software Theft](https://doi.org/10.1145/2806416.2806646)|DongKyu Chae, SangWook Kim, Seongje Cho, Yesol Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DAAV:+Dynamic+API+Authority+Vectors+for+Detecting+Software+Theft)|1| +|[Identifying Top-k Consistent News-Casters on Twitter](https://doi.org/10.1145/2806416.2806649)|Sahisnu Mazumder, Sameep Mehta, Dhaval Patel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-k+Consistent+News-Casters+on+Twitter)|1| +|[Core-Sets For Canonical Correlation Analysis](https://doi.org/10.1145/2806416.2806618)|Saurabh Paul||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Core-Sets+For+Canonical+Correlation+Analysis)|1| +|[Structured Sparse Regression for Recommender Systems](https://doi.org/10.1145/2806416.2806641)|Mingjie Qian, Liangjie Hong, Yue Shi, Suju Rajan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structured+Sparse+Regression+for+Recommender+Systems)|1| +|[Update Summarization using Semi-Supervised Learning Based on Hellinger Distance](https://doi.org/10.1145/2806416.2806628)|Dingding Wang, Sahar Sohangir, Tao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Update+Summarization+using+Semi-Supervised+Learning+Based+on+Hellinger+Distance)|1| +|[ECol 2015: First international workshop on the Evaluation on Collaborative Information Seeking and Retrieval](https://doi.org/10.1145/2806416.2806881)|Leif Azzopardi, Jeremy Pickens, Tetsuya Sakai, Laure Soulier, Lynda Tamine||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ECol+2015:+First+international+workshop+on+the+Evaluation+on+Collaborative+Information+Seeking+and+Retrieval)|1| +|[Scalable Clustering Algorithm via a Triangle Folding Processing for Complex Networks](https://doi.org/10.1145/2806416.2806563)|Ying Kang, Xiaoyan Gu, Weiping Wang, Dan Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Clustering+Algorithm+via+a+Triangle+Folding+Processing+for+Complex+Networks)|0| +|[Slow Search: Improving Information Retrieval Using Human Assistance](https://doi.org/10.1145/2806416.2806417)|Jaime Teevan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Slow+Search:+Improving+Information+Retrieval+Using+Human+Assistance)|0| +|[A Unified Posterior Regularized Topic Model with Maximum Margin for Learning-to-Rank](https://doi.org/10.1145/2806416.2806482)|Shoaib Jameel, Wai Lam, Steven Schockaert, Lidong Bing||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Unified+Posterior+Regularized+Topic+Model+with+Maximum+Margin+for+Learning-to-Rank)|0| +|[Lifespan-based Partitioning of Index Structures for Time-travel Text Search](https://doi.org/10.1145/2806416.2806442)|Animesh Nandi, Suriya Subramanian, Sriram Lakshminarasimhan, Prasad M. Deshpande, Sriram Raghavan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Lifespan-based+Partitioning+of+Index+Structures+for+Time-travel+Text+Search)|0| +|[Towards Scale-out Capability on Social Graphs](https://doi.org/10.1145/2806416.2806420)|Haichuan Shang, Xiang Zhao, R. Uday Kiran, Masaru Kitsuregawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Scale-out+Capability+on+Social+Graphs)|0| |[Large-Scale Analysis of Dynamics of Choice Among Discrete Alternatives](https://doi.org/10.1145/2806416.2806419)|Andrew Tomkins||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-Scale+Analysis+of+Dynamics+of+Choice+Among+Discrete+Alternatives)|0| +|[An Optimal Online Algorithm For Retrieving Heavily Perturbed Statistical Databases In The Low-Dimensional Querying Model](https://doi.org/10.1145/2806416.2806421)|Krzysztof Marcin Choromanski, Afshin Rostamizadeh, Umar Syed||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Optimal+Online+Algorithm+For+Retrieving+Heavily+Perturbed+Statistical+Databases+In+The+Low-Dimensional+Querying+Model)|0| +|[On Query-Update Independence for SPARQL](https://doi.org/10.1145/2806416.2806586)|Nicola Guido, Pierre Genevès, Nabil Layaïda, Cécile Roisin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Query-Update+Independence+for+SPARQL)|0| +|[A Flash-aware Buffering Scheme using On-the-fly Redo](https://doi.org/10.1145/2806416.2806587)|KyoSung Jeong, SangWook Kim, Sungchae Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Flash-aware+Buffering+Scheme+using+On-the-fly+Redo)|0| +|[Clustered Semi-Supervised Relevance Feedback](https://doi.org/10.1145/2806416.2806596)|Kripabandhu Ghosh, Swapan Kumar Parui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustered+Semi-Supervised+Relevance+Feedback)|0| +|[On the Effect of "Stupid" Search Components on User Interaction with Search Engines](https://doi.org/10.1145/2806416.2806601)|Lidia Grauer, Aleksandra Lomakina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Effect+of+"Stupid"+Search+Components+on+User+Interaction+with+Search+Engines)|0| +|[Bottom-up Faceted Search: Creating Search Neighbourhoods with Datacube Cells](https://doi.org/10.1145/2806416.2806593)|Mark Sifer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bottom-up+Faceted+Search:+Creating+Search+Neighbourhoods+with+Datacube+Cells)|0| +|[Recommending Short-lived Dynamic Packages for Golf Booking Services](https://doi.org/10.1145/2806416.2806608)|Robin M. E. Swezey, Youngjoo Chung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommending+Short-lived+Dynamic+Packages+for+Golf+Booking+Services)|0| +|[Large-Scale Question Answering with Joint Embedding and Proof Tree Decoding](https://doi.org/10.1145/2806416.2806616)|Zhenghao Wang, Shengquan Yan, Huaming Wang, Xuedong Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-Scale+Question+Answering+with+Joint+Embedding+and+Proof+Tree+Decoding)|0| +|[A Clustering-based Approach to Detect Probable Outcomes of Lawsuits](https://doi.org/10.1145/2806416.2806640)|Daniel Lemes Gribel, Maíra Gatti de Bayser, Leonardo Guerreiro Azevedo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Clustering-based+Approach+to+Detect+Probable+Outcomes+of+Lawsuits)|0| +|[Analyzing Document Intensive Business Processes using Ontology](https://doi.org/10.1145/2806416.2806638)|Suman Roychoudhury, Vinay Kulkarni, Nikhil Bellarykar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Document+Intensive+Business+Processes+using+Ontology)|0| |[Short Text Similarity with Word Embeddings](https://dl.acm.org/citation.cfm?id=2806475)|Tom Kenter, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short+Text+Similarity+with+Word+Embeddings)|-1| diff --git a/papers/cikm/cikm2016.md b/papers/cikm/cikm2016.md index 0d9e856d..5a316be6 100644 --- a/papers/cikm/cikm2016.md +++ b/papers/cikm/cikm2016.md @@ -2,324 +2,324 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[Studying the Dark Triad of Personality through Twitter Behavior](https://doi.org/10.1145/2983323.2983822)|Daniel PreotiucPietro, Jordan Carpenter, Salvatore Giorgi, Lyle H. Ungar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Studying+the+Dark+Triad+of+Personality+through+Twitter+Behavior)|77| -|[Off the Beaten Path: Let's Replace Term-Based Retrieval with k-NN Search](https://doi.org/10.1145/2983323.2983815)|Leonid Boytsov, David Novak, Yury A. Malkov, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Off+the+Beaten+Path:+Let's+Replace+Term-Based+Retrieval+with+k-NN+Search)|76| -|[Agents, Simulated Users and Humans: An Analysis of Performance and Behaviour](https://doi.org/10.1145/2983323.2983805)|David Maxwell, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Agents,+Simulated+Users+and+Humans:+An+Analysis+of+Performance+and+Behaviour)|65| -|[Learning Latent Vector Spaces for Product Search](https://doi.org/10.1145/2983323.2983702)|Christophe Van Gysel, Maarten de Rijke, Evangelos Kanoulas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Latent+Vector+Spaces+for+Product+Search)|61| -|[Retweet Prediction with Attention-based Deep Neural Network](https://doi.org/10.1145/2983323.2983809)|Qi Zhang, Yeyun Gong, Jindou Wu, Haoran Huang, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retweet+Prediction+with+Attention-based+Deep+Neural+Network)|54| -|[Multi-View Time Series Classification: A Discriminative Bilinear Projection Approach](https://doi.org/10.1145/2983323.2983780)|Sheng Li, Yaliang Li, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-View+Time+Series+Classification:+A+Discriminative+Bilinear+Projection+Approach)|50| -|[Time-aware Multi-Viewpoint Summarization of Multilingual Social Text Streams](https://doi.org/10.1145/2983323.2983710)|Zhaochun Ren, Oana Inel, Lora Aroyo, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-aware+Multi-Viewpoint+Summarization+of+Multilingual+Social+Text+Streams)|49| -|[Social Recommendation with Strong and Weak Ties](https://doi.org/10.1145/2983323.2983701)|Xin Wang, Wei Lu, Martin Ester, Can Wang, Chun Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Recommendation+with+Strong+and+Weak+Ties)|48| -|["Shall I Be Your Chat Companion?": Towards an Online Human-Computer Conversation System](https://doi.org/10.1145/2983323.2983360)|Rui Yan, Yiping Song, Xiangyang Zhou, Hua Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Shall+I+Be+Your+Chat+Companion?":+Towards+an+Online+Human-Computer+Conversation+System)|48| -|[To Click or Not To Click: Automatic Selection of Beautiful Thumbnails from Videos](https://doi.org/10.1145/2983323.2983349)|Yale Song, Miriam Redi, Jordi Vallmitjana, Alejandro Jaimes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+Click+or+Not+To+Click:+Automatic+Selection+of+Beautiful+Thumbnails+from+Videos)|46| -|[A Probabilistic Fusion Framework](https://doi.org/10.1145/2983323.2983739)|Yael Anava, Anna Shtok, Oren Kurland, Ella Rabinovich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Fusion+Framework)|46| -|[Using Prerequisites to Extract Concept Maps fromTextbooks](https://doi.org/10.1145/2983323.2983725)|Shuting Wang, Alexander Ororbia, Zhaohui Wu, Kyle Williams, Chen Liang, Bart Pursel, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Prerequisites+to+Extract+Concept+Maps+fromTextbooks)|45| -|[Scalability of Continuous Active Learning for Reliable High-Recall Text Classification](https://doi.org/10.1145/2983323.2983776)|Gordon V. Cormack, Maura R. Grossman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalability+of+Continuous+Active+Learning+for+Reliable+High-Recall+Text+Classification)|45| -|[Luhn Revisited: Significant Words Language Models](https://doi.org/10.1145/2983323.2983814)|Mostafa Dehghani, Hosein Azarbonyad, Jaap Kamps, Djoerd Hiemstra, Maarten Marx||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Luhn+Revisited:+Significant+Words+Language+Models)|45| -|[Pseudo-Relevance Feedback Based on Matrix Factorization](https://doi.org/10.1145/2983323.2983844)|Hamed Zamani, Javid Dadashkarimi, Azadeh Shakery, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pseudo-Relevance+Feedback+Based+on+Matrix+Factorization)|45| -|[Hybrid Indexing for Versioned Document Search with Cluster-based Retrieval](https://doi.org/10.1145/2983323.2983733)|Xin Jin, Daniel Agun, Tao Yang, Qinghao Wu, Yifan Shen, Susen Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+Indexing+for+Versioned+Document+Search+with+Cluster-based+Retrieval)|44| -|[A Multiple Instance Learning Framework for Identifying Key Sentences and Detecting Events](https://doi.org/10.1145/2983323.2983821)|Wei Wang, Yue Ning, Huzefa Rangwala, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Multiple+Instance+Learning+Framework+for+Identifying+Key+Sentences+and+Detecting+Events)|44| -|[Feature Driven and Point Process Approaches for Popularity Prediction](https://doi.org/10.1145/2983323.2983812)|Swapnil Mishra, MarianAndrei Rizoiu, Lexing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature+Driven+and+Point+Process+Approaches+for+Popularity+Prediction)|44| -|[Supervised Robust Discrete Multimodal Hashing for Cross-Media Retrieval](https://doi.org/10.1145/2983323.2983743)|TingKun Yan, XinShun Xu, Shanqing Guo, Zi Huang, Xiaolin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Robust+Discrete+Multimodal+Hashing+for+Cross-Media+Retrieval)|44| -|[Selective Cluster-Based Document Retrieval](https://doi.org/10.1145/2983323.2983737)|Or Levi, Fiana Raiber, Oren Kurland, Ido Guy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selective+Cluster-Based+Document+Retrieval)|44| -|[Plackett-Luce Regression Mixture Model for Heterogeneous Rankings](https://doi.org/10.1145/2983323.2983763)|Maksim Tkachenko, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Plackett-Luce+Regression+Mixture+Model+for+Heterogeneous+Rankings)|43| -|[Survival Analysis based Framework for Early Prediction of Student Dropouts](https://doi.org/10.1145/2983323.2983351)|Sattar Ameri, Mahtab Jahanbani Fard, Ratna Babu Chinnam, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Survival+Analysis+based+Framework+for+Early+Prediction+of+Student+Dropouts)|43| -|[Mobile App Retrieval for Social Media Users via Inference of Implicit Intent in Social Media Text](https://doi.org/10.1145/2983323.2983843)|Dae Hoon Park, Yi Fang, Mengwen Liu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mobile+App+Retrieval+for+Social+Media+Users+via+Inference+of+Implicit+Intent+in+Social+Media+Text)|43| -|[Where Did You Go: Personalized Annotation of Mobility Records](https://doi.org/10.1145/2983323.2983845)|Fei Wu, Zhenhui Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+Did+You+Go:+Personalized+Annotation+of+Mobility+Records)|42| -|[Axiomatic Result Re-Ranking](https://doi.org/10.1145/2983323.2983704)|Matthias Hagen, Michael Völske, Steve Göring, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Axiomatic+Result+Re-Ranking)|42| -|[Tracking Virality and Susceptibility in Social Media](https://doi.org/10.1145/2983323.2983800)|TuanAnh Hoang, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Virality+and+Susceptibility+in+Social+Media)|42| -|[PowerWalk: Scalable Personalized PageRank via Random Walks with Vertex-Centric Decomposition](https://doi.org/10.1145/2983323.2983713)|Qin Liu, Zhenguo Li, John C. S. Lui, Jiefeng Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PowerWalk:+Scalable+Personalized+PageRank+via+Random+Walks+with+Vertex-Centric+Decomposition)|41| -|[Generalizing Translation Models in the Probabilistic Relevance Framework](https://doi.org/10.1145/2983323.2983833)|Navid Rekabsaz, Mihai Lupu, Allan Hanbury, Guido Zuccon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalizing+Translation+Models+in+the+Probabilistic+Relevance+Framework)|41| -|[Structural Clustering of Machine-Generated Mail](https://doi.org/10.1145/2983323.2983350)|Noa AvigdorElgrabli, Mark Cwalinski, Dotan Di Castro, Iftah Gamzu, Irena GrabovitchZuyev, Liane LewinEytan, Yoelle Maarek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural+Clustering+of+Machine-Generated+Mail)|40| -|[Answering Twitter Questions: a Model for Recommending Answerers through Social Collaboration](https://doi.org/10.1145/2983323.2983771)|Laure Soulier, Lynda Tamine, GiaHung Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Answering+Twitter+Questions:+a+Model+for+Recommending+Answerers+through+Social+Collaboration)|40| -|[Vandalism Detection in Wikidata](https://doi.org/10.1145/2983323.2983740)|Stefan Heindorf, Martin Potthast, Benno Stein, Gregor Engels||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Vandalism+Detection+in+Wikidata)|40| -|[Data-Driven Contextual Valence Shifter Quantification for Multi-Theme Sentiment Analysis](https://doi.org/10.1145/2983323.2983793)|Hongkun Yu, Jingbo Shang, Meichun Hsu, Malú Castellanos, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data-Driven+Contextual+Valence+Shifter+Quantification+for+Multi-Theme+Sentiment+Analysis)|40| -|[Sentiment Domain Adaptation with Multi-Level Contextual Sentiment Knowledge](https://doi.org/10.1145/2983323.2983851)|Fangzhao Wu, Sixing Wu, Yongfeng Huang, Songfang Huang, Yong Qin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment+Domain+Adaptation+with+Multi-Level+Contextual+Sentiment+Knowledge)|40| -|[ESPRESSO: Explaining Relationships between Entity Sets](https://doi.org/10.1145/2983323.2983778)|Stephan Seufert, Klaus Berberich, Srikanta J. Bedathur, Sarath Kumar Kondreddi, Patrick Ernst, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESPRESSO:+Explaining+Relationships+between+Entity+Sets)|40| -|[Urban Traffic Prediction through the Second Use of Inexpensive Big Data from Buildings](https://doi.org/10.1145/2983323.2983357)|Zimu Zheng, Dan Wang, Jian Pei, Yi Yuan, Cheng Fan, Linda Fu Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Urban+Traffic+Prediction+through+the+Second+Use+of+Inexpensive+Big+Data+from+Buildings)|40| -|[Scaling Factorization Machines with Parameter Server](https://doi.org/10.1145/2983323.2983364)|Erheng Zhong, Yue Shi, Nathan Liu, Suju Rajan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+Factorization+Machines+with+Parameter+Server)|40| -|[Medical Question Answering for Clinical Decision Support](https://doi.org/10.1145/2983323.2983819)|Travis R. Goodwin, Sanda M. Harabagiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Medical+Question+Answering+for+Clinical+Decision+Support)|39| -|[Robust Spectral Ensemble Clustering](https://doi.org/10.1145/2983323.2983745)|Zhiqiang Tao, Hongfu Liu, Sheng Li, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Spectral+Ensemble+Clustering)|39| -|[DI-DAP: An Efficient Disaster Information Delivery and Analysis Platform in Disaster Management](https://doi.org/10.1145/2983323.2983355)|Tao Li, Wubai Zhou, Chunqiu Zeng, Qing Wang, Qifeng Zhou, Dingding Wang, Jia Xu, Yue Huang, Wentao Wang, Minjing Zhang, Steven Luis, ShuChing Chen, Naphtali Rishe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DI-DAP:+An+Efficient+Disaster+Information+Delivery+and+Analysis+Platform+in+Disaster+Management)|39| -|[Supervised Feature Selection by Preserving Class Correlation](https://doi.org/10.1145/2983323.2983762)|Jun Wang, Jinmao Wei, Zhenglu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Feature+Selection+by+Preserving+Class+Correlation)|39| -|[Data Summarization with Social Contexts](https://doi.org/10.1145/2983323.2983736)|Hao Zhuang, Rameez Rahman, Xia Hu, Tian Guo, Pan Hui, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Summarization+with+Social+Contexts)|38| -|[Group-Aware Weighted Bipartite B-Matching](https://doi.org/10.1145/2983323.2983770)|Cheng Chen, Sean Chester, Venkatesh Srinivasan, Kui Wu, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Group-Aware+Weighted+Bipartite+B-Matching)|38| -|[Estimating Time Models for News Article Excerpts](https://doi.org/10.1145/2983323.2983802)|Arunav Mishra, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+Time+Models+for+News+Article+Excerpts)|38| -|[Beyond Clustering: Sub-DAG Discovery for Categorising Documents](https://doi.org/10.1145/2983323.2983810)|Ramakrishna B. Bairi, Mark James Carman, Ganesh Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+Clustering:+Sub-DAG+Discovery+for+Categorising+Documents)|38| -|[Quark-X: An Efficient Top-K Processing Framework for RDF Quad Stores](https://doi.org/10.1145/2983323.2983727)|Jyoti Leeka, Srikanta Bedathur, Debajyoti Bera, Medha Atre||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quark-X:+An+Efficient+Top-K+Processing+Framework+for+RDF+Quad+Stores)|38| -|[One Query, Many Clicks: Analysis of Queries with Multiple Clicks by the Same User](https://doi.org/10.1145/2983323.2983856)|Elad Kravi, Ido Guy, Avihai Mejer, David Carmel, Yoelle Maarek, Dan Pelleg, Gilad Tsur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=One+Query,+Many+Clicks:+Analysis+of+Queries+with+Multiple+Clicks+by+the+Same+User)|38| -|[CrowdSelect: Increasing Accuracy of Crowdsourcing Tasks through Behavior Prediction and User Selection](https://doi.org/10.1145/2983323.2983830)|Chenxi Qiu, Anna Cinzia Squicciarini, Barbara Carminati, James Caverlee, Dev Rishi Khare||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CrowdSelect:+Increasing+Accuracy+of+Crowdsourcing+Tasks+through+Behavior+Prediction+and+User+Selection)|37| -|[BICP: Block-Incremental CP Decomposition with Update Sensitive Refinement](https://doi.org/10.1145/2983323.2983717)|Shengyu Huang, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BICP:+Block-Incremental+CP+Decomposition+with+Update+Sensitive+Refinement)|37| -|[Joint Collaborative Ranking with Social Relationships in Top-N Recommendation](https://doi.org/10.1145/2983323.2983839)|Dimitrios Rafailidis, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Collaborative+Ranking+with+Social+Relationships+in+Top-N+Recommendation)|37| -|[Semi-supervised Multi-Label Topic Models for Document Classification and Sentence Labeling](https://doi.org/10.1145/2983323.2983752)|Hossein Soleimani, David J. Miller||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-supervised+Multi-Label+Topic+Models+for+Document+Classification+and+Sentence+Labeling)|36| -|[A Unified Index for Spatio-Temporal Keyword Queries](https://doi.org/10.1145/2983323.2983751)|TuanAnh HoangVu, Huy T. Vo, Juliana Freire||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Unified+Index+for+Spatio-Temporal+Keyword+Queries)|36| -|[Incorporating Clicks, Attention and Satisfaction into a Search Engine Result Page Evaluation Model](https://doi.org/10.1145/2983323.2983829)|Aleksandr Chuklin, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+Clicks,+Attention+and+Satisfaction+into+a+Search+Engine+Result+Page+Evaluation+Model)|36| -|[SemiNMF-PCA framework for Sparse Data Co-clustering](https://doi.org/10.1145/2983323.2983707)|Kais Allab, Lazhar Labiod, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemiNMF-PCA+framework+for+Sparse+Data+Co-clustering)|36| -|[Active Content-Based Crowdsourcing Task Selection](https://doi.org/10.1145/2983323.2983716)|Piyush Bansal, Carsten Eickhoff, Thomas Hofmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Content-Based+Crowdsourcing+Task+Selection)|36| -|[Making Sense of Entities and Quantities in Web Tables](https://doi.org/10.1145/2983323.2983772)|Yusra Ibrahim, Mirek Riedewald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+Sense+of+Entities+and+Quantities+in+Web+Tables)|36| -|[Efficient Orthogonal Non-negative Matrix Factorization over Stiefel Manifold](https://doi.org/10.1145/2983323.2983761)|Wei Emma Zhang, Mingkui Tan, Quan Z. Sheng, Lina Yao, Qinfeng Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Orthogonal+Non-negative+Matrix+Factorization+over+Stiefel+Manifold)|36| -|[Linked Document Embedding for Classification](https://doi.org/10.1145/2983323.2983755)|Suhang Wang, Jiliang Tang, Charu C. Aggarwal, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linked+Document+Embedding+for+Classification)|35| -|[Understanding Sparse Topical Structure of Short Text via Stochastic Variational-Gibbs Inference](https://doi.org/10.1145/2983323.2983765)|Tianyi Lin, Siyuan Zhang, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Sparse+Topical+Structure+of+Short+Text+via+Stochastic+Variational-Gibbs+Inference)|35| -|[Mining Shopping Patterns for Divergent Urban Regions by Incorporating Mobility Data](https://doi.org/10.1145/2983323.2983803)|Tianran Hu, Ruihua Song, Yingzi Wang, Xing Xie, Jiebo Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Shopping+Patterns+for+Divergent+Urban+Regions+by+Incorporating+Mobility+Data)|35| -|[Modeling Customer Engagement from Partial Observations](https://doi.org/10.1145/2983323.2983854)|Jelena Stojanovic, Djordje Gligorijevic, Zoran Obradovic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Customer+Engagement+from+Partial+Observations)|35| -|[A Neural Network Approach to Quote Recommendation in Writings](https://doi.org/10.1145/2983323.2983788)|Jiwei Tan, Xiaojun Wan, Jianguo Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Network+Approach+to+Quote+Recommendation+in+Writings)|34| -|[aNMM: Ranking Short Answer Texts with Attention-Based Neural Matching Model](https://doi.org/10.1145/2983323.2983818)|Liu Yang, Qingyao Ai, Jiafeng Guo, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=aNMM:+Ranking+Short+Answer+Texts+with+Attention-Based+Neural+Matching+Model)|34| -|[Large-Scale Analysis of Viewing Behavior: Towards Measuring Satisfaction with Mobile Proactive Systems](https://doi.org/10.1145/2983323.2983846)|Qi Guo, Yang Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-Scale+Analysis+of+Viewing+Behavior:+Towards+Measuring+Satisfaction+with+Mobile+Proactive+Systems)|34| -|[Query Variations and their Effect on Comparing Information Retrieval Systems](https://doi.org/10.1145/2983323.2983723)|Guido Zuccon, João R. M. Palotti, Allan Hanbury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Variations+and+their+Effect+on+Comparing+Information+Retrieval+Systems)|34| -|[Document Filtering for Long-tail Entities](https://doi.org/10.1145/2983323.2983728)|Ridho Reinanda, Edgar Meij, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document+Filtering+for+Long-tail+Entities)|34| -|[FacetGist: Collective Extraction of Document Facets in Large Technical Corpora](https://doi.org/10.1145/2983323.2983828)|Tarique Siddiqui, Xiang Ren, Aditya G. Parameswaran, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FacetGist:+Collective+Extraction+of+Document+Facets+in+Large+Technical+Corpora)|34| -|[Multiple Queries as Bandit Arms](https://doi.org/10.1145/2983323.2983816)|Cheng Li, Paul Resnick, Qiaozhu Mei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiple+Queries+as+Bandit+Arms)|34| -|[Uncovering the Spatio-Temporal Dynamics of Memes in the Presence of Incomplete Information](https://doi.org/10.1145/2983323.2983782)|Hancheng Ge, James Caverlee, Nan Zhang, Anna Cinzia Squicciarini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+the+Spatio-Temporal+Dynamics+of+Memes+in+the+Presence+of+Incomplete+Information)|34| -|[LogMine: Fast Pattern Recognition for Log Analytics](https://doi.org/10.1145/2983323.2983358)|Hossein Hamooni, Biplob Debnath, Jianwu Xu, Hui Zhang, Guofei Jiang, Abdullah Mueen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LogMine:+Fast+Pattern+Recognition+for+Log+Analytics)|34| +|[A Deep Relevance Matching Model for Ad-hoc Retrieval](https://doi.org/10.1145/2983323.2983769)|Jiafeng Guo, Yixing Fan, Qingyao Ai, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Deep+Relevance+Matching+Model+for+Ad-hoc+Retrieval)|323| +|[Learning Graph-based POI Embedding for Location-based Recommendation](https://doi.org/10.1145/2983323.2983711)|Min Xie, Hongzhi Yin, Hao Wang, Fanjiang Xu, Weitong Chen, Sen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Graph-based+POI+Embedding+for+Location-based+Recommendation)|240| +|[Query Expansion Using Word Embeddings](https://doi.org/10.1145/2983323.2983876)|Saar Kuzi, Anna Shtok, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Expansion+Using+Word+Embeddings)|97| +|[aNMM: Ranking Short Answer Texts with Attention-Based Neural Matching Model](https://doi.org/10.1145/2983323.2983818)|Liu Yang, Qingyao Ai, Jiafeng Guo, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=aNMM:+Ranking+Short+Answer+Texts+with+Attention-Based+Neural+Matching+Model)|96| +|[Social Recommendation with Strong and Weak Ties](https://doi.org/10.1145/2983323.2983701)|Xin Wang, Wei Lu, Martin Ester, Can Wang, Chun Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Recommendation+with+Strong+and+Weak+Ties)|92| +|[LogMine: Fast Pattern Recognition for Log Analytics](https://doi.org/10.1145/2983323.2983358)|Hossein Hamooni, Biplob Debnath, Jianwu Xu, Hui Zhang, Guofei Jiang, Abdullah Mueen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LogMine:+Fast+Pattern+Recognition+for+Log+Analytics)|87| +|[Feature Driven and Point Process Approaches for Popularity Prediction](https://doi.org/10.1145/2983323.2983812)|Swapnil Mishra, MarianAndrei Rizoiu, Lexing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Feature+Driven+and+Point+Process+Approaches+for+Popularity+Prediction)|85| +|[Credibility Assessment of Textual Claims on the Web](https://doi.org/10.1145/2983323.2983661)|Kashyap Popat, Subhabrata Mukherjee, Jannik Strötgen, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Credibility+Assessment+of+Textual+Claims+on+the+Web)|76| +|[Retweet Prediction with Attention-based Deep Neural Network](https://doi.org/10.1145/2983323.2983809)|Qi Zhang, Yeyun Gong, Jindou Wu, Haoran Huang, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retweet+Prediction+with+Attention-based+Deep+Neural+Network)|60| +|[Learning Points and Routes to Recommend Trajectories](https://doi.org/10.1145/2983323.2983672)|Dawei Chen, Cheng Soon Ong, Lexing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Points+and+Routes+to+Recommend+Trajectories)|59| +|[Linked Document Embedding for Classification](https://doi.org/10.1145/2983323.2983755)|Suhang Wang, Jiliang Tang, Charu C. Aggarwal, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linked+Document+Embedding+for+Classification)|53| +|[Learning Latent Vector Spaces for Product Search](https://doi.org/10.1145/2983323.2983702)|Christophe Van Gysel, Maarten de Rijke, Evangelos Kanoulas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Latent+Vector+Spaces+for+Product+Search)|53| +|[Leveraging the Implicit Structure within Social Media for Emergent Rumor Detection](https://doi.org/10.1145/2983323.2983697)|Justin Sampson, Fred Morstatter, Liang Wu, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+the+Implicit+Structure+within+Social+Media+for+Emergent+Rumor+Detection)|52| +|[The Rich and the Poor: A Markov Decision Process Approach to Optimizing Taxi Driver Revenue Efficiency](https://doi.org/10.1145/2983323.2983689)|Huigui Rong, Xun Zhou, Chang Yang, M. Zubair Shafiq, Alex X. Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Rich+and+the+Poor:+A+Markov+Decision+Process+Approach+to+Optimizing+Taxi+Driver+Revenue+Efficiency)|49| +|[LambdaFM: Learning Optimal Ranking with Factorization Machines Using Lambda Surrogates](https://doi.org/10.1145/2983323.2983758)|Fajie Yuan, Guibing Guo, Joemon M. Jose, Long Chen, Haitao Yu, Weinan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LambdaFM:+Learning+Optimal+Ranking+with+Factorization+Machines+Using+Lambda+Surrogates)|48| +|[Noise-Contrastive Estimation for Answer Selection with Deep Neural Networks](https://doi.org/10.1145/2983323.2983872)|Jinfeng Rao, Hua He, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Noise-Contrastive+Estimation+for+Answer+Selection+with+Deep+Neural+Networks)|48| +|[Using Prerequisites to Extract Concept Maps fromTextbooks](https://doi.org/10.1145/2983323.2983725)|Shuting Wang, Alexander Ororbia, Zhaohui Wu, Kyle Williams, Chen Liang, Bart Pursel, C. Lee Giles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Prerequisites+to+Extract+Concept+Maps+fromTextbooks)|43| +|[Tag-Aware Personalized Recommendation Using a Deep-Semantic Similarity Model with Negative Sampling](https://doi.org/10.1145/2983323.2983874)|Zhenghua Xu, Cheng Chen, Thomas Lukasiewicz, Yishu Miao, Xiangwu Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tag-Aware+Personalized+Recommendation+Using+a+Deep-Semantic+Similarity+Model+with+Negative+Sampling)|42| +|[Survival Analysis based Framework for Early Prediction of Student Dropouts](https://doi.org/10.1145/2983323.2983351)|Sattar Ameri, Mahtab Jahanbani Fard, Ratna Babu Chinnam, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Survival+Analysis+based+Framework+for+Early+Prediction+of+Student+Dropouts)|40| +|[Learning Hidden Features for Contextual Bandits](https://doi.org/10.1145/2983323.2983847)|Huazheng Wang, Qingyun Wu, Hongning Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Hidden+Features+for+Contextual+Bandits)|40| +|[Incorporate Group Information to Enhance Network Embedding](https://doi.org/10.1145/2983323.2983869)|Jifan Chen, Qi Zhang, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporate+Group+Information+to+Enhance+Network+Embedding)|40| +|[Cutty: Aggregate Sharing for User-Defined Windows](https://doi.org/10.1145/2983323.2983807)|Paris Carbone, Jonas Traub, Asterios Katsifodimos, Seif Haridi, Volker Markl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cutty:+Aggregate+Sharing+for+User-Defined+Windows)|38| +|[Collaborative Social Group Influence for Event Recommendation](https://doi.org/10.1145/2983323.2983879)|Li Gao, Jia Wu, Zhi Qiao, Chuan Zhou, Hong Yang, Yue Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Social+Group+Influence+for+Event+Recommendation)|38| +|[Where Did You Go: Personalized Annotation of Mobility Records](https://doi.org/10.1145/2983323.2983845)|Fei Wu, Zhenhui Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+Did+You+Go:+Personalized+Annotation+of+Mobility+Records)|36| +|[ZEST: A Hybrid Model on Predicting Passenger Demand for Chauffeured Car Service](https://doi.org/10.1145/2983323.2983667)|Hua Wei, Yuandong Wang, Tianyu Wo, Yaxiao Liu, Jie Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ZEST:+A+Hybrid+Model+on+Predicting+Passenger+Demand+for+Chauffeured+Car+Service)|35| +|[Scalability of Continuous Active Learning for Reliable High-Recall Text Classification](https://doi.org/10.1145/2983323.2983776)|Gordon V. Cormack, Maura R. Grossman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalability+of+Continuous+Active+Learning+for+Reliable+High-Recall+Text+Classification)|34| |[Effective Document Labeling with Very Few Seed Words: A Topic Model Approach](https://doi.org/10.1145/2983323.2983721)|Chenliang Li, Jian Xing, Aixin Sun, Zongyang Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+Document+Labeling+with+Very+Few+Seed+Words:+A+Topic+Model+Approach)|33| -|[Graph Topic Scan Statistic for Spatial Event Detection](https://doi.org/10.1145/2983323.2983744)|Yu Liu, Baojian Zhou, Feng Chen, David W. Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+Topic+Scan+Statistic+for+Spatial+Event+Detection)|33| +|[Vandalism Detection in Wikidata](https://doi.org/10.1145/2983323.2983740)|Stefan Heindorf, Martin Potthast, Benno Stein, Gregor Engels||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Vandalism+Detection+in+Wikidata)|33| +|[To Click or Not To Click: Automatic Selection of Beautiful Thumbnails from Videos](https://doi.org/10.1145/2983323.2983349)|Yale Song, Miriam Redi, Jordi Vallmitjana, Alejandro Jaimes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+Click+or+Not+To+Click:+Automatic+Selection+of+Beautiful+Thumbnails+from+Videos)|33| |[Semantic Matching by Non-Linear Word Transportation for Information Retrieval](https://doi.org/10.1145/2983323.2983768)|Jiafeng Guo, Yixing Fan, Qingyao Ai, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Matching+by+Non-Linear+Word+Transportation+for+Information+Retrieval)|33| -|[Regularizing Structured Classifier with Conditional Probabilistic Constraints for Semi-supervised Learning](https://doi.org/10.1145/2983323.2983860)|Vincent Wenchen Zheng, Kevin ChenChuan Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularizing+Structured+Classifier+with+Conditional+Probabilistic+Constraints+for+Semi-supervised+Learning)|33| -|[Adaptive Evolutionary Filtering in Real-Time Twitter Stream](https://doi.org/10.1145/2983323.2983760)|Feifan Fan, Yansong Feng, Lili Yao, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Evolutionary+Filtering+in+Real-Time+Twitter+Stream)|33| -|[Network-Efficient Distributed Word2vec Training System for Large Vocabularies](https://doi.org/10.1145/2983323.2983361)|Erik Ordentlich, Lee Yang, Andy Feng, Peter Cnudde, Mihajlo Grbovic, Nemanja Djuric, Vladan Radosavljevic, Gavin Owens||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Network-Efficient+Distributed+Word2vec+Training+System+for+Large+Vocabularies)|33| -|[Scalable Spectral k-Support Norm Regularization for Robust Low Rank Subspace Learning](https://doi.org/10.1145/2983323.2983738)|Yiuming Cheung, Jian Lou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Spectral+k-Support+Norm+Regularization+for+Robust+Low+Rank+Subspace+Learning)|33| -|[Optimizing Ad Allocation in Social Advertising](https://doi.org/10.1145/2983323.2983834)|Shaojie Tang, Jing Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Ad+Allocation+in+Social+Advertising)|33| -|[Precision-Oriented Query Facet Extraction](https://doi.org/10.1145/2983323.2983824)|Weize Kong, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Precision-Oriented+Query+Facet+Extraction)|33| -|[A Deep Relevance Matching Model for Ad-hoc Retrieval](https://doi.org/10.1145/2983323.2983769)|Jiafeng Guo, Yixing Fan, Qingyao Ai, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Deep+Relevance+Matching+Model+for+Ad-hoc+Retrieval)|32| -|[Privacy-Preserving Reachability Query Services for Massive Networks](https://doi.org/10.1145/2983323.2983799)|Jiaxin Jiang, Peipei Yi, Byron Choi, Zhiwei Zhang, Xiaohui Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy-Preserving+Reachability+Query+Services+for+Massive+Networks)|32| -|[Sequential Query Expansion using Concept Graph](https://doi.org/10.1145/2983323.2983857)|Saeid Balaneshinkordan, Alexander Kotov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+Query+Expansion+using+Concept+Graph)|32| -|[User Response Learning for Directly Optimizing Campaign Performance in Display Advertising](https://doi.org/10.1145/2983323.2983347)|Kan Ren, Weinan Zhang, Yifei Rong, Haifeng Zhang, Yong Yu, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Response+Learning+for+Directly+Optimizing+Campaign+Performance+in+Display+Advertising)|32| -|[CRISP: Consensus Regularized Selection based Prediction](https://doi.org/10.1145/2983323.2983779)|Ping Wang, Karthik K. Padthe, Bhanukiran Vinzamuri, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CRISP:+Consensus+Regularized+Selection+based+Prediction)|32| -|[Bayesian Non-Exhaustive Classification A Case Study: Online Name Disambiguation using Temporal Record Streams](https://doi.org/10.1145/2983323.2983714)|Baichuan Zhang, Murat Dundar, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bayesian+Non-Exhaustive+Classification+A+Case+Study:+Online+Name+Disambiguation+using+Temporal+Record+Streams)|32| -|[Fully Dynamic Shortest-Path Distance Query Acceleration on Massive Networks](https://doi.org/10.1145/2983323.2983731)|Takanori Hayashi, Takuya Akiba, Kenichi Kawarabayashi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fully+Dynamic+Shortest-Path+Distance+Query+Acceleration+on+Massive+Networks)|32| -|[CGMOS: Certainty Guided Minority OverSampling](https://doi.org/10.1145/2983323.2983789)|Xi Zhang, Di Ma, Lin Gan, Shanshan Jiang, Gady Agam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CGMOS:+Certainty+Guided+Minority+OverSampling)|32| -|[Multiple Infection Sources Identification with Provable Guarantees](https://doi.org/10.1145/2983323.2983817)|Hung T. Nguyen, Preetam Ghosh, Michael L. Mayo, Thang N. Dinh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiple+Infection+Sources+Identification+with+Provable+Guarantees)|32| -|[Paired Restricted Boltzmann Machine for Linked Data](https://doi.org/10.1145/2983323.2983756)|Suhang Wang, Jiliang Tang, Fred Morstatter, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Paired+Restricted+Boltzmann+Machine+for+Linked+Data)|32| -|[Leveraging Multiple GPUs and CPUs for Graphlet Counting in Large Networks](https://doi.org/10.1145/2983323.2983832)|Ryan A. Rossi, Rong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Multiple+GPUs+and+CPUs+for+Graphlet+Counting+in+Large+Networks)|32| -|[Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media](https://doi.org/10.1145/2983323.2983662)|Xinyue Liu, Xiangnan Kong, Yanhua Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+Traffic+Prediction+with+Partially+Observed+Traffic+History+using+Location-Based+Social+Media)|32| -|[Qualitative Cleaning of Uncertain Data](https://doi.org/10.1145/2983323.2983679)|Henning Köhler, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Qualitative+Cleaning+of+Uncertain+Data)|32| -|[Memory-based Recommendations of Entities for Web Search Users](https://doi.org/10.1145/2983323.2983823)|Ignacio FernándezTobías, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Memory-based+Recommendations+of+Entities+for+Web+Search+Users)|31| -|[Learning to Extract Conditional Knowledge for Question Answering using Dialogue](https://doi.org/10.1145/2983323.2983777)|Pengwei Wang, Lei Ji, Jun Yan, Lianwen Jin, WeiYing Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Extract+Conditional+Knowledge+for+Question+Answering+using+Dialogue)|31| -|[Error Link Detection and Correction in Wikipedia](https://doi.org/10.1145/2983323.2983705)|Chengyu Wang, Rong Zhang, Xiaofeng He, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Error+Link+Detection+and+Correction+in+Wikipedia)|31| -|[Derivative Delay Embedding: Online Modeling of Streaming Time Series](https://doi.org/10.1145/2983323.2983715)|Zhifei Zhang, Yang Song, Wei Wang, Hairong Qi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Derivative+Delay+Embedding:+Online+Modeling+of+Streaming+Time+Series)|31| -|[Querying Minimal Steiner Maximum-Connected Subgraphs in Large Graphs](https://doi.org/10.1145/2983323.2983748)|Jiafeng Hu, Xiaowei Wu, Reynold Cheng, Siqiang Luo, Yixiang Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+Minimal+Steiner+Maximum-Connected+Subgraphs+in+Large+Graphs)|31| -|[On the Effectiveness of Query Weighting for Adapting Rank Learners to New Unlabelled Collections](https://doi.org/10.1145/2983323.2983852)|Pengfei Li, Mark Sanderson, Mark James Carman, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Effectiveness+of+Query+Weighting+for+Adapting+Rank+Learners+to+New+Unlabelled+Collections)|31| -|[A Model-Free Approach to Infer the Diffusion Network from Event Cascade](https://doi.org/10.1145/2983323.2983718)|Yu Rong, Qiankun Zhu, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Model-Free+Approach+to+Infer+the+Diffusion+Network+from+Event+Cascade)|31| -|[Personalized Semantic Word Vectors](https://doi.org/10.1145/2983323.2983875)|Javid Ebrahimi, Dejing Dou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Semantic+Word+Vectors)|31| -|[Tag2Word: Using Tags to Generate Words for Content Based Tag Recommendation](https://doi.org/10.1145/2983323.2983682)|Yong Wu, Yuan Yao, Feng Xu, Hanghang Tong, Jian Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tag2Word:+Using+Tags+to+Generate+Words+for+Content+Based+Tag+Recommendation)|31| -|[Detecting Promotion Campaigns in Query Auto Completion](https://doi.org/10.1145/2983323.2983709)|Yuli Liu, Yiqun Liu, Ke Zhou, Min Zhang, Shaoping Ma, Yue Yin, Hengliang Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Promotion+Campaigns+in+Query+Auto+Completion)|30| -|[LambdaFM: Learning Optimal Ranking with Factorization Machines Using Lambda Surrogates](https://doi.org/10.1145/2983323.2983758)|Fajie Yuan, Guibing Guo, Joemon M. Jose, Long Chen, Haitao Yu, Weinan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LambdaFM:+Learning+Optimal+Ranking+with+Factorization+Machines+Using+Lambda+Surrogates)|30| -|[Inspiration or Preparation?: Explaining Creativity in Scientific Enterprise](https://doi.org/10.1145/2983323.2983820)|Xinyang Zhang, Dashun Wang, Ting Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inspiration+or+Preparation?:+Explaining+Creativity+in+Scientific+Enterprise)|30| -|[Pagination versus Scrolling in Mobile Web Search](https://doi.org/10.1145/2983323.2983720)|Jaewon Kim, Paul Thomas, Ramesh S. Sankaranarayana, Tom Gedeon, HwanJin Yoon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pagination+versus+Scrolling+in+Mobile+Web+Search)|30| -|[Semi-Supervision Dramatically Improves Time Series Clustering under Dynamic Time Warping](https://doi.org/10.1145/2983323.2983855)|Hoang Anh Dau, Nurjahan Begum, Eamonn J. Keogh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Supervision+Dramatically+Improves+Time+Series+Clustering+under+Dynamic+Time+Warping)|30| -|[aptMTVL: Nailing Interactions in Multi-Task Multi-View Multi-Label Learning using Adaptive-basis Multilinear Factor Analyzers](https://doi.org/10.1145/2983323.2983783)|Xiaoli Li, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=aptMTVL:+Nailing+Interactions+in+Multi-Task+Multi-View+Multi-Label+Learning+using+Adaptive-basis+Multilinear+Factor+Analyzers)|30| -|[Optimizing Update Frequencies for Decaying Information](https://doi.org/10.1145/2983323.2983719)|Simon Razniewski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Update+Frequencies+for+Decaying+Information)|30| -|[Topological Graph Sketching for Incremental and Scalable Analytics](https://doi.org/10.1145/2983323.2983735)|Bortik Bandyopadhyay, David Fuhry, Aniket Chakrabarti, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topological+Graph+Sketching+for+Incremental+and+Scalable+Analytics)|30| -|[On Structural Health Monitoring Using Tensor Analysis and Support Vector Machine with Artificial Negative Data](https://doi.org/10.1145/2983323.2983359)|Prasad Cheema, Nguyen Lu Dang Khoa, Mehrisadat Makki Alamdari, Wei Liu, Yang Wang, Fang Chen, Peter Runcie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Structural+Health+Monitoring+Using+Tensor+Analysis+and+Support+Vector+Machine+with+Artificial+Negative+Data)|30| -|[Learning Graph-based POI Embedding for Location-based Recommendation](https://doi.org/10.1145/2983323.2983711)|Min Xie, Hongzhi Yin, Hao Wang, Fanjiang Xu, Weitong Chen, Sen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Graph-based+POI+Embedding+for+Location-based+Recommendation)|29| -|[Annotating Points of Interest with Geo-tagged Tweets](https://doi.org/10.1145/2983323.2983850)|Kaiqi Zhao, Gao Cong, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Annotating+Points+of+Interest+with+Geo-tagged+Tweets)|29| -|[Attribute-based Crowd Entity Resolution](https://doi.org/10.1145/2983323.2983831)|Asif R. Khan, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attribute-based+Crowd+Entity+Resolution)|29| -|[Efficient Processing of Location-Aware Group Preference Queries](https://doi.org/10.1145/2983323.2983757)|Miao Li, Lisi Chen, Gao Cong, Yu Gu, Ge Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Processing+of+Location-Aware+Group+Preference+Queries)|29| -|[Efficient Estimation of Triangles in Very Large Graphs](https://doi.org/10.1145/2983323.2983849)|Roohollah Etemadi, Jianguo Lu, Yung H. Tsin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Estimation+of+Triangles+in+Very+Large+Graphs)|29| -|[Discriminative View Learning for Single View Co-Training](https://doi.org/10.1145/2983323.2983671)|Joseph St. Amand, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discriminative+View+Learning+for+Single+View+Co-Training)|29| -|[Learning Points and Routes to Recommend Trajectories](https://doi.org/10.1145/2983323.2983672)|Dawei Chen, Cheng Soon Ong, Lexing Xie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Points+and+Routes+to+Recommend+Trajectories)|29| -|[Incorporating Risk-Sensitiveness into Feature Selection for Learning to Rank](https://doi.org/10.1145/2983323.2983792)|Daniel Xavier de Sousa, Sérgio Daniel Canuto, Thierson Couto Rosa, Wellington Santos Martins, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+Risk-Sensitiveness+into+Feature+Selection+for+Learning+to+Rank)|28| -|[A Nonparametric Model for Event Discovery in the Geospatial-Temporal Space](https://doi.org/10.1145/2983323.2983790)|Jinjin Guo, Zhiguo Gong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Nonparametric+Model+for+Event+Discovery+in+the+Geospatial-Temporal+Space)|28| -|[Separating-Plane Factorization Models: Scalable Recommendation from One-Class Implicit Feedback](https://doi.org/10.1145/2983323.2983348)|Haolan Chen, Di Niu, Kunfeng Lai, Yu Xu, Masoud Ardakani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Separating-Plane+Factorization+Models:+Scalable+Recommendation+from+One-Class+Implicit+Feedback)|28| -|[Constructing Reliable Gradient Exploration for Online Learning to Rank](https://doi.org/10.1145/2983323.2983774)|Tong Zhao, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constructing+Reliable+Gradient+Exploration+for+Online+Learning+to+Rank)|28| -|[A Self-Learning and Online Algorithm for Time Series Anomaly Detection, with Application in CPU Manufacturing](https://doi.org/10.1145/2983323.2983344)|Xing Wang, Jessica Lin, Nital Patel, Martin W. Braun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Self-Learning+and+Online+Algorithm+for+Time+Series+Anomaly+Detection,+with+Application+in+CPU+Manufacturing)|28| -|[Cross-lingual Text Classification via Model Translation with Limited Dictionaries](https://doi.org/10.1145/2983323.2983732)|Ruochen Xu, Yiming Yang, Hanxiao Liu, Andrew Hsi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-lingual+Text+Classification+via+Model+Translation+with+Limited+Dictionaries)|27| -|[Measuring Metrics](https://doi.org/10.1145/2983323.2983356)|Pavel A. Dmitriev, Xian Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+Metrics)|27| -|[GiraphAsync: Supporting Online and Offline Graph Processing via Adaptive Asynchronous Message Processing](https://doi.org/10.1145/2983323.2983726)|Yuqiong Liu, Chang Zhou, Jun Gao, Zhiguo Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GiraphAsync:+Supporting+Online+and+Offline+Graph+Processing+via+Adaptive+Asynchronous+Message+Processing)|27| -|[PIN-TRUST: Fast Trust Propagation Exploiting Positive, Implicit, and Negative Information](https://doi.org/10.1145/2983323.2983753)|MinHee Jang, Christos Faloutsos, SangWook Kim, U Kang, Jiwoon Ha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIN-TRUST:+Fast+Trust+Propagation+Exploiting+Positive,+Implicit,+and+Negative+Information)|27| -|[Influence-Aware Truth Discovery](https://doi.org/10.1145/2983323.2983785)|Hengtong Zhang, Qi Li, Fenglong Ma, Houping Xiao, Yaliang Li, Jing Gao, Lu Su||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence-Aware+Truth+Discovery)|27| -|[Hashtag Recommendation for Enterprise Applications](https://doi.org/10.1145/2983323.2983365)|Dhruv Mahajan, Vishwajit Kolathur, Chetan Bansal, Suresh Parthasarathy, Sundararajan Sellamanickam, S. Sathiya Keerthi, Johannes Gehrke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashtag+Recommendation+for+Enterprise+Applications)|27| -|[An Adaptive Framework for Multistream Classification](https://doi.org/10.1145/2983323.2983842)|Swarup Chandra, Ahsanul Haque, Latifur Khan, Charu C. Aggarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Adaptive+Framework+for+Multistream+Classification)|27| -|[Discovering Entities with Just a Little Help from You](https://doi.org/10.1145/2983323.2983798)|Jaspreet Singh, Johannes Hoffart, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Entities+with+Just+a+Little+Help+from+You)|27| -|[Learning Hidden Features for Contextual Bandits](https://doi.org/10.1145/2983323.2983847)|Huazheng Wang, Qingyun Wu, Hongning Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Hidden+Features+for+Contextual+Bandits)|27| -|[Effective Spelling Correction for Eye-based Typing using domain-specific Information about Error Distribution](https://doi.org/10.1145/2983323.2983838)|Raíza Hanada, Maria da Graça Campos Pimentel, Marco Cristo, Fernando Anglada Lores||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+Spelling+Correction+for+Eye-based+Typing+using+domain-specific+Information+about+Error+Distribution)|27| -|[Scalable Local-Recoding Anonymization using Locality Sensitive Hashing for Big Data Privacy Preservation](https://doi.org/10.1145/2983323.2983841)|Xuyun Zhang, Christopher Leckie, Wanchun Dou, Jinjun Chen, Kotagiri Ramamohanarao, Zoran Salcic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Local-Recoding+Anonymization+using+Locality+Sensitive+Hashing+for+Big+Data+Privacy+Preservation)|27| -|[Improving Entity Ranking for Keyword Queries](https://doi.org/10.1145/2983323.2983909)|John Foley, Brendan O'Connor, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Entity+Ranking+for+Keyword+Queries)|27| -|[PairFac: Event Analytics through Discriminant Tensor Factorization](https://doi.org/10.1145/2983323.2983837)|Xidao Wen, YuRu Lin, Konstantinos Pelechrinis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PairFac:+Event+Analytics+through+Discriminant+Tensor+Factorization)|26| -|[Understanding Mobile Searcher Attention with Rich Ad Formats](https://doi.org/10.1145/2983323.2983853)|Dmitry Lagun, Donal McMahon, Vidhya Navalpakkam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Mobile+Searcher+Attention+with+Rich+Ad+Formats)|26| -|[A Framework for Task-specific Short Document Expansion](https://doi.org/10.1145/2983323.2983811)|Ramakrishna B. Bairi, Raghavendra Udupa, Ganesh Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Framework+for+Task-specific+Short+Document+Expansion)|26| -|[On Transductive Classification in Heterogeneous Information Networks](https://doi.org/10.1145/2983323.2983730)|Xiang Li, Ben Kao, Yudian Zheng, Zhipeng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Transductive+Classification+in+Heterogeneous+Information+Networks)|26| -|[Model-Based Oversampling for Imbalanced Sequence Classification](https://doi.org/10.1145/2983323.2983784)|Zhichen Gong, Huanhuan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model-Based+Oversampling+for+Imbalanced+Sequence+Classification)|26| -|[Relational Database Schema Design for Uncertain Data](https://doi.org/10.1145/2983323.2983801)|Sebastian Link, Henri Prade||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relational+Database+Schema+Design+for+Uncertain+Data)|26| -|[Efficient Computation of Importance Based Communities in Web-Scale Networks Using a Single Machine](https://doi.org/10.1145/2983323.2983836)|Shu Chen, Ran Wei, Diana Popova, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Importance+Based+Communities+in+Web-Scale+Networks+Using+a+Single+Machine)|26| -|[Cost-Effective Stream Join Algorithm on Cloud System](https://doi.org/10.1145/2983323.2983773)|Junhua Fang, Rong Zhang, Xiaotong Wang, Tom Z. J. Fu, Zhenjie Zhang, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cost-Effective+Stream+Join+Algorithm+on+Cloud+System)|26| -|[Reuse-based Optimization for Pig Latin](https://doi.org/10.1145/2983323.2983669)|Jesús CamachoRodríguez, Dario Colazzo, Melanie Herschel, Ioana Manolescu, Soudip Roy Chowdhury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reuse-based+Optimization+for+Pig+Latin)|26| -|[Improving Personalized Trip Recommendation by Avoiding Crowds](https://doi.org/10.1145/2983323.2983749)|Xiaoting Wang, Christopher Leckie, Jeffrey Chan, Kwan Hui Lim, Tharshan Vaithianathan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Personalized+Trip+Recommendation+by+Avoiding+Crowds)|25| -|[Compression-Based Selective Sampling for Learning to Rank](https://doi.org/10.1145/2983323.2983813)|Rodrigo M. Silva, Guilherme de Castro Mendes Gomes, Mário S. Alvim, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compression-Based+Selective+Sampling+for+Learning+to+Rank)|25| -|[Growing Graphs from Hyperedge Replacement Graph Grammars](https://doi.org/10.1145/2983323.2983826)|Salvador Aguiñaga, Rodrigo Palácios, David Chiang, Tim Weninger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Growing+Graphs+from+Hyperedge+Replacement+Graph+Grammars)|25| -|[Efficient Hidden Trajectory Reconstruction from Sparse Data](https://doi.org/10.1145/2983323.2983796)|Ning Yang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Hidden+Trajectory+Reconstruction+from+Sparse+Data)|25| -|[Scalability and Total Recall with Fast CoveringLSH](https://doi.org/10.1145/2983323.2983742)|Ninh Pham, Rasmus Pagh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalability+and+Total+Recall+with+Fast+CoveringLSH)|25| -|[Online Adaptive Passive-Aggressive Methods for Non-Negative Matrix Factorization and Its Applications](https://doi.org/10.1145/2983323.2983786)|Chenghao Liu, Steven C. H. Hoi, Peilin Zhao, Jianling Sun, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Adaptive+Passive-Aggressive+Methods+for+Non-Negative+Matrix+Factorization+and+Its+Applications)|25| -|[Word Vector Compositionality based Relevance Feedback using Kernel Density Estimation](https://doi.org/10.1145/2983323.2983750)|Dwaipayan Roy, Debasis Ganguly, Mandar Mitra, Gareth J. F. Jones||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Word+Vector+Compositionality+based+Relevance+Feedback+using+Kernel+Density+Estimation)|25| -|[Learning to Rewrite Queries](https://doi.org/10.1145/2983323.2983835)|Yunlong He, Jiliang Tang, Hua Ouyang, Changsung Kang, Dawei Yin, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rewrite+Queries)|25| -|[Automatic Generation and Validation of Road Maps from GPS Trajectory Data Sets](https://doi.org/10.1145/2983323.2983797)|Hengfeng Li, Lars Kulik, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Generation+and+Validation+of+Road+Maps+from+GPS+Trajectory+Data+Sets)|25| -|[Targeted Influence Maximization in Social Networks](https://doi.org/10.1145/2983323.2983724)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Targeted+Influence+Maximization+in+Social+Networks)|25| -|[Computing and Summarizing the Negative Skycube](https://doi.org/10.1145/2983323.2983759)|Nicolas Hanusse, Patrick Kamnang Wanko, Sofian Maabout||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+and+Summarizing+the+Negative+Skycube)|25| -|[LDA Revisited: Entropy, Prior and Convergence](https://doi.org/10.1145/2983323.2983794)|Jianwei Zhang, Jia Zeng, Mingxuan Yuan, Weixiong Rao, Jianfeng Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LDA+Revisited:+Entropy,+Prior+and+Convergence)|25| -|[MIST: Missing Person Intelligence Synthesis Toolkit](https://doi.org/10.1145/2983323.2983346)|Elham Shaabani, Hamidreza Alvari, Paulo Shakarian, J. E. Kelly Snyder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MIST:+Missing+Person+Intelligence+Synthesis+Toolkit)|25| -|[KB-Enabled Query Recommendation for Long-Tail Queries](https://doi.org/10.1145/2983323.2983650)|Zhipeng Huang, Bogdan Cautis, Reynold Cheng, Yudian Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KB-Enabled+Query+Recommendation+for+Long-Tail+Queries)|25| -|[SoLSCSum: A Linked Sentence-Comment Dataset for Social Context Summarization](https://doi.org/10.1145/2983323.2983376)|MinhTien Nguyen, ChienXuan Tran, DucVu Tran, MinhLe Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SoLSCSum:+A+Linked+Sentence-Comment+Dataset+for+Social+Context+Summarization)|25| -|[Finding News Citations for Wikipedia](https://doi.org/10.1145/2983323.2983808)|Besnik Fetahu, Katja Markert, Wolfgang Nejdl, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+News+Citations+for+Wikipedia)|24| -|[Effective and Efficient Spectral Clustering on Text and Link Data](https://doi.org/10.1145/2983323.2983708)|Zhiqiang Xu, Yiping Ke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+and+Efficient+Spectral+Clustering+on+Text+and+Link+Data)|24| -|[City-Scale Localization with Telco Big Data](https://doi.org/10.1145/2983323.2983345)|Fangzhou Zhu, Chen Luo, Mingxuan Yuan, Yijian Zhu, Zhengqing Zhang, Tao Gu, Ke Deng, Weixiong Rao, Jia Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=City-Scale+Localization+with+Telco+Big+Data)|24| -|[Who are My Familiar Strangers?: Revealing Hidden Friend Relations and Common Interests from Smart Card Data](https://doi.org/10.1145/2983323.2983804)|Fusang Zhang, Beihong Jin, Tingjian Ge, Qiang Ji, Yanling Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+are+My+Familiar+Strangers?:+Revealing+Hidden+Friend+Relations+and+Common+Interests+from+Smart+Card+Data)|24| -|[Predicting Popularity of Twitter Accounts through the Discovery of Link-Propagating Early Adopters](https://doi.org/10.1145/2983323.2983859)|Daichi Imamori, Keishi Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Popularity+of+Twitter+Accounts+through+the+Discovery+of+Link-Propagating+Early+Adopters)|24| -|[Towards the Effective Linking of Social Media Contents to Products in E-Commerce Catalogs](https://doi.org/10.1145/2983323.2983747)|Henry S. Vieira, Altigran S. da Silva, Pável Calado, Marco Cristo, Edleno Silva de Moura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+the+Effective+Linking+of+Social+Media+Contents+to+Products+in+E-Commerce+Catalogs)|24| -|[Q+Tree: An Efficient Quad Tree based Data Indexing for Parallelizing Dynamic and Reverse Skylines](https://doi.org/10.1145/2983323.2983764)|Md. Saiful Islam, Chengfei Liu, J. Wenny Rahayu, Tarique Anwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Q+Tree:+An+Efficient+Quad+Tree+based+Data+Indexing+for+Parallelizing+Dynamic+and+Reverse+Skylines)|24| -|[When is the Time Ripe for Natural Language Processing for Patent Passage Retrieval?](https://doi.org/10.1145/2983323.2983858)|Linda Andersson, Mihai Lupu, João R. M. Palotti, Allan Hanbury, Andreas Rauber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+is+the+Time+Ripe+for+Natural+Language+Processing+for+Patent+Passage+Retrieval?)|24| -|[On Backup Battery Data in Base Stations of Mobile Networks: Measurement, Analysis, and Optimization](https://doi.org/10.1145/2983323.2983734)|Xiaoyi Fan, Feng Wang, Jiangchuan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Backup+Battery+Data+in+Base+Stations+of+Mobile+Networks:+Measurement,+Analysis,+and+Optimization)|24| -|[Approximate Aggregates in Oracle 12C](https://doi.org/10.1145/2983323.2983353)|Hong Su, Mohamed Zaït, Vladimir Barrière, Joseph Torres, Andre Cavalheiro Menck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Aggregates+in+Oracle+12C)|24| -|[A Density-Based Approach to the Retrieval of Top-K Spatial Textual Clusters](https://doi.org/10.1145/2983323.2983648)|Dingming Wu, Christian S. Jensen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Density-Based+Approach+to+the+Retrieval+of+Top-K+Spatial+Textual+Clusters)|24| -|[Probabilistic Knowledge Graph Construction: Compositional and Incremental Approaches](https://doi.org/10.1145/2983323.2983677)|Dongwoo Kim, Lexing Xie, Cheng Soon Ong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Knowledge+Graph+Construction:+Compositional+and+Incremental+Approaches)|24| -|[Where to Place Your Next Restaurant?: Optimal Restaurant Placement via Leveraging User-Generated Reviews](https://doi.org/10.1145/2983323.2983696)|Feng Wang, Li Chen, Weike Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+to+Place+Your+Next+Restaurant?:+Optimal+Restaurant+Placement+via+Leveraging+User-Generated+Reviews)|24| -|[Reenactment for Read-Committed Snapshot Isolation](https://doi.org/10.1145/2983323.2983825)|Bahareh Sadat Arab, Dieter Gawlick, Vasudha Krishnaswamy, Venkatesh Radhakrishnan, Boris Glavic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reenactment+for+Read-Committed+Snapshot+Isolation)|23| -|[PISA: An Index for Aggregating Big Time Series Data](https://doi.org/10.1145/2983323.2983775)|Xiangdong Huang, Jianmin Wang, Raymond K. Wong, Jinrui Zhang, Chen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PISA:+An+Index+for+Aggregating+Big+Time+Series+Data)|23| -|[Cutty: Aggregate Sharing for User-Defined Windows](https://doi.org/10.1145/2983323.2983807)|Paris Carbone, Jonas Traub, Asterios Katsifodimos, Seif Haridi, Volker Markl||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cutty:+Aggregate+Sharing+for+User-Defined+Windows)|23| -|[Efficient Batch Processing for Multiple Keyword Queries on Graph Data](https://doi.org/10.1145/2983323.2983806)|Lu Chen, Chengfei Liu, Xiaochun Yang, Bin Wang, Jianxin Li, Rui Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Batch+Processing+for+Multiple+Keyword+Queries+on+Graph+Data)|23| -|[Information Diffusion at Workplace](https://doi.org/10.1145/2983323.2983848)|Jiawei Zhang, Philip S. Yu, Yuanhua Lv, Qianyi Zhan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+Diffusion+at+Workplace)|23| -|[Deep Match between Geology Reports and Well Logs Using Spatial Information](https://doi.org/10.1145/2983323.2983352)|Bin Tong, Martin Klinkigt, Makoto Iwayama, Yoshiyuki Kobayashi, Anshuman Sahu, Ravigopal Vennelakanti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Match+between+Geology+Reports+and+Well+Logs+Using+Spatial+Information)|23| -|[Learning to Rank Non-Factoid Answers: Comment Selection in Web Forums](https://doi.org/10.1145/2983323.2983906)|Kateryna Tymoshenko, Daniele Bonadiman, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+Non-Factoid+Answers:+Comment+Selection+in+Web+Forums)|23| -|[RAP: Scalable RPCA for Low-rank Matrix Recovery](https://doi.org/10.1145/2983323.2983651)|Chong Peng, Zhao Kang, Ming Yang, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RAP:+Scalable+RPCA+for+Low-rank+Matrix+Recovery)|23| -|[Reuters Tracer: A Large Scale System of Detecting & Verifying Real-Time News Events from Twitter](https://doi.org/10.1145/2983323.2983363)|Xiaomo Liu, Quanzhi Li, Armineh Nourbakhsh, Rui Fang, Merine Thomas, Kajsa Anderson, Russ Kociuba, Mark Vedder, Steven Pomerville, Ramdev Wudali, Robert Martin, John Duprey, Arun Vachher, William Keenan, Sameena Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reuters+Tracer:+A+Large+Scale+System+of+Detecting+&+Verifying+Real-Time+News+Events+from+Twitter)|22| -|[Characterizing Diseases from Unstructured Text: A Vocabulary Driven Word2vec Approach](https://doi.org/10.1145/2983323.2983362)|Saurav Ghosh, Prithwish Chakraborty, Emily Cohn, John S. Brownstein, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+Diseases+from+Unstructured+Text:+A+Vocabulary+Driven+Word2vec+Approach)|22| -|[A Distributed Graph Algorithm for Discovering Unique Behavioral Groups from Large-Scale Telco Data](https://doi.org/10.1145/2983323.2983354)|Qirong Ho, Wenqing Lin, Eran Shaham, Shonali Krishnaswamy, The Anh Dang, Jingxuan Wang, Isabel Choo Zhongyan, Amy SheNash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Distributed+Graph+Algorithm+for+Discovering+Unique+Behavioral+Groups+from+Large-Scale+Telco+Data)|22| -|[Noise-Contrastive Estimation for Answer Selection with Deep Neural Networks](https://doi.org/10.1145/2983323.2983872)|Jinfeng Rao, Hua He, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Noise-Contrastive+Estimation+for+Answer+Selection+with+Deep+Neural+Networks)|22| -|[Hashtag Recommendation Based on Topic Enhanced Embedding, Tweet Entity Data and Learning to Rank](https://doi.org/10.1145/2983323.2983915)|Quanzhi Li, Sameena Shah, Armineh Nourbakhsh, Xiaomo Liu, Rui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashtag+Recommendation+Based+on+Topic+Enhanced+Embedding,+Tweet+Entity+Data+and+Learning+to+Rank)|22| -|[OptMark: A Toolkit for Benchmarking Query Optimizers](https://doi.org/10.1145/2983323.2983658)|Zhan Li, Olga Papaemmanouil, Mitch Cherniack||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OptMark:+A+Toolkit+for+Benchmarking+Query+Optimizers)|22| -|[Memory-Optimized Distributed Graph Processing through Novel Compression Techniques](https://doi.org/10.1145/2983323.2983687)|Panagiotis Liakos, Katia Papakonstantinopoulou, Alex Delis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Memory-Optimized+Distributed+Graph+Processing+through+Novel+Compression+Techniques)|22| -|[Ensemble of Anchor Adapters for Transfer Learning](https://doi.org/10.1145/2983323.2983690)|Fuzhen Zhuang, Ping Luo, Sinno Jialin Pan, Hui Xiong, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ensemble+of+Anchor+Adapters+for+Transfer+Learning)|22| -|[Online Adaptive Topic Focused Tweet Acquisition](https://doi.org/10.1145/2983323.2983693)|Mehdi Sadri, Sharad Mehrotra, Yaming Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Adaptive+Topic+Focused+Tweet+Acquisition)|22| -|[A Comparative Study of Query-biased and Non-redundant Snippets for Structured Search on Mobile Devices](https://doi.org/10.1145/2983323.2983699)|Nikita V. Spirin, Alexander S. Kotov, Karrie G. Karahalios, Vassil Mladenov, Pavel A. Izhutov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparative+Study+of+Query-biased+and+Non-redundant+Snippets+for+Structured+Search+on+Mobile+Devices)|22| -|[LICON: A Linear Weighting Scheme for the Contribution ofInput Variables in Deep Artificial Neural Networks](https://doi.org/10.1145/2983323.2983746)|Gjergji Kasneci, Thomas Gottron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LICON:+A+Linear+Weighting+Scheme+for+the+Contribution+ofInput+Variables+in+Deep+Artificial+Neural+Networks)|21| -|[Truth Discovery via Exploiting Implications from Multi-Source Data](https://doi.org/10.1145/2983323.2983791)|Xianzhi Wang, Quan Z. Sheng, Lina Yao, Xue Li, Xiu Susie Fang, Xiaofei Xu, Boualem Benatallah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+via+Exploiting+Implications+from+Multi-Source+Data)|21| -|[Query-Biased Partitioning for Selective Search](https://doi.org/10.1145/2983323.2983706)|Zhuyun Dai, Chenyan Xiong, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-Biased+Partitioning+for+Selective+Search)|21| -|[From Recommendation to Profile Inference (Rec2PI): A Value-added Service to Wi-Fi Data Mining](https://doi.org/10.1145/2983323.2983827)|Cheng Chen, Fang Dong, Kui Wu, Venkatesh Srinivasan, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Recommendation+to+Profile+Inference+(Rec2PI):+A+Value-added+Service+to+Wi-Fi+Data+Mining)|21| -|[Query Expansion Using Word Embeddings](https://doi.org/10.1145/2983323.2983876)|Saar Kuzi, Anna Shtok, Oren Kurland||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Expansion+Using+Word+Embeddings)|21| -|[Ensemble Learned Vaccination Uptake Prediction using Web Search Queries](https://doi.org/10.1145/2983323.2983882)|Niels Dalum Hansen, Christina Lioma, Kåre Mølbak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ensemble+Learned+Vaccination+Uptake+Prediction+using+Web+Search+Queries)|21| -|[Top-N Recommendation on Graphs](https://doi.org/10.1145/2983323.2983649)|Zhao Kang, Chong Peng, Ming Yang, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-N+Recommendation+on+Graphs)|21| -|[Framing Mobile Information Needs: An Investigation of Hierarchical Query Sequence Structure](https://doi.org/10.1145/2983323.2983654)|Shuguang Han, Xing Yi, Zhen Yue, Zhigeng Geng, Alyssa Glass||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Framing+Mobile+Information+Needs:+An+Investigation+of+Hierarchical+Query+Sequence+Structure)|21| -|[Recommendations For Streaming Data](https://doi.org/10.1145/2983323.2983663)|Karthik Subbian, Charu C. Aggarwal, Kshiteesh Hegde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendations+For+Streaming+Data)|21| -|[OrientStream: A Framework for Dynamic Resource Allocation in Distributed Data Stream Management Systems](https://doi.org/10.1145/2983323.2983681)|Chunkai Wang, Xiaofeng Meng, Qi Guo, Zujian Weng, Chen Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OrientStream:+A+Framework+for+Dynamic+Resource+Allocation+in+Distributed+Data+Stream+Management+Systems)|21| -|[Generative Feature Language Models for Mining Implicit Features from Customer Reviews](https://doi.org/10.1145/2983323.2983729)|Shubhra Kanti Karmaker Santu, Parikshit Sondhi, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generative+Feature+Language+Models+for+Mining+Implicit+Features+from+Customer+Reviews)|20| -|[Geotagging Named Entities in News and Online Documents](https://doi.org/10.1145/2983323.2983795)|Jiangwei Yu Rafiei, Davood Rafiei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Geotagging+Named+Entities+in+News+and+Online+Documents)|20| -|[A Probabilistic Multi-Touch Attribution Model for Online Advertising](https://doi.org/10.1145/2983323.2983787)|Wendi Ji, Xiaoling Wang, Dell Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Multi-Touch+Attribution+Model+for+Online+Advertising)|20| -|[Improving Search Results with Prior Similar Queries](https://doi.org/10.1145/2983323.2983890)|Yashar Moshfeghi, Kristiyan Velinov, Peter Triantafillou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Search+Results+with+Prior+Similar+Queries)|20| -|[Adaptive Distributional Extensions to DFR Ranking](https://doi.org/10.1145/2983323.2983895)|Casper Petersen, Jakob Grue Simonsen, Kalervo Järvelin, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Distributional+Extensions+to+DFR+Ranking)|20| -|[Forecasting Seasonal Time Series Using Weighted Gradient RBF Network based Autoregressive Model](https://doi.org/10.1145/2983323.2983899)|Wenjie Ruan, Quan Z. Sheng, Peipei Xu, Nguyen Khoi Tran, Nickolas J. G. Falkner, Xue Li, Wei Emma Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Seasonal+Time+Series+Using+Weighted+Gradient+RBF+Network+based+Autoregressive+Model)|20| -|[Evaluating Document Retrieval Methods for Resource Selection in Clustered P2P IR](https://doi.org/10.1145/2983323.2983912)|Rami Suleiman Alkhawaldeh, Joemon M. Jose, Deepak P||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+Document+Retrieval+Methods+for+Resource+Selection+in+Clustered+P2P+IR)|20| -|[Query Answering Efficiency in Expert Networks Under Decentralized Search](https://doi.org/10.1145/2983323.2983652)|Liang Ma, Mudhakar Srivatsa, Derya Cansever, Xifeng Yan, Sue Kase, Michelle Vanni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Answering+Efficiency+in+Expert+Networks+Under+Decentralized+Search)|20| -|[A Study of Realtime Summarization Metrics](https://doi.org/10.1145/2983323.2983653)|Matthew EkstrandAbueg, Richard McCreadie, Virgil Pavlu, Fernando Diaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Realtime+Summarization+Metrics)|20| -|[Robust Contextual Outlier Detection: Where Context Meets Sparsity](https://doi.org/10.1145/2983323.2983660)|Jiongqian Liang, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Contextual+Outlier+Detection:+Where+Context+Meets+Sparsity)|20| -|[FolkTrails: Interpreting Navigation Behavior in a Social Tagging System](https://doi.org/10.1145/2983323.2983686)|Thomas Niebler, Martin Becker, Daniel Zoller, Stephan Doerfel, Andreas Hotho||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FolkTrails:+Interpreting+Navigation+Behavior+in+a+Social+Tagging+System)|20| -|[Optimizing Nugget Annotations with Active Learning](https://doi.org/10.1145/2983323.2983694)|Gaurav Baruah, Haotian Zhang, Rakesh Guttikonda, Jimmy Lin, Mark D. Smucker, Olga Vechtomova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Nugget+Annotations+with+Active+Learning)|20| -|[Uncovering Fake Likers in Online Social Networks](https://doi.org/10.1145/2983323.2983695)|Prudhvi Ratna Badri Satya, Kyumin Lee, Dongwon Lee, Thanh Tran, Jason (Jiasheng) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+Fake+Likers+in+Online+Social+Networks)|20| -|[Leveraging the Implicit Structure within Social Media for Emergent Rumor Detection](https://doi.org/10.1145/2983323.2983697)|Justin Sampson, Fred Morstatter, Liang Wu, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+the+Implicit+Structure+within+Social+Media+for+Emergent+Rumor+Detection)|20| -|[Automatical Storyline Generation with Help from Twitter](https://doi.org/10.1145/2983323.2983698)|Ting Hua, Xuchao Zhang, Wei Wang, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatical+Storyline+Generation+with+Help+from+Twitter)|20| -|[Approximating Graph Pattern Queries Using Views](https://doi.org/10.1145/2983323.2983766)|Jia Li, Yang Cao, Xudong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximating+Graph+Pattern+Queries+Using+Views)|19| -|[Empowering Truth Discovery with Multi-Truth Prediction](https://doi.org/10.1145/2983323.2983767)|Xianzhi Wang, Quan Z. Sheng, Lina Yao, Xue Li, Xiu Susie Fang, Xiaofei Xu, Boualem Benatallah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Empowering+Truth+Discovery+with+Multi-Truth+Prediction)|19| -|[Influence Maximization for Complementary Goods: Why Parties Fail to Cooperate?](https://doi.org/10.1145/2983323.2983741)|HanChing Ou, ChungKuang Chou, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+Maximization+for+Complementary+Goods:+Why+Parties+Fail+to+Cooperate?)|19| -|[CyberRank: Knowledge Elicitation for Risk Assessment of Database Security](https://doi.org/10.1145/2983323.2983896)|Hagit GrushkaCohen, Oded Sofer, Ofer Biller, Bracha Shapira, Lior Rokach||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CyberRank:+Knowledge+Elicitation+for+Risk+Assessment+of+Database+Security)|19| -|[A Non-Parametric Topic Model for Short Texts Incorporating Word Coherence Knowledge](https://doi.org/10.1145/2983323.2983898)|Yuhao Zhang, Wenji Mao, Daniel Dajun Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Non-Parametric+Topic+Model+for+Short+Texts+Incorporating+Word+Coherence+Knowledge)|19| -|[Probabilistic Approaches to Controversy Detection](https://doi.org/10.1145/2983323.2983911)|Myungha Jang, John Foley, Shiri DoriHacohen, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Approaches+to+Controversy+Detection)|19| -|[Multi-Dueling Bandits and Their Application to Online Ranker Evaluation](https://doi.org/10.1145/2983323.2983659)|Brian Brost, Yevgeny Seldin, Ingemar J. Cox, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Dueling+Bandits+and+Their+Application+to+Online+Ranker+Evaluation)|19| -|[Credibility Assessment of Textual Claims on the Web](https://doi.org/10.1145/2983323.2983661)|Kashyap Popat, Subhabrata Mukherjee, Jannik Strötgen, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Credibility+Assessment+of+Textual+Claims+on+the+Web)|19| -|[Digesting News Reader Comments via Fine-Grained Associations with Event Facets and News Contents](https://doi.org/10.1145/2983323.2983684)|Bei Shi, Wai Lam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Digesting+News+Reader+Comments+via+Fine-Grained+Associations+with+Event+Facets+and+News+Contents)|19| -|[Content-Agnostic Malware Detection in Heterogeneous Malicious Distribution Graph](https://doi.org/10.1145/2983323.2983700)|Ibrahim M. Alabdulmohsin, Yufei Han, Yun Shen, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-Agnostic+Malware+Detection+in+Heterogeneous+Malicious+Distribution+Graph)|19| -|[Collective Classification via Discriminative Matrix Factorization on Sparsely Labeled Networks](https://doi.org/10.1145/2983323.2983754)|Daokun Zhang, Jie Yin, Xingquan Zhu, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+Classification+via+Discriminative+Matrix+Factorization+on+Sparsely+Labeled+Networks)|18| -|[Global and Local Influence-based Social Recommendation](https://doi.org/10.1145/2983323.2983873)|Qinzhe Zhang, Jia Wu, Hong Yang, Weixue Lu, Guodong Long, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Global+and+Local+Influence-based+Social+Recommendation)|18| -|[Iterative Search using Query Aspects](https://doi.org/10.1145/2983323.2983903)|Manmeet Singh, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Iterative+Search+using+Query+Aspects)|18| -|[An Experimental Comparison of Iterative MapReduce Frameworks](https://doi.org/10.1145/2983323.2983647)|Haejoon Lee, Minseo Kang, SunBum Youn, JaeGil Lee, YongChul Kwon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Experimental+Comparison+of+Iterative+MapReduce+Frameworks)|18| -|[A Context-aware Collaborative Filtering Approach for Urban Black Holes Detection](https://doi.org/10.1145/2983323.2983655)|Li Jin, Zhuonan Feng, Ling Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Context-aware+Collaborative+Filtering+Approach+for+Urban+Black+Holes+Detection)|18| -|[Where are You Tweeting?: A Context and User Movement Based Approach](https://doi.org/10.1145/2983323.2983881)|Zhi Liu, Yan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+are+You+Tweeting?:+A+Context+and+User+Movement+Based+Approach)|17| -|[The Role of Relevance in Sponsored Search](https://doi.org/10.1145/2983323.2983840)|Luca Maria Aiello, Ioannis Arapakis, Ricardo BaezaYates, Xiao Bai, Nicola Barbieri, Amin Mantrach, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+of+Relevance+in+Sponsored+Search)|16| -|[Updating an Existing Social Graph Snapshot via a Limited API](https://doi.org/10.1145/2983323.2983703)|Norases Vesdapunt, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Updating+an+Existing+Social+Graph+Snapshot+via+a+Limited+API)|16| -|[Skipping Word: A Character-Sequential Representation based Framework for Question Answering](https://doi.org/10.1145/2983323.2983861)|Lingxun Meng, Yan Li, Mengyi Liu, Peng Shu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Skipping+Word:+A+Character-Sequential+Representation+based+Framework+for+Question+Answering)|16| +|[Targeted Influence Maximization in Social Networks](https://doi.org/10.1145/2983323.2983724)|Chonggang Song, Wynne Hsu, MongLi Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Targeted+Influence+Maximization+in+Social+Networks)|33| +|[Medical Question Answering for Clinical Decision Support](https://doi.org/10.1145/2983323.2983819)|Travis R. Goodwin, Sanda M. Harabagiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Medical+Question+Answering+for+Clinical+Decision+Support)|32| +|[Learning to Rewrite Queries](https://doi.org/10.1145/2983323.2983835)|Yunlong He, Jiliang Tang, Hua Ouyang, Changsung Kang, Dawei Yin, Yi Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rewrite+Queries)|32| +|[User Response Learning for Directly Optimizing Campaign Performance in Display Advertising](https://doi.org/10.1145/2983323.2983347)|Kan Ren, Weinan Zhang, Yifei Rong, Haifeng Zhang, Yong Yu, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Response+Learning+for+Directly+Optimizing+Campaign+Performance+in+Display+Advertising)|31| +|[Robust Spectral Ensemble Clustering](https://doi.org/10.1145/2983323.2983745)|Zhiqiang Tao, Hongfu Liu, Sheng Li, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Spectral+Ensemble+Clustering)|29| +|[Crowdsourcing-based Urban Anomaly Prediction System for Smart Cities](https://doi.org/10.1145/2983323.2983886)|Chao Huang, Xian Wu, Dong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing-based+Urban+Anomaly+Prediction+System+for+Smart+Cities)|29| +|[Recommendations For Streaming Data](https://doi.org/10.1145/2983323.2983663)|Karthik Subbian, Charu C. Aggarwal, Kshiteesh Hegde||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendations+For+Streaming+Data)|29| +|[Improving Personalized Trip Recommendation by Avoiding Crowds](https://doi.org/10.1145/2983323.2983749)|Xiaoting Wang, Christopher Leckie, Jeffrey Chan, Kwan Hui Lim, Tharshan Vaithianathan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Personalized+Trip+Recommendation+by+Avoiding+Crowds)|28| +|[City-Scale Localization with Telco Big Data](https://doi.org/10.1145/2983323.2983345)|Fangzhou Zhu, Chen Luo, Mingxuan Yuan, Yijian Zhu, Zhengqing Zhang, Tao Gu, Ke Deng, Weixiong Rao, Jia Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=City-Scale+Localization+with+Telco+Big+Data)|28| +|[Querying Minimal Steiner Maximum-Connected Subgraphs in Large Graphs](https://doi.org/10.1145/2983323.2983748)|Jiafeng Hu, Xiaowei Wu, Reynold Cheng, Siqiang Luo, Yixiang Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Querying+Minimal+Steiner+Maximum-Connected+Subgraphs+in+Large+Graphs)|27| +|[Uncovering Fake Likers in Online Social Networks](https://doi.org/10.1145/2983323.2983695)|Prudhvi Ratna Badri Satya, Kyumin Lee, Dongwon Lee, Thanh Tran, Jason (Jiasheng) Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+Fake+Likers+in+Online+Social+Networks)|27| +|[Efficient Processing of Location-Aware Group Preference Queries](https://doi.org/10.1145/2983323.2983757)|Miao Li, Lisi Chen, Gao Cong, Yu Gu, Ge Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Processing+of+Location-Aware+Group+Preference+Queries)|26| +|[Pseudo-Relevance Feedback Based on Matrix Factorization](https://doi.org/10.1145/2983323.2983844)|Hamed Zamani, Javid Dadashkarimi, Azadeh Shakery, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pseudo-Relevance+Feedback+Based+on+Matrix+Factorization)|26| +|[Collective Classification via Discriminative Matrix Factorization on Sparsely Labeled Networks](https://doi.org/10.1145/2983323.2983754)|Daokun Zhang, Jie Yin, Xingquan Zhu, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+Classification+via+Discriminative+Matrix+Factorization+on+Sparsely+Labeled+Networks)|26| +|[Measuring Metrics](https://doi.org/10.1145/2983323.2983356)|Pavel A. Dmitriev, Xian Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+Metrics)|25| +|[Multi-View Time Series Classification: A Discriminative Bilinear Projection Approach](https://doi.org/10.1145/2983323.2983780)|Sheng Li, Yaliang Li, Yun Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-View+Time+Series+Classification:+A+Discriminative+Bilinear+Projection+Approach)|25| +|[BIGtensor: Mining Billion-Scale Tensor Made Easy](https://doi.org/10.1145/2983323.2983332)|Namyong Park, Byungsoo Jeon, Jungwoo Lee, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BIGtensor:+Mining+Billion-Scale+Tensor+Made+Easy)|24| +|[Reuters Tracer: A Large Scale System of Detecting & Verifying Real-Time News Events from Twitter](https://doi.org/10.1145/2983323.2983363)|Xiaomo Liu, Quanzhi Li, Armineh Nourbakhsh, Rui Fang, Merine Thomas, Kajsa Anderson, Russ Kociuba, Mark Vedder, Steven Pomerville, Ramdev Wudali, Robert Martin, John Duprey, Arun Vachher, William Keenan, Sameena Shah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reuters+Tracer:+A+Large+Scale+System+of+Detecting+&+Verifying+Real-Time+News+Events+from+Twitter)|23| +|[Joint Collaborative Ranking with Social Relationships in Top-N Recommendation](https://doi.org/10.1145/2983323.2983839)|Dimitrios Rafailidis, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Collaborative+Ranking+with+Social+Relationships+in+Top-N+Recommendation)|23| +|[PIN-TRUST: Fast Trust Propagation Exploiting Positive, Implicit, and Negative Information](https://doi.org/10.1145/2983323.2983753)|MinHee Jang, Christos Faloutsos, SangWook Kim, U Kang, Jiwoon Ha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PIN-TRUST:+Fast+Trust+Propagation+Exploiting+Positive,+Implicit,+and+Negative+Information)|22| +|[Semi-Supervision Dramatically Improves Time Series Clustering under Dynamic Time Warping](https://doi.org/10.1145/2983323.2983855)|Hoang Anh Dau, Nurjahan Begum, Eamonn J. Keogh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Supervision+Dramatically+Improves+Time+Series+Clustering+under+Dynamic+Time+Warping)|22| +|[Efficient Computation of Importance Based Communities in Web-Scale Networks Using a Single Machine](https://doi.org/10.1145/2983323.2983836)|Shu Chen, Ran Wei, Diana Popova, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Importance+Based+Communities+in+Web-Scale+Networks+Using+a+Single+Machine)|22| +|[Characterizing Diseases from Unstructured Text: A Vocabulary Driven Word2vec Approach](https://doi.org/10.1145/2983323.2983362)|Saurav Ghosh, Prithwish Chakraborty, Emily Cohn, John S. Brownstein, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Characterizing+Diseases+from+Unstructured+Text:+A+Vocabulary+Driven+Word2vec+Approach)|21| +|[Network-Efficient Distributed Word2vec Training System for Large Vocabularies](https://doi.org/10.1145/2983323.2983361)|Erik Ordentlich, Lee Yang, Andy Feng, Peter Cnudde, Mihajlo Grbovic, Nemanja Djuric, Vladan Radosavljevic, Gavin Owens||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Network-Efficient+Distributed+Word2vec+Training+System+for+Large+Vocabularies)|21| +|[An Adaptive Framework for Multistream Classification](https://doi.org/10.1145/2983323.2983842)|Swarup Chandra, Ahsanul Haque, Latifur Khan, Charu C. Aggarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Adaptive+Framework+for+Multistream+Classification)|21| +|[CrowdSelect: Increasing Accuracy of Crowdsourcing Tasks through Behavior Prediction and User Selection](https://doi.org/10.1145/2983323.2983830)|Chenxi Qiu, Anna Cinzia Squicciarini, Barbara Carminati, James Caverlee, Dev Rishi Khare||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CrowdSelect:+Increasing+Accuracy+of+Crowdsourcing+Tasks+through+Behavior+Prediction+and+User+Selection)|20| +|[Supervised Robust Discrete Multimodal Hashing for Cross-Media Retrieval](https://doi.org/10.1145/2983323.2983743)|TingKun Yan, XinShun Xu, Shanqing Guo, Zi Huang, Xiaolin Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Robust+Discrete+Multimodal+Hashing+for+Cross-Media+Retrieval)|20| +|[Bayesian Non-Exhaustive Classification A Case Study: Online Name Disambiguation using Temporal Record Streams](https://doi.org/10.1145/2983323.2983714)|Baichuan Zhang, Murat Dundar, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bayesian+Non-Exhaustive+Classification+A+Case+Study:+Online+Name+Disambiguation+using+Temporal+Record+Streams)|20| +|[Probabilistic Approaches to Controversy Detection](https://doi.org/10.1145/2983323.2983911)|Myungha Jang, John Foley, Shiri DoriHacohen, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Approaches+to+Controversy+Detection)|20| +|[Routing an Autonomous Taxi with Reinforcement Learning](https://doi.org/10.1145/2983323.2983379)|Miyoung Han, Pierre Senellart, Stéphane Bressan, Huayu Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Routing+an+Autonomous+Taxi+with+Reinforcement+Learning)|20| +|[Semi-supervised Multi-Label Topic Models for Document Classification and Sentence Labeling](https://doi.org/10.1145/2983323.2983752)|Hossein Soleimani, David J. Miller||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-supervised+Multi-Label+Topic+Models+for+Document+Classification+and+Sentence+Labeling)|19| +|[PowerWalk: Scalable Personalized PageRank via Random Walks with Vertex-Centric Decomposition](https://doi.org/10.1145/2983323.2983713)|Qin Liu, Zhenguo Li, John C. S. Lui, Jiefeng Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PowerWalk:+Scalable+Personalized+PageRank+via+Random+Walks+with+Vertex-Centric+Decomposition)|19| +|[Studying the Dark Triad of Personality through Twitter Behavior](https://doi.org/10.1145/2983323.2983822)|Daniel PreotiucPietro, Jordan Carpenter, Salvatore Giorgi, Lyle H. Ungar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Studying+the+Dark+Triad+of+Personality+through+Twitter+Behavior)|19| +|[Fully Dynamic Shortest-Path Distance Query Acceleration on Massive Networks](https://doi.org/10.1145/2983323.2983731)|Takanori Hayashi, Takuya Akiba, Kenichi Kawarabayashi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fully+Dynamic+Shortest-Path+Distance+Query+Acceleration+on+Massive+Networks)|19| +|[Making Sense of Entities and Quantities in Web Tables](https://doi.org/10.1145/2983323.2983772)|Yusra Ibrahim, Mirek Riedewald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Making+Sense+of+Entities+and+Quantities+in+Web+Tables)|19| +|[A Theoretical Framework on the Ideal Number of Classifiers for Online Ensembles in Data Streams](https://doi.org/10.1145/2983323.2983907)|Hamed R. Bonab, Fazli Can||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Theoretical+Framework+on+the+Ideal+Number+of+Classifiers+for+Online+Ensembles+in+Data+Streams)|18| +|[User Modeling on Twitter with WordNet Synsets and DBpedia Concepts for Personalized Recommendations](https://doi.org/10.1145/2983323.2983908)|Guangyuan Piao, John G. Breslin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Modeling+on+Twitter+with+WordNet+Synsets+and+DBpedia+Concepts+for+Personalized+Recommendations)|18| +|[Where to Place Your Next Restaurant?: Optimal Restaurant Placement via Leveraging User-Generated Reviews](https://doi.org/10.1145/2983323.2983696)|Feng Wang, Li Chen, Weike Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+to+Place+Your+Next+Restaurant?:+Optimal+Restaurant+Placement+via+Leveraging+User-Generated+Reviews)|18| +|[TweetSift: Tweet Topic Classification Based on Entity Knowledge Base and Topic Enhanced Word Embedding](https://doi.org/10.1145/2983323.2983325)|Quanzhi Li, Sameena Shah, Xiaomo Liu, Armineh Nourbakhsh, Rui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TweetSift:+Tweet+Topic+Classification+Based+on+Entity+Knowledge+Base+and+Topic+Enhanced+Word+Embedding)|18| +|[A Multiple Instance Learning Framework for Identifying Key Sentences and Detecting Events](https://doi.org/10.1145/2983323.2983821)|Wei Wang, Yue Ning, Huzefa Rangwala, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Multiple+Instance+Learning+Framework+for+Identifying+Key+Sentences+and+Detecting+Events)|17| +|[Document Filtering for Long-tail Entities](https://doi.org/10.1145/2983323.2983728)|Ridho Reinanda, Edgar Meij, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Document+Filtering+for+Long-tail+Entities)|17| +|[Off the Beaten Path: Let's Replace Term-Based Retrieval with k-NN Search](https://doi.org/10.1145/2983323.2983815)|Leonid Boytsov, David Novak, Yury A. Malkov, Eric Nyberg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Off+the+Beaten+Path:+Let's+Replace+Term-Based+Retrieval+with+k-NN+Search)|17| +|[Uncovering the Spatio-Temporal Dynamics of Memes in the Presence of Incomplete Information](https://doi.org/10.1145/2983323.2983782)|Hancheng Ge, James Caverlee, Nan Zhang, Anna Cinzia Squicciarini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Uncovering+the+Spatio-Temporal+Dynamics+of+Memes+in+the+Presence+of+Incomplete+Information)|17| +|[Robust Contextual Outlier Detection: Where Context Meets Sparsity](https://doi.org/10.1145/2983323.2983660)|Jiongqian Liang, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Contextual+Outlier+Detection:+Where+Context+Meets+Sparsity)|17| +|[Finding News Citations for Wikipedia](https://doi.org/10.1145/2983323.2983808)|Besnik Fetahu, Katja Markert, Wolfgang Nejdl, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+News+Citations+for+Wikipedia)|16| +|[Model-Based Oversampling for Imbalanced Sequence Classification](https://doi.org/10.1145/2983323.2983784)|Zhichen Gong, Huanhuan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Model-Based+Oversampling+for+Imbalanced+Sequence+Classification)|16| +|[Urban Traffic Prediction through the Second Use of Inexpensive Big Data from Buildings](https://doi.org/10.1145/2983323.2983357)|Zimu Zheng, Dan Wang, Jian Pei, Yi Yuan, Cheng Fan, Linda Fu Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Urban+Traffic+Prediction+through+the+Second+Use+of+Inexpensive+Big+Data+from+Buildings)|16| +|[Scalable Local-Recoding Anonymization using Locality Sensitive Hashing for Big Data Privacy Preservation](https://doi.org/10.1145/2983323.2983841)|Xuyun Zhang, Christopher Leckie, Wanchun Dou, Jinjun Chen, Kotagiri Ramamohanarao, Zoran Salcic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Local-Recoding+Anonymization+using+Locality+Sensitive+Hashing+for+Big+Data+Privacy+Preservation)|16| |[Modeling and Predicting Popularity Dynamics via an Influence-based Self-Excited Hawkes Process](https://doi.org/10.1145/2983323.2983868)|Peng Bao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+and+Predicting+Popularity+Dynamics+via+an+Influence-based+Self-Excited+Hawkes+Process)|16| -|[A Self-Organizing Map for Identifying InfluentialCommunities in Speech-based Networks](https://doi.org/10.1145/2983323.2983885)|Sameen Mansha, Faisal Kamiran, Asim Karim, Aizaz Anwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Self-Organizing+Map+for+Identifying+InfluentialCommunities+in+Speech-based+Networks)|16| -|[PRO: Preference-Aware Recurring Query Optimization](https://doi.org/10.1145/2983323.2983664)|Zhongfang Zhuang, Chuan Lei, Elke A. Rundensteiner, Mohamed Y. Eltabakh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRO:+Preference-Aware+Recurring+Query+Optimization)|16| -|[Why Did You Cover That Song?: Modeling N-th Order Derivative Creation with Content Popularity](https://doi.org/10.1145/2983323.2983674)|Kosetsu Tsukuda, Masahiro Hamasaki, Masataka Goto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Why+Did+You+Cover+That+Song?:+Modeling+N-th+Order+Derivative+Creation+with+Content+Popularity)|16| -|[Efficient Algorithms for the Two Locus Problem in Genome-Wide Association Study: Algorithms for the Two Locus Problem](https://doi.org/10.1145/2983323.2983685)|Sanguthevar Rajasekaran, Subrata Saha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Algorithms+for+the+Two+Locus+Problem+in+Genome-Wide+Association+Study:+Algorithms+for+the+Two+Locus+Problem)|16| -|[Incremental Mining of High Utility Sequential Patterns in Incremental Databases](https://doi.org/10.1145/2983323.2983691)|JunZhe Wang, JiunLong Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+Mining+of+High+Utility+Sequential+Patterns+in+Incremental+Databases)|16| -|[Hierarchical and Dynamic k-Path Covers](https://doi.org/10.1145/2983323.2983712)|Takuya Akiba, Yosuke Yano, Naoto Mizuno||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+and+Dynamic+k-Path+Covers)|15| -|[Approximate Discovery of Functional Dependencies for Large Datasets](https://doi.org/10.1145/2983323.2983781)|Tobias Bleifuß, Susanne Bülow, Johannes Frohnhofen, Julian Risch, Georg Wiese, Sebastian Kruse, Thorsten Papenbrock, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Discovery+of+Functional+Dependencies+for+Large+Datasets)|15| -|[Towards Time-Discounted Influence Maximization](https://doi.org/10.1145/2983323.2983862)|Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Time-Discounted+Influence+Maximization)|15| -|[Learning to Account for Good Abandonment in Search Success Metrics](https://doi.org/10.1145/2983323.2983867)|Madian Khabsa, Aidan C. Crook, Ahmed Hassan Awadallah, Imed Zitouni, Tasos Anastasakos, Kyle Williams||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Account+for+Good+Abandonment+in+Search+Success+Metrics)|15| -|[Predicting Importance of Historical Persons using Wikipedia](https://doi.org/10.1145/2983323.2983871)|Adam Jatowt, Daisuke Kawai, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Importance+of+Historical+Persons+using+Wikipedia)|15| +|[KB-Enabled Query Recommendation for Long-Tail Queries](https://doi.org/10.1145/2983323.2983650)|Zhipeng Huang, Bogdan Cautis, Reynold Cheng, Yudian Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KB-Enabled+Query+Recommendation+for+Long-Tail+Queries)|16| +|[A Unified Index for Spatio-Temporal Keyword Queries](https://doi.org/10.1145/2983323.2983751)|TuanAnh HoangVu, Huy T. Vo, Juliana Freire||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Unified+Index+for+Spatio-Temporal+Keyword+Queries)|15| +|[Incorporating Clicks, Attention and Satisfaction into a Search Engine Result Page Evaluation Model](https://doi.org/10.1145/2983323.2983829)|Aleksandr Chuklin, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+Clicks,+Attention+and+Satisfaction+into+a+Search+Engine+Result+Page+Evaluation+Model)|15| +|[Annotating Points of Interest with Geo-tagged Tweets](https://doi.org/10.1145/2983323.2983850)|Kaiqi Zhao, Gao Cong, Aixin Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Annotating+Points+of+Interest+with+Geo-tagged+Tweets)|15| +|[Agents, Simulated Users and Humans: An Analysis of Performance and Behaviour](https://doi.org/10.1145/2983323.2983805)|David Maxwell, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Agents,+Simulated+Users+and+Humans:+An+Analysis+of+Performance+and+Behaviour)|15| +|[Influence-Aware Truth Discovery](https://doi.org/10.1145/2983323.2983785)|Hengtong Zhang, Qi Li, Fenglong Ma, Houping Xiao, Yaliang Li, Jing Gao, Lu Su||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence-Aware+Truth+Discovery)|15| +|[Automatic Generation and Validation of Road Maps from GPS Trajectory Data Sets](https://doi.org/10.1145/2983323.2983797)|Hengfeng Li, Lars Kulik, Kotagiri Ramamohanarao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Generation+and+Validation+of+Road+Maps+from+GPS+Trajectory+Data+Sets)|15| |[Regularising Factorised Models for Venue Recommendation using Friends and their Comments](https://doi.org/10.1145/2983323.2983889)|Jarana Manotumruksa, Craig MacDonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularising+Factorised+Models+for+Venue+Recommendation+using+Friends+and+their+Comments)|15| -|[Learning to Re-Rank Questions in Community Question Answering Using Advanced Features](https://doi.org/10.1145/2983323.2983893)|Giovanni Da San Martino, Alberto BarrónCedeño, Salvatore Romeo, Antonio Uva, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Re-Rank+Questions+in+Community+Question+Answering+Using+Advanced+Features)|15| -|[When Sensor Meets Tensor: Filling Missing Sensor Values Through a Tensor Approach](https://doi.org/10.1145/2983323.2983900)|Wenjie Ruan, Peipei Xu, Quan Z. Sheng, Nguyen Khoi Tran, Nickolas J. G. Falkner, Xue Li, Wei Emma Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Sensor+Meets+Tensor:+Filling+Missing+Sensor+Values+Through+a+Tensor+Approach)|15| -|[The Healing Power of Poison: Helpful Non-relevant Documents in Feedback](https://doi.org/10.1145/2983323.2983910)|Mostafa Dehghani, Samira Abnar, Jaap Kamps||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Healing+Power+of+Poison:+Helpful+Non-relevant+Documents+in+Feedback)|15| -|[Discovering Temporal Purchase Patterns with Different Responses to Promotions](https://doi.org/10.1145/2983323.2983665)|Ling Luo, Bin Li, Irena Koprinska, Shlomo Berkovsky, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Temporal+Purchase+Patterns+with+Different+Responses+to+Promotions)|15| -|[A Filtering-based Clustering Algorithm for Improving Spatio-temporal Kriging Interpolation Accuracy](https://doi.org/10.1145/2983323.2983668)|Qiao Kang, Weikeng Liao, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Filtering-based+Clustering+Algorithm+for+Improving+Spatio-temporal+Kriging+Interpolation+Accuracy)|15| -|[Multi-source Hierarchical Prediction Consolidation](https://doi.org/10.1145/2983323.2983676)|Chenwei Zhang, Sihong Xie, Yaliang Li, Jing Gao, Wei Fan, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-source+Hierarchical+Prediction+Consolidation)|15| -|[Digesting Multilingual Reader Comments via Latent Discussion Topics with Commonality and Specificity](https://doi.org/10.1145/2983323.2983683)|Bei Shi, Wai Lam, Lidong Bing, Yinqing Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Digesting+Multilingual+Reader+Comments+via+Latent+Discussion+Topics+with+Commonality+and+Specificity)|15| -|[Thymeflow, A Personal Knowledge Base with Spatio-temporal Data](https://doi.org/10.1145/2983323.2983337)|David Montoya, Thomas Pellissier Tanon, Serge Abiteboul, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Thymeflow,+A+Personal+Knowledge+Base+with+Spatio-temporal+Data)|15| -|[Clustering Speed in Multi-lane Traffic Networks](https://doi.org/10.1145/2983323.2983905)|Bing Zhang, Goce Trajcevski, Feiying Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+Speed+in+Multi-lane+Traffic+Networks)|14| -|[A Theoretical Framework on the Ideal Number of Classifiers for Online Ensembles in Data Streams](https://doi.org/10.1145/2983323.2983907)|Hamed R. Bonab, Fazli Can||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Theoretical+Framework+on+the+Ideal+Number+of+Classifiers+for+Online+Ensembles+in+Data+Streams)|14| -|[Attractiveness versus Competition: Towards an Unified Model for User Visitation](https://doi.org/10.1145/2983323.2983657)|ThanhNam Doan, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attractiveness+versus+Competition:+Towards+an+Unified+Model+for+User+Visitation)|14| -|[Explaining Sentiment Spikes in Twitter](https://doi.org/10.1145/2983323.2983678)|Anastasia Giachanou, Ida Mele, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Explaining+Sentiment+Spikes+in+Twitter)|14| -|[APAM: Adaptive Eager-Lazy Hybrid Evaluation of Event Patterns for Low Latency](https://doi.org/10.1145/2983323.2983680)|Ilyeop Yi, JaeGil Lee, KyuYoung Whang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=APAM:+Adaptive+Eager-Lazy+Hybrid+Evaluation+of+Event+Patterns+for+Low+Latency)|14| -|[The Rich and the Poor: A Markov Decision Process Approach to Optimizing Taxi Driver Revenue Efficiency](https://doi.org/10.1145/2983323.2983689)|Huigui Rong, Xun Zhou, Chang Yang, M. Zubair Shafiq, Alex X. Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Rich+and+the+Poor:+A+Markov+Decision+Process+Approach+to+Optimizing+Taxi+Driver+Revenue+Efficiency)|14| -|[Distributed Deep Learning for Question Answering](https://doi.org/10.1145/2983323.2983377)|Minwei Feng, Bing Xiang, Bowen Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Deep+Learning+for+Question+Answering)|14| -|[Quantifying Query Ambiguity with Topic Distributions](https://doi.org/10.1145/2983323.2983863)|Yuki Yano, Yukihiro Tagami, Akira Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quantifying+Query+Ambiguity+with+Topic+Distributions)|13| -|[ASNets: A Benchmark Dataset of Aligned Social Networks for Cross-Platform User Modeling](https://doi.org/10.1145/2983323.2983864)|Xuezhi Cao, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ASNets:+A+Benchmark+Dataset+of+Aligned+Social+Networks+for+Cross-Platform+User+Modeling)|13| -|[Active Zero-Shot Learning](https://doi.org/10.1145/2983323.2983866)|Sihong Xie, Shaoxiong Wang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Zero-Shot+Learning)|13| -|[Distilling Word Embeddings: An Encoding Approach](https://doi.org/10.1145/2983323.2983888)|Lili Mou, Ran Jia, Yan Xu, Ge Li, Lu Zhang, Zhi Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distilling+Word+Embeddings:+An+Encoding+Approach)|13| -|[Anomalies in the Peer-review System: A Case Study of the Journal of High Energy Physics](https://doi.org/10.1145/2983323.2983675)|Sandipan Sikdar, Matteo Marsili, Niloy Ganguly, Animesh Mukherjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anomalies+in+the+Peer-review+System:+A+Case+Study+of+the+Journal+of+High+Energy+Physics)|13| -|[TweetSift: Tweet Topic Classification Based on Entity Knowledge Base and Topic Enhanced Word Embedding](https://doi.org/10.1145/2983323.2983325)|Quanzhi Li, Sameena Shah, Xiaomo Liu, Armineh Nourbakhsh, Rui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TweetSift:+Tweet+Topic+Classification+Based+on+Entity+Knowledge+Base+and+Topic+Enhanced+Word+Embedding)|13| -|[Routing an Autonomous Taxi with Reinforcement Learning](https://doi.org/10.1145/2983323.2983379)|Miyoung Han, Pierre Senellart, Stéphane Bressan, Huayu Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Routing+an+Autonomous+Taxi+with+Reinforcement+Learning)|13| -|[FIN10K: A Web-based Information System for Financial Report Analysis and Visualization](https://doi.org/10.1145/2983323.2983328)|YuWen Liu, LiangChih Liu, ChuanJu Wang, MingFeng Tsai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FIN10K:+A+Web-based+Information+System+for+Financial+Report+Analysis+and+Visualization)|13| -|[BIGtensor: Mining Billion-Scale Tensor Made Easy](https://doi.org/10.1145/2983323.2983332)|Namyong Park, Byungsoo Jeon, Jungwoo Lee, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BIGtensor:+Mining+Billion-Scale+Tensor+Made+Easy)|13| -|[Link Prediction in Heterogeneous Social Networks](https://doi.org/10.1145/2983323.2983722)|Sumit Negi, Santanu Chaudhury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Link+Prediction+in+Heterogeneous+Social+Networks)|12| -|[Graph-Based Multi-Modality Learning for Clinical Decision Support](https://doi.org/10.1145/2983323.2983880)|Ziwei Zheng, Xiaojun Wan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-Based+Multi-Modality+Learning+for+Clinical+Decision+Support)|12| -|[Crowdsourcing-based Urban Anomaly Prediction System for Smart Cities](https://doi.org/10.1145/2983323.2983886)|Chao Huang, Xian Wu, Dong Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing-based+Urban+Anomaly+Prediction+System+for+Smart+Cities)|12| -|[Forecasting Geo-sensor Data with Participatory Sensing Based on Dropout Neural Network](https://doi.org/10.1145/2983323.2983902)|JyunYu Jiang, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Geo-sensor+Data+with+Participatory+Sensing+Based+on+Dropout+Neural+Network)|12| -|[A Preference Approach to Reputation in Sponsored Search](https://doi.org/10.1145/2983323.2983904)|Aritra Ghosh, Dinesh Gaurav, Rahul Agrawal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Preference+Approach+to+Reputation+in+Sponsored+Search)|12| -|[Data Locality in Graph Engines: Implications and Preliminary Experimental Results](https://doi.org/10.1145/2983323.2983865)|YongYeon Jo, Jiwon Hong, MyungHwan Jang, JaeGeun Bang, SangWook Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Locality+in+Graph+Engines:+Implications+and+Preliminary+Experimental+Results)|11| -|[Exploiting Cluster-based Meta Paths for Link Prediction in Signed Networks](https://doi.org/10.1145/2983323.2983870)|Jiangfeng Zeng, Ke Zhou, Xiao Ma, Fuhao Zou, Hua Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Cluster-based+Meta+Paths+for+Link+Prediction+in+Signed+Networks)|11| -|[Incorporate Group Information to Enhance Network Embedding](https://doi.org/10.1145/2983323.2983869)|Jifan Chen, Qi Zhang, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporate+Group+Information+to+Enhance+Network+Embedding)|11| -|[Near Real-time Geolocation Prediction in Twitter Streams via Matrix Factorization Based Regression](https://doi.org/10.1145/2983323.2983887)|Nghia DuongTrung, Nicolas Schilling, Lars SchmidtThieme||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Near+Real-time+Geolocation+Prediction+in+Twitter+Streams+via+Matrix+Factorization+Based+Regression)|11| +|[Tag2Word: Using Tags to Generate Words for Content Based Tag Recommendation](https://doi.org/10.1145/2983323.2983682)|Yong Wu, Yuan Yao, Feng Xu, Hanghang Tong, Jian Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tag2Word:+Using+Tags+to+Generate+Words+for+Content+Based+Tag+Recommendation)|15| +|[A Neural Network Approach to Quote Recommendation in Writings](https://doi.org/10.1145/2983323.2983788)|Jiwei Tan, Xiaojun Wan, Jianguo Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Network+Approach+to+Quote+Recommendation+in+Writings)|14| +|[Truth Discovery via Exploiting Implications from Multi-Source Data](https://doi.org/10.1145/2983323.2983791)|Xianzhi Wang, Quan Z. Sheng, Lina Yao, Xue Li, Xiu Susie Fang, Xiaofei Xu, Boualem Benatallah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+via+Exploiting+Implications+from+Multi-Source+Data)|14| +|[Mobile App Retrieval for Social Media Users via Inference of Implicit Intent in Social Media Text](https://doi.org/10.1145/2983323.2983843)|Dae Hoon Park, Yi Fang, Mengwen Liu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mobile+App+Retrieval+for+Social+Media+Users+via+Inference+of+Implicit+Intent+in+Social+Media+Text)|14| +|[Precision-Oriented Query Facet Extraction](https://doi.org/10.1145/2983323.2983824)|Weize Kong, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Precision-Oriented+Query+Facet+Extraction)|14| +|[Multiple Infection Sources Identification with Provable Guarantees](https://doi.org/10.1145/2983323.2983817)|Hung T. Nguyen, Preetam Ghosh, Michael L. Mayo, Thang N. Dinh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiple+Infection+Sources+Identification+with+Provable+Guarantees)|14| +|[A Self-Learning and Online Algorithm for Time Series Anomaly Detection, with Application in CPU Manufacturing](https://doi.org/10.1145/2983323.2983344)|Xing Wang, Jessica Lin, Nital Patel, Martin W. Braun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Self-Learning+and+Online+Algorithm+for+Time+Series+Anomaly+Detection,+with+Application+in+CPU+Manufacturing)|14| +|[Near Real-time Geolocation Prediction in Twitter Streams via Matrix Factorization Based Regression](https://doi.org/10.1145/2983323.2983887)|Nghia DuongTrung, Nicolas Schilling, Lars SchmidtThieme||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Near+Real-time+Geolocation+Prediction+in+Twitter+Streams+via+Matrix+Factorization+Based+Regression)|14| +|[Mining Shopping Patterns for Divergent Urban Regions by Incorporating Mobility Data](https://doi.org/10.1145/2983323.2983803)|Tianran Hu, Ruihua Song, Yingzi Wang, Xing Xie, Jiebo Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Shopping+Patterns+for+Divergent+Urban+Regions+by+Incorporating+Mobility+Data)|13| +|["Shall I Be Your Chat Companion?": Towards an Online Human-Computer Conversation System](https://doi.org/10.1145/2983323.2983360)|Rui Yan, Yiping Song, Xiangyang Zhou, Hua Wu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Shall+I+Be+Your+Chat+Companion?":+Towards+an+Online+Human-Computer+Conversation+System)|13| +|[Query-Biased Partitioning for Selective Search](https://doi.org/10.1145/2983323.2983706)|Zhuyun Dai, Chenyan Xiong, Jamie Callan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query-Biased+Partitioning+for+Selective+Search)|13| +|[Word Vector Compositionality based Relevance Feedback using Kernel Density Estimation](https://doi.org/10.1145/2983323.2983750)|Dwaipayan Roy, Debasis Ganguly, Mandar Mitra, Gareth J. F. Jones||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Word+Vector+Compositionality+based+Relevance+Feedback+using+Kernel+Density+Estimation)|13| +|[CGMOS: Certainty Guided Minority OverSampling](https://doi.org/10.1145/2983323.2983789)|Xi Zhang, Di Ma, Lin Gan, Shanshan Jiang, Gady Agam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CGMOS:+Certainty+Guided+Minority+OverSampling)|13| +|[Hashtag Recommendation Based on Topic Enhanced Embedding, Tweet Entity Data and Learning to Rank](https://doi.org/10.1145/2983323.2983915)|Quanzhi Li, Sameena Shah, Armineh Nourbakhsh, Xiaomo Liu, Rui Fang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashtag+Recommendation+Based+on+Topic+Enhanced+Embedding,+Tweet+Entity+Data+and+Learning+to+Rank)|13| +|[Top-N Recommendation on Graphs](https://doi.org/10.1145/2983323.2983649)|Zhao Kang, Chong Peng, Ming Yang, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Top-N+Recommendation+on+Graphs)|13| +|[Explaining Sentiment Spikes in Twitter](https://doi.org/10.1145/2983323.2983678)|Anastasia Giachanou, Ida Mele, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Explaining+Sentiment+Spikes+in+Twitter)|13| +|[A Nonparametric Model for Event Discovery in the Geospatial-Temporal Space](https://doi.org/10.1145/2983323.2983790)|Jinjin Guo, Zhiguo Gong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Nonparametric+Model+for+Event+Discovery+in+the+Geospatial-Temporal+Space)|12| +|[Generalizing Translation Models in the Probabilistic Relevance Framework](https://doi.org/10.1145/2983323.2983833)|Navid Rekabsaz, Mihai Lupu, Allan Hanbury, Guido Zuccon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generalizing+Translation+Models+in+the+Probabilistic+Relevance+Framework)|12| +|[Pagination versus Scrolling in Mobile Web Search](https://doi.org/10.1145/2983323.2983720)|Jaewon Kim, Paul Thomas, Ramesh S. Sankaranarayana, Tom Gedeon, HwanJin Yoon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Pagination+versus+Scrolling+in+Mobile+Web+Search)|12| +|[Efficient Batch Processing for Multiple Keyword Queries on Graph Data](https://doi.org/10.1145/2983323.2983806)|Lu Chen, Chengfei Liu, Xiaochun Yang, Bin Wang, Jianxin Li, Rui Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Batch+Processing+for+Multiple+Keyword+Queries+on+Graph+Data)|12| +|[Luhn Revisited: Significant Words Language Models](https://doi.org/10.1145/2983323.2983814)|Mostafa Dehghani, Hosein Azarbonyad, Jaap Kamps, Djoerd Hiemstra, Maarten Marx||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Luhn+Revisited:+Significant+Words+Language+Models)|12| +|[Paired Restricted Boltzmann Machine for Linked Data](https://doi.org/10.1145/2983323.2983756)|Suhang Wang, Jiliang Tang, Fred Morstatter, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Paired+Restricted+Boltzmann+Machine+for+Linked+Data)|12| +|[Global and Local Influence-based Social Recommendation](https://doi.org/10.1145/2983323.2983873)|Qinzhe Zhang, Jia Wu, Hong Yang, Weixue Lu, Guodong Long, Chengqi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Global+and+Local+Influence-based+Social+Recommendation)|12| +|[Collective Traffic Prediction with Partially Observed Traffic History using Location-Based Social Media](https://doi.org/10.1145/2983323.2983662)|Xinyue Liu, Xiangnan Kong, Yanhua Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collective+Traffic+Prediction+with+Partially+Observed+Traffic+History+using+Location-Based+Social+Media)|12| +|[Discovering Temporal Purchase Patterns with Different Responses to Promotions](https://doi.org/10.1145/2983323.2983665)|Ling Luo, Bin Li, Irena Koprinska, Shlomo Berkovsky, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Temporal+Purchase+Patterns+with+Different+Responses+to+Promotions)|12| +|[Reuse-based Optimization for Pig Latin](https://doi.org/10.1145/2983323.2983669)|Jesús CamachoRodríguez, Dario Colazzo, Melanie Herschel, Ioana Manolescu, Soudip Roy Chowdhury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reuse-based+Optimization+for+Pig+Latin)|12| +|[Bus Routes Design and Optimization via Taxi Data Analytics](https://doi.org/10.1145/2983323.2983378)|SeongPing Chuah, Huayu Wu, Yu Lu, Liang Yu, Stéphane Bressan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bus+Routes+Design+and+Optimization+via+Taxi+Data+Analytics)|12| +|[Structural Clustering of Machine-Generated Mail](https://doi.org/10.1145/2983323.2983350)|Noa AvigdorElgrabli, Mark Cwalinski, Dotan Di Castro, Iftah Gamzu, Irena GrabovitchZuyev, Liane LewinEytan, Yoelle Maarek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural+Clustering+of+Machine-Generated+Mail)|11| +|[Graph Topic Scan Statistic for Spatial Event Detection](https://doi.org/10.1145/2983323.2983744)|Yu Liu, Baojian Zhou, Feng Chen, David W. Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+Topic+Scan+Statistic+for+Spatial+Event+Detection)|11| +|[Constructing Reliable Gradient Exploration for Online Learning to Rank](https://doi.org/10.1145/2983323.2983774)|Tong Zhao, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Constructing+Reliable+Gradient+Exploration+for+Online+Learning+to+Rank)|11| +|[Information Diffusion at Workplace](https://doi.org/10.1145/2983323.2983848)|Jiawei Zhang, Philip S. Yu, Yuanhua Lv, Qianyi Zhan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Information+Diffusion+at+Workplace)|11| +|[ASNets: A Benchmark Dataset of Aligned Social Networks for Cross-Platform User Modeling](https://doi.org/10.1145/2983323.2983864)|Xuezhi Cao, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ASNets:+A+Benchmark+Dataset+of+Aligned+Social+Networks+for+Cross-Platform+User+Modeling)|11| |[Online Food Recipe Title Semantics: Combining Nutrient Facts and Topics](https://doi.org/10.1145/2983323.2983897)|Tomasz Kusmierczyk, Kjetil Nørvåg||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Food+Recipe+Title+Semantics:+Combining+Nutrient+Facts+and+Topics)|11| -|[User Modeling on Twitter with WordNet Synsets and DBpedia Concepts for Personalized Recommendations](https://doi.org/10.1145/2983323.2983908)|Guangyuan Piao, John G. Breslin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=User+Modeling+on+Twitter+with+WordNet+Synsets+and+DBpedia+Concepts+for+Personalized+Recommendations)|11| |[Combining Powers of Two Predictors in Optimizing Real-Time Bidding Strategy under Constrained Budget](https://doi.org/10.1145/2983323.2983656)|ChiChun Lin, KunTa Chuang, Wush ChiHsuan Wu, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+Powers+of+Two+Predictors+in+Optimizing+Real-Time+Bidding+Strategy+under+Constrained+Budget)|11| -|[Tag-Aware Personalized Recommendation Using a Deep-Semantic Similarity Model with Negative Sampling](https://doi.org/10.1145/2983323.2983874)|Zhenghua Xu, Cheng Chen, Thomas Lukasiewicz, Yishu Miao, Xiangwu Meng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tag-Aware+Personalized+Recommendation+Using+a+Deep-Semantic+Similarity+Model+with+Negative+Sampling)|10| -|[Collaborative Social Group Influence for Event Recommendation](https://doi.org/10.1145/2983323.2983879)|Li Gao, Jia Wu, Zhi Qiao, Chuan Zhou, Hong Yang, Yue Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Social+Group+Influence+for+Event+Recommendation)|10| -|[Location-aware Friend Recommendation in Event-based Social Networks: A Bayesian Latent Factor Approach](https://doi.org/10.1145/2983323.2983883)|Yao Lu, Zhi Qiao, Chuan Zhou, Yue Hu, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-aware+Friend+Recommendation+in+Event-based+Social+Networks:+A+Bayesian+Latent+Factor+Approach)|10| -|[The Solitude of Relevant Documents in the Pool](https://doi.org/10.1145/2983323.2983891)|Aldo Lipani, Mihai Lupu, Evangelos Kanoulas, Allan Hanbury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Solitude+of+Relevant+Documents+in+the+Pool)|10| -|[Learning to Rank System Configurations](https://doi.org/10.1145/2983323.2983894)|Romain Deveaud, Josiane Mothe, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+System+Configurations)|10| -|[DePP: A System for Detecting Pages to Protect in Wikipedia](https://doi.org/10.1145/2983323.2983914)|Kelsey Suyehira, Francesca Spezzano||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DePP:+A+System+for+Detecting+Pages+to+Protect+in+Wikipedia)|10| -|[Detecting and Ranking Conceptual Links between Texts Using a Knowledge Base](https://doi.org/10.1145/2983323.2983913)|Martin Tutek, Goran Glavas, Jan Snajder, Natasa MilicFrayling, Bojana Dalbelo Basic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+and+Ranking+Conceptual+Links+between+Texts+Using+a+Knowledge+Base)|10| -|[PARC: Privacy-Aware Data Cleaning](https://doi.org/10.1145/2983323.2983326)|Dejun Huang, Dhruv Gairola, Yu Huang, Zheng Zheng, Fei Chiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PARC:+Privacy-Aware+Data+Cleaning)|10| -|[TGraph: A Temporal Graph Data Management System](https://doi.org/10.1145/2983323.2983335)|Haixing Huang, Jinghe Song, Xuelian Lin, Shuai Ma, Jinpeng Huai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TGraph:+A+Temporal+Graph+Data+Management+System)|10| -|[GStreamMiner: A GPU-accelerated Data Stream Mining Framework](https://doi.org/10.1145/2983323.2983341)|Chandima Hewa Nadungodage, Yuni Xia, John Jaehwan Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GStreamMiner:+A+GPU-accelerated+Data+Stream+Mining+Framework)|10| -|[Webpage Depth-level Dwell Time Prediction](https://doi.org/10.1145/2983323.2983878)|Chong Wang, Achir Kalra, Cristian Borcea, Yi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Webpage+Depth-level+Dwell+Time+Prediction)|9| -|[Scarce Feature Topic Mining for Video Recommendation](https://doi.org/10.1145/2983323.2983892)|Wei Lu, Korris FuLai Chung, Kunfeng Lai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scarce+Feature+Topic+Mining+for+Video+Recommendation)|9| -|[ZEST: A Hybrid Model on Predicting Passenger Demand for Chauffeured Car Service](https://doi.org/10.1145/2983323.2983667)|Hua Wei, Yuandong Wang, Tianyu Wo, Yaxiao Liu, Jie Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ZEST:+A+Hybrid+Model+on+Predicting+Passenger+Demand+for+Chauffeured+Car+Service)|9| -|[Towards Representation Independent Similarity Search Over Graph Databases](https://doi.org/10.1145/2983323.2983673)|Yodsawalai Chodpathumwan, Amirhossein Aleyasen, Arash Termehchy, Yizhou Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Representation+Independent+Similarity+Search+Over+Graph+Databases)|9| -|[Understanding Stability of Noisy Networks through Centrality Measures and Local Connections](https://doi.org/10.1145/2983323.2983692)|Vladimir Ufimtsev, Soumya Sarkar, Animesh Mukherjee, Sanjukta Bhowmick||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Stability+of+Noisy+Networks+through+Centrality+Measures+and+Local+Connections)|9| -|[Improving Advertisement Recommendation by Enriching User Browser Cookie Attributes](https://doi.org/10.1145/2983323.2983374)|Liang Wang, Kuangchih Lee, Quan Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Advertisement+Recommendation+by+Enriching+User+Browser+Cookie+Attributes)|9| -|[XKnowSearch!: Exploiting Knowledge Bases for Entity-based Cross-lingual Information Retrieval](https://doi.org/10.1145/2983323.2983324)|Lei Zhang, Michael Färber, Achim Rettinger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=XKnowSearch!:+Exploiting+Knowledge+Bases+for+Entity-based+Cross-lingual+Information+Retrieval)|9| -|[FeatureMiner: A Tool for Interactive Feature Selection](https://doi.org/10.1145/2983323.2983329)|Kewei Cheng, Jundong Li, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FeatureMiner:+A+Tool+for+Interactive+Feature+Selection)|9| -|[Deola: A System for Linking Author Entities in Web Document with DBLP](https://doi.org/10.1145/2983323.2983330)|Yinan Liu, Wei Shen, Xiaojie Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deola:+A+System+for+Linking+Author+Entities+in+Web+Document+with+DBLP)|9| -|[Inferring Traffic Incident Start Time with Loop Sensor Data](https://doi.org/10.1145/2983323.2983339)|Mingxuan Yue, Liyue Fan, Cyrus Shahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Traffic+Incident+Start+Time+with+Loop+Sensor+Data)|9| -|[Balanced Supervised Non-Negative Matrix Factorization for Childhood Leukaemia Patients](https://doi.org/10.1145/2983323.2983375)|Ali Braytee, Daniel R. Catchpoole, Paul J. Kennedy, Wei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balanced+Supervised+Non-Negative+Matrix+Factorization+for+Childhood+Leukaemia+Patients)|8| -|[Ease the Process of Machine Learning with Dataflow](https://doi.org/10.1145/2983323.2983327)|Tianyou Guo, Jun Xu, Xiaohui Yan, Jianpeng Hou, Ping Li, Zhaohui Li, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ease+the+Process+of+Machine+Learning+with+Dataflow)|8| -|[Extracting Skill Endorsements from Personal Communication Data](https://doi.org/10.1145/2983323.2983884)|Darshan M. Shankaralingappa, Gianmarco De Francisci Morales, Aristides Gionis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Skill+Endorsements+from+Personal+Communication+Data)|7| -|[PEQ: An Explainable, Specification-based, Aspect-oriented Product Comparator for E-commerce](https://doi.org/10.1145/2983323.2983901)|Abhishek Sikchi, Pawan Goyal, Samik Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PEQ:+An+Explainable,+Specification-based,+Aspect-oriented+Product+Comparator+for+E-commerce)|7| -|[Tracking the Evolution of Congestion in Dynamic Urban Road Networks](https://doi.org/10.1145/2983323.2983688)|Tarique Anwar, Chengfei Liu, Hai Le Vu, Md. Saiful Islam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+the+Evolution+of+Congestion+in+Dynamic+Urban+Road+Networks)|7| -|[Analyzing Data Relevance and Access Patterns of Live Production Database Systems](https://doi.org/10.1145/2983323.2983336)|Martin Boissier, Carsten Alexander Meyer, Timo Djürken, Jan Lindemann, Kathrin Mao, Pascal Reinhardt, Tim Specht, Tim Zimmermann, Matthias Uflacker||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Data+Relevance+and+Access+Patterns+of+Live+Production+Database+Systems)|7| -|[A Fatigue Strength Predictor for Steels Using Ensemble Data Mining: Steel Fatigue Strength Predictor](https://doi.org/10.1145/2983323.2983343)|Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fatigue+Strength+Predictor+for+Steels+Using+Ensemble+Data+Mining:+Steel+Fatigue+Strength+Predictor)|7| -|[Efficient Distributed Regular Path Queries on RDF Graphs Using Partial Evaluation](https://doi.org/10.1145/2983323.2983877)|Xin Wang, Junhu Wang, Xiaowang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Distributed+Regular+Path+Queries+on+RDF+Graphs+Using+Partial+Evaluation)|6| +|[EnerQuery: Energy-Aware Query Processing](https://doi.org/10.1145/2983323.2983334)|Amine Roukh, Ladjel Bellatreche, Carlos Ordonez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EnerQuery:+Energy-Aware+Query+Processing)|11| +|[TGraph: A Temporal Graph Data Management System](https://doi.org/10.1145/2983323.2983335)|Haixing Huang, Jinghe Song, Xuelian Lin, Shuai Ma, Jinpeng Huai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TGraph:+A+Temporal+Graph+Data+Management+System)|11| +|[Data Summarization with Social Contexts](https://doi.org/10.1145/2983323.2983736)|Hao Zhuang, Rameez Rahman, Xia Hu, Tian Guo, Pan Hui, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Summarization+with+Social+Contexts)|10| +|[Attribute-based Crowd Entity Resolution](https://doi.org/10.1145/2983323.2983831)|Asif R. Khan, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attribute-based+Crowd+Entity+Resolution)|10| +|[Understanding Mobile Searcher Attention with Rich Ad Formats](https://doi.org/10.1145/2983323.2983853)|Dmitry Lagun, Donal McMahon, Vidhya Navalpakkam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Mobile+Searcher+Attention+with+Rich+Ad+Formats)|10| +|[Predicting Popularity of Twitter Accounts through the Discovery of Link-Propagating Early Adopters](https://doi.org/10.1145/2983323.2983859)|Daichi Imamori, Keishi Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Popularity+of+Twitter+Accounts+through+the+Discovery+of+Link-Propagating+Early+Adopters)|10| +|[On Transductive Classification in Heterogeneous Information Networks](https://doi.org/10.1145/2983323.2983730)|Xiang Li, Ben Kao, Yudian Zheng, Zhipeng Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Transductive+Classification+in+Heterogeneous+Information+Networks)|10| +|[FacetGist: Collective Extraction of Document Facets in Large Technical Corpora](https://doi.org/10.1145/2983323.2983828)|Tarique Siddiqui, Xiang Ren, Aditya G. Parameswaran, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FacetGist:+Collective+Extraction+of+Document+Facets+in+Large+Technical+Corpora)|10| +|[Generative Feature Language Models for Mining Implicit Features from Customer Reviews](https://doi.org/10.1145/2983323.2983729)|Shubhra Kanti Karmaker Santu, Parikshit Sondhi, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generative+Feature+Language+Models+for+Mining+Implicit+Features+from+Customer+Reviews)|10| +|[Q+Tree: An Efficient Quad Tree based Data Indexing for Parallelizing Dynamic and Reverse Skylines](https://doi.org/10.1145/2983323.2983764)|Md. Saiful Islam, Chengfei Liu, J. Wenny Rahayu, Tarique Anwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Q+Tree:+An+Efficient+Quad+Tree+based+Data+Indexing+for+Parallelizing+Dynamic+and+Reverse+Skylines)|10| +|[A Model-Free Approach to Infer the Diffusion Network from Event Cascade](https://doi.org/10.1145/2983323.2983718)|Yu Rong, Qiankun Zhu, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Model-Free+Approach+to+Infer+the+Diffusion+Network+from+Event+Cascade)|10| +|[Efficient Distributed Regular Path Queries on RDF Graphs Using Partial Evaluation](https://doi.org/10.1145/2983323.2983877)|Xin Wang, Junhu Wang, Xiaowang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Distributed+Regular+Path+Queries+on+RDF+Graphs+Using+Partial+Evaluation)|10| +|[Automatical Storyline Generation with Help from Twitter](https://doi.org/10.1145/2983323.2983698)|Ting Hua, Xuchao Zhang, Wei Wang, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatical+Storyline+Generation+with+Help+from+Twitter)|10| +|[A Fatigue Strength Predictor for Steels Using Ensemble Data Mining: Steel Fatigue Strength Predictor](https://doi.org/10.1145/2983323.2983343)|Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fatigue+Strength+Predictor+for+Steels+Using+Ensemble+Data+Mining:+Steel+Fatigue+Strength+Predictor)|10| +|[Cross-lingual Text Classification via Model Translation with Limited Dictionaries](https://doi.org/10.1145/2983323.2983732)|Ruochen Xu, Yiming Yang, Hanxiao Liu, Andrew Hsi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cross-lingual+Text+Classification+via+Model+Translation+with+Limited+Dictionaries)|9| +|[Answering Twitter Questions: a Model for Recommending Answerers through Social Collaboration](https://doi.org/10.1145/2983323.2983771)|Laure Soulier, Lynda Tamine, GiaHung Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Answering+Twitter+Questions:+a+Model+for+Recommending+Answerers+through+Social+Collaboration)|9| +|[Time-aware Multi-Viewpoint Summarization of Multilingual Social Text Streams](https://doi.org/10.1145/2983323.2983710)|Zhaochun Ren, Oana Inel, Lora Aroyo, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Time-aware+Multi-Viewpoint+Summarization+of+Multilingual+Social+Text+Streams)|9| +|[Active Content-Based Crowdsourcing Task Selection](https://doi.org/10.1145/2983323.2983716)|Piyush Bansal, Carsten Eickhoff, Thomas Hofmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Content-Based+Crowdsourcing+Task+Selection)|9| +|[Query Variations and their Effect on Comparing Information Retrieval Systems](https://doi.org/10.1145/2983323.2983723)|Guido Zuccon, João R. M. Palotti, Allan Hanbury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Variations+and+their+Effect+on+Comparing+Information+Retrieval+Systems)|9| +|[Reenactment for Read-Committed Snapshot Isolation](https://doi.org/10.1145/2983323.2983825)|Bahareh Sadat Arab, Dieter Gawlick, Vasudha Krishnaswamy, Venkatesh Radhakrishnan, Boris Glavic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reenactment+for+Read-Committed+Snapshot+Isolation)|9| +|[A Probabilistic Fusion Framework](https://doi.org/10.1145/2983323.2983739)|Yael Anava, Anna Shtok, Oren Kurland, Ella Rabinovich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Fusion+Framework)|9| +|[Scaling Factorization Machines with Parameter Server](https://doi.org/10.1145/2983323.2983364)|Erheng Zhong, Yue Shi, Nathan Liu, Suju Rajan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+Factorization+Machines+with+Parameter+Server)|9| +|[On Structural Health Monitoring Using Tensor Analysis and Support Vector Machine with Artificial Negative Data](https://doi.org/10.1145/2983323.2983359)|Prasad Cheema, Nguyen Lu Dang Khoa, Mehrisadat Makki Alamdari, Wei Liu, Yang Wang, Fang Chen, Peter Runcie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Structural+Health+Monitoring+Using+Tensor+Analysis+and+Support+Vector+Machine+with+Artificial+Negative+Data)|9| +|[Where are You Tweeting?: A Context and User Movement Based Approach](https://doi.org/10.1145/2983323.2983881)|Zhi Liu, Yan Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Where+are+You+Tweeting?:+A+Context+and+User+Movement+Based+Approach)|9| +|[Tracking the Evolution of Congestion in Dynamic Urban Road Networks](https://doi.org/10.1145/2983323.2983688)|Tarique Anwar, Chengfei Liu, Hai Le Vu, Md. Saiful Islam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+the+Evolution+of+Congestion+in+Dynamic+Urban+Road+Networks)|9| +|[Incremental Mining of High Utility Sequential Patterns in Incremental Databases](https://doi.org/10.1145/2983323.2983691)|JunZhe Wang, JiunLong Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+Mining+of+High+Utility+Sequential+Patterns+in+Incremental+Databases)|9| +|[SoLSCSum: A Linked Sentence-Comment Dataset for Social Context Summarization](https://doi.org/10.1145/2983323.2983376)|MinhTien Nguyen, ChienXuan Tran, DucVu Tran, MinhLe Nguyen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SoLSCSum:+A+Linked+Sentence-Comment+Dataset+for+Social+Context+Summarization)|9| +|[Learning to Extract Conditional Knowledge for Question Answering using Dialogue](https://doi.org/10.1145/2983323.2983777)|Pengwei Wang, Lei Ji, Jun Yan, Lianwen Jin, WeiYing Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Extract+Conditional+Knowledge+for+Question+Answering+using+Dialogue)|8| +|[Incorporating Risk-Sensitiveness into Feature Selection for Learning to Rank](https://doi.org/10.1145/2983323.2983792)|Daniel Xavier de Sousa, Sérgio Daniel Canuto, Thierson Couto Rosa, Wellington Santos Martins, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+Risk-Sensitiveness+into+Feature+Selection+for+Learning+to+Rank)|8| +|[Large-Scale Analysis of Viewing Behavior: Towards Measuring Satisfaction with Mobile Proactive Systems](https://doi.org/10.1145/2983323.2983846)|Qi Guo, Yang Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-Scale+Analysis+of+Viewing+Behavior:+Towards+Measuring+Satisfaction+with+Mobile+Proactive+Systems)|8| +|[Link Prediction in Heterogeneous Social Networks](https://doi.org/10.1145/2983323.2983722)|Sumit Negi, Santanu Chaudhury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Link+Prediction+in+Heterogeneous+Social+Networks)|8| +|[Scalability and Total Recall with Fast CoveringLSH](https://doi.org/10.1145/2983323.2983742)|Ninh Pham, Rasmus Pagh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalability+and+Total+Recall+with+Fast+CoveringLSH)|8| +|[ESPRESSO: Explaining Relationships between Entity Sets](https://doi.org/10.1145/2983323.2983778)|Stephan Seufert, Klaus Berberich, Srikanta J. Bedathur, Sarath Kumar Kondreddi, Patrick Ernst, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ESPRESSO:+Explaining+Relationships+between+Entity+Sets)|8| +|[One Query, Many Clicks: Analysis of Queries with Multiple Clicks by the Same User](https://doi.org/10.1145/2983323.2983856)|Elad Kravi, Ido Guy, Avihai Mejer, David Carmel, Yoelle Maarek, Dan Pelleg, Gilad Tsur||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=One+Query,+Many+Clicks:+Analysis+of+Queries+with+Multiple+Clicks+by+the+Same+User)|8| +|[Leveraging Multiple GPUs and CPUs for Graphlet Counting in Large Networks](https://doi.org/10.1145/2983323.2983832)|Ryan A. Rossi, Rong Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Leveraging+Multiple+GPUs+and+CPUs+for+Graphlet+Counting+in+Large+Networks)|8| +|[Learning to Account for Good Abandonment in Search Success Metrics](https://doi.org/10.1145/2983323.2983867)|Madian Khabsa, Aidan C. Crook, Ahmed Hassan Awadallah, Imed Zitouni, Tasos Anastasakos, Kyle Williams||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Account+for+Good+Abandonment+in+Search+Success+Metrics)|8| +|[Webpage Depth-level Dwell Time Prediction](https://doi.org/10.1145/2983323.2983878)|Chong Wang, Achir Kalra, Cristian Borcea, Yi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Webpage+Depth-level+Dwell+Time+Prediction)|8| +|[Location-aware Friend Recommendation in Event-based Social Networks: A Bayesian Latent Factor Approach](https://doi.org/10.1145/2983323.2983883)|Yao Lu, Zhi Qiao, Chuan Zhou, Yue Hu, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Location-aware+Friend+Recommendation+in+Event-based+Social+Networks:+A+Bayesian+Latent+Factor+Approach)|8| +|[Learning to Rank System Configurations](https://doi.org/10.1145/2983323.2983894)|Romain Deveaud, Josiane Mothe, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+System+Configurations)|8| +|[A Density-Based Approach to the Retrieval of Top-K Spatial Textual Clusters](https://doi.org/10.1145/2983323.2983648)|Dingming Wu, Christian S. Jensen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Density-Based+Approach+to+the+Retrieval+of+Top-K+Spatial+Textual+Clusters)|8| +|[Analyzing Data Relevance and Access Patterns of Live Production Database Systems](https://doi.org/10.1145/2983323.2983336)|Martin Boissier, Carsten Alexander Meyer, Timo Djürken, Jan Lindemann, Kathrin Mao, Pascal Reinhardt, Tim Specht, Tim Zimmermann, Matthias Uflacker||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Data+Relevance+and+Access+Patterns+of+Live+Production+Database+Systems)|8| +|[Inferring Traffic Incident Start Time with Loop Sensor Data](https://doi.org/10.1145/2983323.2983339)|Mingxuan Yue, Liyue Fan, Cyrus Shahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Traffic+Incident+Start+Time+with+Loop+Sensor+Data)|8| +|[LICON: A Linear Weighting Scheme for the Contribution ofInput Variables in Deep Artificial Neural Networks](https://doi.org/10.1145/2983323.2983746)|Gjergji Kasneci, Thomas Gottron||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LICON:+A+Linear+Weighting+Scheme+for+the+Contribution+ofInput+Variables+in+Deep+Artificial+Neural+Networks)|7| +|[Effective and Efficient Spectral Clustering on Text and Link Data](https://doi.org/10.1145/2983323.2983708)|Zhiqiang Xu, Yiping Ke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+and+Efficient+Spectral+Clustering+on+Text+and+Link+Data)|7| +|[PairFac: Event Analytics through Discriminant Tensor Factorization](https://doi.org/10.1145/2983323.2983837)|Xidao Wen, YuRu Lin, Konstantinos Pelechrinis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PairFac:+Event+Analytics+through+Discriminant+Tensor+Factorization)|7| +|[Separating-Plane Factorization Models: Scalable Recommendation from One-Class Implicit Feedback](https://doi.org/10.1145/2983323.2983348)|Haolan Chen, Di Niu, Kunfeng Lai, Yu Xu, Masoud Ardakani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Separating-Plane+Factorization+Models:+Scalable+Recommendation+from+One-Class+Implicit+Feedback)|7| +|[Axiomatic Result Re-Ranking](https://doi.org/10.1145/2983323.2983704)|Matthias Hagen, Michael Völske, Steve Göring, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Axiomatic+Result+Re-Ranking)|7| +|[Empowering Truth Discovery with Multi-Truth Prediction](https://doi.org/10.1145/2983323.2983767)|Xianzhi Wang, Quan Z. Sheng, Lina Yao, Xue Li, Xiu Susie Fang, Xiaofei Xu, Boualem Benatallah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Empowering+Truth+Discovery+with+Multi-Truth+Prediction)|7| +|[Relational Database Schema Design for Uncertain Data](https://doi.org/10.1145/2983323.2983801)|Sebastian Link, Henri Prade||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relational+Database+Schema+Design+for+Uncertain+Data)|7| +|[Efficient Estimation of Triangles in Very Large Graphs](https://doi.org/10.1145/2983323.2983849)|Roohollah Etemadi, Jianguo Lu, Yung H. Tsin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Estimation+of+Triangles+in+Very+Large+Graphs)|7| +|[Geotagging Named Entities in News and Online Documents](https://doi.org/10.1145/2983323.2983795)|Jiangwei Yu Rafiei, Davood Rafiei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Geotagging+Named+Entities+in+News+and+Online+Documents)|7| +|[A Probabilistic Multi-Touch Attribution Model for Online Advertising](https://doi.org/10.1145/2983323.2983787)|Wendi Ji, Xiaoling Wang, Dell Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Probabilistic+Multi-Touch+Attribution+Model+for+Online+Advertising)|7| +|[When is the Time Ripe for Natural Language Processing for Patent Passage Retrieval?](https://doi.org/10.1145/2983323.2983858)|Linda Andersson, Mihai Lupu, João R. M. Palotti, Allan Hanbury, Andreas Rauber||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+is+the+Time+Ripe+for+Natural+Language+Processing+for+Patent+Passage+Retrieval?)|7| +|[Active Zero-Shot Learning](https://doi.org/10.1145/2983323.2983866)|Sihong Xie, Shaoxiong Wang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Zero-Shot+Learning)|7| +|[Ensemble Learned Vaccination Uptake Prediction using Web Search Queries](https://doi.org/10.1145/2983323.2983882)|Niels Dalum Hansen, Christina Lioma, Kåre Mølbak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ensemble+Learned+Vaccination+Uptake+Prediction+using+Web+Search+Queries)|7| +|[Learning to Re-Rank Questions in Community Question Answering Using Advanced Features](https://doi.org/10.1145/2983323.2983893)|Giovanni Da San Martino, Alberto BarrónCedeño, Salvatore Romeo, Antonio Uva, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Re-Rank+Questions+in+Community+Question+Answering+Using+Advanced+Features)|7| +|[Online Adaptive Topic Focused Tweet Acquisition](https://doi.org/10.1145/2983323.2983693)|Mehdi Sadri, Sharad Mehrotra, Yaming Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Adaptive+Topic+Focused+Tweet+Acquisition)|7| +|[XKnowSearch!: Exploiting Knowledge Bases for Entity-based Cross-lingual Information Retrieval](https://doi.org/10.1145/2983323.2983324)|Lei Zhang, Michael Färber, Achim Rettinger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=XKnowSearch!:+Exploiting+Knowledge+Bases+for+Entity-based+Cross-lingual+Information+Retrieval)|7| +|[Error Link Detection and Correction in Wikipedia](https://doi.org/10.1145/2983323.2983705)|Chengyu Wang, Rong Zhang, Xiaofeng He, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Error+Link+Detection+and+Correction+in+Wikipedia)|6| +|[Hybrid Indexing for Versioned Document Search with Cluster-based Retrieval](https://doi.org/10.1145/2983323.2983733)|Xin Jin, Daniel Agun, Tao Yang, Qinghao Wu, Yifan Shen, Susen Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+Indexing+for+Versioned+Document+Search+with+Cluster-based+Retrieval)|6| +|[Growing Graphs from Hyperedge Replacement Graph Grammars](https://doi.org/10.1145/2983323.2983826)|Salvador Aguiñaga, Rodrigo Palácios, David Chiang, Tim Weninger||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Growing+Graphs+from+Hyperedge+Replacement+Graph+Grammars)|6| +|[Who are My Familiar Strangers?: Revealing Hidden Friend Relations and Common Interests from Smart Card Data](https://doi.org/10.1145/2983323.2983804)|Fusang Zhang, Beihong Jin, Tingjian Ge, Qiang Ji, Yanling Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Who+are+My+Familiar+Strangers?:+Revealing+Hidden+Friend+Relations+and+Common+Interests+from+Smart+Card+Data)|6| +|[Sentiment Domain Adaptation with Multi-Level Contextual Sentiment Knowledge](https://doi.org/10.1145/2983323.2983851)|Fangzhao Wu, Sixing Wu, Yongfeng Huang, Songfang Huang, Yong Qin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentiment+Domain+Adaptation+with+Multi-Level+Contextual+Sentiment+Knowledge)|6| +|[BICP: Block-Incremental CP Decomposition with Update Sensitive Refinement](https://doi.org/10.1145/2983323.2983717)|Shengyu Huang, K. Selçuk Candan, Maria Luisa Sapino||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BICP:+Block-Incremental+CP+Decomposition+with+Update+Sensitive+Refinement)|6| +|[Discovering Entities with Just a Little Help from You](https://doi.org/10.1145/2983323.2983798)|Jaspreet Singh, Johannes Hoffart, Avishek Anand||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Entities+with+Just+a+Little+Help+from+You)|6| +|[Optimizing Ad Allocation in Social Advertising](https://doi.org/10.1145/2983323.2983834)|Shaojie Tang, Jing Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Ad+Allocation+in+Social+Advertising)|6| +|[Selective Cluster-Based Document Retrieval](https://doi.org/10.1145/2983323.2983737)|Or Levi, Fiana Raiber, Oren Kurland, Ido Guy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selective+Cluster-Based+Document+Retrieval)|6| +|[Supervised Feature Selection by Preserving Class Correlation](https://doi.org/10.1145/2983323.2983762)|Jun Wang, Jinmao Wei, Zhenglu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Supervised+Feature+Selection+by+Preserving+Class+Correlation)|6| +|[Updating an Existing Social Graph Snapshot via a Limited API](https://doi.org/10.1145/2983323.2983703)|Norases Vesdapunt, Hector GarciaMolina||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Updating+an+Existing+Social+Graph+Snapshot+via+a+Limited+API)|6| +|[Influence Maximization for Complementary Goods: Why Parties Fail to Cooperate?](https://doi.org/10.1145/2983323.2983741)|HanChing Ou, ChungKuang Chou, MingSyan Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Influence+Maximization+for+Complementary+Goods:+Why+Parties+Fail+to+Cooperate?)|6| +|[Approximate Discovery of Functional Dependencies for Large Datasets](https://doi.org/10.1145/2983323.2983781)|Tobias Bleifuß, Susanne Bülow, Johannes Frohnhofen, Julian Risch, Georg Wiese, Sebastian Kruse, Thorsten Papenbrock, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Discovery+of+Functional+Dependencies+for+Large+Datasets)|6| +|[The Solitude of Relevant Documents in the Pool](https://doi.org/10.1145/2983323.2983891)|Aldo Lipani, Mihai Lupu, Evangelos Kanoulas, Allan Hanbury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Solitude+of+Relevant+Documents+in+the+Pool)|6| +|[An Experimental Comparison of Iterative MapReduce Frameworks](https://doi.org/10.1145/2983323.2983647)|Haejoon Lee, Minseo Kang, SunBum Youn, JaeGil Lee, YongChul Kwon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Experimental+Comparison+of+Iterative+MapReduce+Frameworks)|6| +|[OrientStream: A Framework for Dynamic Resource Allocation in Distributed Data Stream Management Systems](https://doi.org/10.1145/2983323.2983681)|Chunkai Wang, Xiaofeng Meng, Qi Guo, Zujian Weng, Chen Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OrientStream:+A+Framework+for+Dynamic+Resource+Allocation+in+Distributed+Data+Stream+Management+Systems)|6| +|[Memory-Optimized Distributed Graph Processing through Novel Compression Techniques](https://doi.org/10.1145/2983323.2983687)|Panagiotis Liakos, Katia Papakonstantinopoulou, Alex Delis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Memory-Optimized+Distributed+Graph+Processing+through+Novel+Compression+Techniques)|6| |[TEAMOPT: Interactive Team Optimization in Big Networks](https://doi.org/10.1145/2983323.2983340)|Liangyue Li, Hanghang Tong, Nan Cao, Kate Ehrlich, YuRu Lin, Norbou Buchler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TEAMOPT:+Interactive+Team+Optimization+in+Big+Networks)|6| -|[Bus Routes Design and Optimization via Taxi Data Analytics](https://doi.org/10.1145/2983323.2983378)|SeongPing Chuah, Huayu Wu, Yu Lu, Liang Yu, Stéphane Bressan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bus+Routes+Design+and+Optimization+via+Taxi+Data+Analytics)|5| -|[EnerQuery: Energy-Aware Query Processing](https://doi.org/10.1145/2983323.2983334)|Amine Roukh, Ladjel Bellatreche, Carlos Ordonez||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=EnerQuery:+Energy-Aware+Query+Processing)|5| -|[eGraphSearch: Effective Keyword Search in Graphs](https://doi.org/10.1145/2983323.2983333)|Mehdi Kargar, Lukasz Golab, Jaroslaw Szlichta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=eGraphSearch:+Effective+Keyword+Search+in+Graphs)|4| +|[Memory-based Recommendations of Entities for Web Search Users](https://doi.org/10.1145/2983323.2983823)|Ignacio FernándezTobías, Roi Blanco||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Memory-based+Recommendations+of+Entities+for+Web+Search+Users)|5| +|[The Role of Relevance in Sponsored Search](https://doi.org/10.1145/2983323.2983840)|Luca Maria Aiello, Ioannis Arapakis, Ricardo BaezaYates, Xiao Bai, Nicola Barbieri, Amin Mantrach, Fabrizio Silvestri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Role+of+Relevance+in+Sponsored+Search)|5| +|[Compression-Based Selective Sampling for Learning to Rank](https://doi.org/10.1145/2983323.2983813)|Rodrigo M. Silva, Guilherme de Castro Mendes Gomes, Mário S. Alvim, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compression-Based+Selective+Sampling+for+Learning+to+Rank)|5| +|[Personalized Search: Potential and Pitfalls](https://doi.org/10.1145/2983323.2983367)|Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Search:+Potential+and+Pitfalls)|5| +|[Data-Driven Contextual Valence Shifter Quantification for Multi-Theme Sentiment Analysis](https://doi.org/10.1145/2983323.2983793)|Hongkun Yu, Jingbo Shang, Meichun Hsu, Malú Castellanos, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data-Driven+Contextual+Valence+Shifter+Quantification+for+Multi-Theme+Sentiment+Analysis)|5| +|[Multiple Queries as Bandit Arms](https://doi.org/10.1145/2983323.2983816)|Cheng Li, Paul Resnick, Qiaozhu Mei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiple+Queries+as+Bandit+Arms)|5| +|[Optimizing Update Frequencies for Decaying Information](https://doi.org/10.1145/2983323.2983719)|Simon Razniewski||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Update+Frequencies+for+Decaying+Information)|5| +|[A Distributed Graph Algorithm for Discovering Unique Behavioral Groups from Large-Scale Telco Data](https://doi.org/10.1145/2983323.2983354)|Qirong Ho, Wenqing Lin, Eran Shaham, Shonali Krishnaswamy, The Anh Dang, Jingxuan Wang, Isabel Choo Zhongyan, Amy SheNash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Distributed+Graph+Algorithm+for+Discovering+Unique+Behavioral+Groups+from+Large-Scale+Telco+Data)|5| +|[On Backup Battery Data in Base Stations of Mobile Networks: Measurement, Analysis, and Optimization](https://doi.org/10.1145/2983323.2983734)|Xiaoyi Fan, Feng Wang, Jiangchuan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Backup+Battery+Data+in+Base+Stations+of+Mobile+Networks:+Measurement,+Analysis,+and+Optimization)|5| +|[Data Locality in Graph Engines: Implications and Preliminary Experimental Results](https://doi.org/10.1145/2983323.2983865)|YongYeon Jo, Jiwon Hong, MyungHwan Jang, JaeGeun Bang, SangWook Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Locality+in+Graph+Engines:+Implications+and+Preliminary+Experimental+Results)|5| +|[Distilling Word Embeddings: An Encoding Approach](https://doi.org/10.1145/2983323.2983888)|Lili Mou, Ran Jia, Yan Xu, Ge Li, Lu Zhang, Zhi Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distilling+Word+Embeddings:+An+Encoding+Approach)|5| +|[A Context-aware Collaborative Filtering Approach for Urban Black Holes Detection](https://doi.org/10.1145/2983323.2983655)|Li Jin, Zhuonan Feng, Ling Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Context-aware+Collaborative+Filtering+Approach+for+Urban+Black+Holes+Detection)|5| +|[Attractiveness versus Competition: Towards an Unified Model for User Visitation](https://doi.org/10.1145/2983323.2983657)|ThanhNam Doan, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attractiveness+versus+Competition:+Towards+an+Unified+Model+for+User+Visitation)|5| +|[Probabilistic Knowledge Graph Construction: Compositional and Incremental Approaches](https://doi.org/10.1145/2983323.2983677)|Dongwoo Kim, Lexing Xie, Cheng Soon Ong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Knowledge+Graph+Construction:+Compositional+and+Incremental+Approaches)|5| +|[APAM: Adaptive Eager-Lazy Hybrid Evaluation of Event Patterns for Low Latency](https://doi.org/10.1145/2983323.2983680)|Ilyeop Yi, JaeGil Lee, KyuYoung Whang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=APAM:+Adaptive+Eager-Lazy+Hybrid+Evaluation+of+Event+Patterns+for+Low+Latency)|5| +|[Optimizing Nugget Annotations with Active Learning](https://doi.org/10.1145/2983323.2983694)|Gaurav Baruah, Haotian Zhang, Rakesh Guttikonda, Jimmy Lin, Mark D. Smucker, Olga Vechtomova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Nugget+Annotations+with+Active+Learning)|5| +|[eGraphSearch: Effective Keyword Search in Graphs](https://doi.org/10.1145/2983323.2983333)|Mehdi Kargar, Lukasz Golab, Jaroslaw Szlichta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=eGraphSearch:+Effective+Keyword+Search+in+Graphs)|5| +|[Detecting Promotion Campaigns in Query Auto Completion](https://doi.org/10.1145/2983323.2983709)|Yuli Liu, Yiqun Liu, Ke Zhou, Min Zhang, Shaoping Ma, Yue Yin, Hengliang Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Promotion+Campaigns+in+Query+Auto+Completion)|4| +|[Sequential Query Expansion using Concept Graph](https://doi.org/10.1145/2983323.2983857)|Saeid Balaneshinkordan, Alexander Kotov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequential+Query+Expansion+using+Concept+Graph)|4| +|[Approximating Graph Pattern Queries Using Views](https://doi.org/10.1145/2983323.2983766)|Jia Li, Yang Cao, Xudong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximating+Graph+Pattern+Queries+Using+Views)|4| +|[GiraphAsync: Supporting Online and Offline Graph Processing via Adaptive Asynchronous Message Processing](https://doi.org/10.1145/2983323.2983726)|Yuqiong Liu, Chang Zhou, Jun Gao, Zhiguo Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GiraphAsync:+Supporting+Online+and+Offline+Graph+Processing+via+Adaptive+Asynchronous+Message+Processing)|4| +|[PISA: An Index for Aggregating Big Time Series Data](https://doi.org/10.1145/2983323.2983775)|Xiangdong Huang, Jianmin Wang, Raymond K. Wong, Jinrui Zhang, Chen Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PISA:+An+Index+for+Aggregating+Big+Time+Series+Data)|4| +|[Towards the Effective Linking of Social Media Contents to Products in E-Commerce Catalogs](https://doi.org/10.1145/2983323.2983747)|Henry S. Vieira, Altigran S. da Silva, Pável Calado, Marco Cristo, Edleno Silva de Moura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+the+Effective+Linking+of+Social+Media+Contents+to+Products+in+E-Commerce+Catalogs)|4| +|[Online Adaptive Passive-Aggressive Methods for Non-Negative Matrix Factorization and Its Applications](https://doi.org/10.1145/2983323.2983786)|Chenghao Liu, Steven C. H. Hoi, Peilin Zhao, Jianling Sun, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Adaptive+Passive-Aggressive+Methods+for+Non-Negative+Matrix+Factorization+and+Its+Applications)|4| +|[Topological Graph Sketching for Incremental and Scalable Analytics](https://doi.org/10.1145/2983323.2983735)|Bortik Bandyopadhyay, David Fuhry, Aniket Chakrabarti, Srinivasan Parthasarathy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Topological+Graph+Sketching+for+Incremental+and+Scalable+Analytics)|4| +|[DI-DAP: An Efficient Disaster Information Delivery and Analysis Platform in Disaster Management](https://doi.org/10.1145/2983323.2983355)|Tao Li, Wubai Zhou, Chunqiu Zeng, Qing Wang, Qifeng Zhou, Dingding Wang, Jia Xu, Yue Huang, Wentao Wang, Minjing Zhang, Steven Luis, ShuChing Chen, Naphtali Rishe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DI-DAP:+An+Efficient+Disaster+Information+Delivery+and+Analysis+Platform+in+Disaster+Management)|4| +|[Computing and Summarizing the Negative Skycube](https://doi.org/10.1145/2983323.2983759)|Nicolas Hanusse, Patrick Kamnang Wanko, Sofian Maabout||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+and+Summarizing+the+Negative+Skycube)|4| +|[Efficient Orthogonal Non-negative Matrix Factorization over Stiefel Manifold](https://doi.org/10.1145/2983323.2983761)|Wei Emma Zhang, Mingkui Tan, Quan Z. Sheng, Lina Yao, Qinfeng Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Orthogonal+Non-negative+Matrix+Factorization+over+Stiefel+Manifold)|4| +|[Cost-Effective Stream Join Algorithm on Cloud System](https://doi.org/10.1145/2983323.2983773)|Junhua Fang, Rong Zhang, Xiaotong Wang, Tom Z. J. Fu, Zhenjie Zhang, Aoying Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cost-Effective+Stream+Join+Algorithm+on+Cloud+System)|4| +|[Towards Time-Discounted Influence Maximization](https://doi.org/10.1145/2983323.2983862)|Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Time-Discounted+Influence+Maximization)|4| +|[Predicting Importance of Historical Persons using Wikipedia](https://doi.org/10.1145/2983323.2983871)|Adam Jatowt, Daisuke Kawai, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Importance+of+Historical+Persons+using+Wikipedia)|4| +|[Adaptive Distributional Extensions to DFR Ranking](https://doi.org/10.1145/2983323.2983895)|Casper Petersen, Jakob Grue Simonsen, Kalervo Järvelin, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Distributional+Extensions+to+DFR+Ranking)|4| +|[When Sensor Meets Tensor: Filling Missing Sensor Values Through a Tensor Approach](https://doi.org/10.1145/2983323.2983900)|Wenjie Ruan, Peipei Xu, Quan Z. Sheng, Nguyen Khoi Tran, Nickolas J. G. Falkner, Xue Li, Wei Emma Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Sensor+Meets+Tensor:+Filling+Missing+Sensor+Values+Through+a+Tensor+Approach)|4| +|[Learning to Rank Non-Factoid Answers: Comment Selection in Web Forums](https://doi.org/10.1145/2983323.2983906)|Kateryna Tymoshenko, Daniele Bonadiman, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+Non-Factoid+Answers:+Comment+Selection+in+Web+Forums)|4| +|[A Study of Realtime Summarization Metrics](https://doi.org/10.1145/2983323.2983653)|Matthew EkstrandAbueg, Richard McCreadie, Virgil Pavlu, Fernando Diaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Realtime+Summarization+Metrics)|4| +|[Multi-Dueling Bandits and Their Application to Online Ranker Evaluation](https://doi.org/10.1145/2983323.2983659)|Brian Brost, Yevgeny Seldin, Ingemar J. Cox, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Dueling+Bandits+and+Their+Application+to+Online+Ranker+Evaluation)|4| +|[Towards Representation Independent Similarity Search Over Graph Databases](https://doi.org/10.1145/2983323.2983673)|Yodsawalai Chodpathumwan, Amirhossein Aleyasen, Arash Termehchy, Yizhou Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Representation+Independent+Similarity+Search+Over+Graph+Databases)|4| +|[Why Did You Cover That Song?: Modeling N-th Order Derivative Creation with Content Popularity](https://doi.org/10.1145/2983323.2983674)|Kosetsu Tsukuda, Masahiro Hamasaki, Masataka Goto||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Why+Did+You+Cover+That+Song?:+Modeling+N-th+Order+Derivative+Creation+with+Content+Popularity)|4| +|[Anomalies in the Peer-review System: A Case Study of the Journal of High Energy Physics](https://doi.org/10.1145/2983323.2983675)|Sandipan Sikdar, Matteo Marsili, Niloy Ganguly, Animesh Mukherjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anomalies+in+the+Peer-review+System:+A+Case+Study+of+the+Journal+of+High+Energy+Physics)|4| +|[Multi-source Hierarchical Prediction Consolidation](https://doi.org/10.1145/2983323.2983676)|Chenwei Zhang, Sihong Xie, Yaliang Li, Jing Gao, Wei Fan, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-source+Hierarchical+Prediction+Consolidation)|4| +|[Qualitative Cleaning of Uncertain Data](https://doi.org/10.1145/2983323.2983679)|Henning Köhler, Sebastian Link||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Qualitative+Cleaning+of+Uncertain+Data)|4| +|[Content-Agnostic Malware Detection in Heterogeneous Malicious Distribution Graph](https://doi.org/10.1145/2983323.2983700)|Ibrahim M. Alabdulmohsin, Yufei Han, Yun Shen, Xiangliang Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content-Agnostic+Malware+Detection+in+Heterogeneous+Malicious+Distribution+Graph)|4| +|[Distributed Deep Learning for Question Answering](https://doi.org/10.1145/2983323.2983377)|Minwei Feng, Bing Xiang, Bowen Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distributed+Deep+Learning+for+Question+Answering)|4| +|[FIN10K: A Web-based Information System for Financial Report Analysis and Visualization](https://doi.org/10.1145/2983323.2983328)|YuWen Liu, LiangChih Liu, ChuanJu Wang, MingFeng Tsai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FIN10K:+A+Web-based+Information+System+for+Financial+Report+Analysis+and+Visualization)|4| +|[FeatureMiner: A Tool for Interactive Feature Selection](https://doi.org/10.1145/2983323.2983329)|Kewei Cheng, Jundong Li, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FeatureMiner:+A+Tool+for+Interactive+Feature+Selection)|4| +|[Group-Aware Weighted Bipartite B-Matching](https://doi.org/10.1145/2983323.2983770)|Cheng Chen, Sean Chester, Venkatesh Srinivasan, Kui Wu, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Group-Aware+Weighted+Bipartite+B-Matching)|3| |[Using Machine Learning to Improve the Email Experience](https://doi.org/10.1145/2983323.2983371)|Marc Najork||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Machine+Learning+to+Improve+the+Email+Experience)|3| -|[ConHub: A Metadata Management System for Docker Containers](https://doi.org/10.1145/2983323.2983331)|Chris Xing Tian, Aditya Pan, Yong Chiang Tay||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ConHub:+A+Metadata+Management+System+for+Docker+Containers)|3| +|[Tracking Virality and Susceptibility in Social Media](https://doi.org/10.1145/2983323.2983800)|TuanAnh Hoang, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Virality+and+Susceptibility+in+Social+Media)|3| +|[Scalable Spectral k-Support Norm Regularization for Robust Low Rank Subspace Learning](https://doi.org/10.1145/2983323.2983738)|Yiuming Cheung, Jian Lou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Spectral+k-Support+Norm+Regularization+for+Robust+Low+Rank+Subspace+Learning)|3| +|[On the Effectiveness of Query Weighting for Adapting Rank Learners to New Unlabelled Collections](https://doi.org/10.1145/2983323.2983852)|Pengfei Li, Mark Sanderson, Mark James Carman, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+the+Effectiveness+of+Query+Weighting+for+Adapting+Rank+Learners+to+New+Unlabelled+Collections)|3| +|[Approximate Aggregates in Oracle 12C](https://doi.org/10.1145/2983323.2983353)|Hong Su, Mohamed Zaït, Vladimir Barrière, Joseph Torres, Andre Cavalheiro Menck||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Approximate+Aggregates+in+Oracle+12C)|3| +|[Effective Spelling Correction for Eye-based Typing using domain-specific Information about Error Distribution](https://doi.org/10.1145/2983323.2983838)|Raíza Hanada, Maria da Graça Campos Pimentel, Marco Cristo, Fernando Anglada Lores||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+Spelling+Correction+for+Eye-based+Typing+using+domain-specific+Information+about+Error+Distribution)|3| +|[Skipping Word: A Character-Sequential Representation based Framework for Question Answering](https://doi.org/10.1145/2983323.2983861)|Lingxun Meng, Yan Li, Mengyi Liu, Peng Shu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Skipping+Word:+A+Character-Sequential+Representation+based+Framework+for+Question+Answering)|3| +|[Graph-Based Multi-Modality Learning for Clinical Decision Support](https://doi.org/10.1145/2983323.2983880)|Ziwei Zheng, Xiaojun Wan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph-Based+Multi-Modality+Learning+for+Clinical+Decision+Support)|3| +|[A Non-Parametric Topic Model for Short Texts Incorporating Word Coherence Knowledge](https://doi.org/10.1145/2983323.2983898)|Yuhao Zhang, Wenji Mao, Daniel Dajun Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Non-Parametric+Topic+Model+for+Short+Texts+Incorporating+Word+Coherence+Knowledge)|3| +|[Forecasting Seasonal Time Series Using Weighted Gradient RBF Network based Autoregressive Model](https://doi.org/10.1145/2983323.2983899)|Wenjie Ruan, Quan Z. Sheng, Peipei Xu, Nguyen Khoi Tran, Nickolas J. G. Falkner, Xue Li, Wei Emma Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Seasonal+Time+Series+Using+Weighted+Gradient+RBF+Network+based+Autoregressive+Model)|3| +|[The Healing Power of Poison: Helpful Non-relevant Documents in Feedback](https://doi.org/10.1145/2983323.2983910)|Mostafa Dehghani, Samira Abnar, Jaap Kamps||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Healing+Power+of+Poison:+Helpful+Non-relevant+Documents+in+Feedback)|3| +|[Ensemble of Anchor Adapters for Transfer Learning](https://doi.org/10.1145/2983323.2983690)|Fuzhen Zhuang, Ping Luo, Sinno Jialin Pan, Hui Xiong, Qing He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ensemble+of+Anchor+Adapters+for+Transfer+Learning)|3| +|[Understanding Stability of Noisy Networks through Centrality Measures and Local Connections](https://doi.org/10.1145/2983323.2983692)|Vladimir Ufimtsev, Soumya Sarkar, Animesh Mukherjee, Sanjukta Bhowmick||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Stability+of+Noisy+Networks+through+Centrality+Measures+and+Local+Connections)|3| +|[PARC: Privacy-Aware Data Cleaning](https://doi.org/10.1145/2983323.2983326)|Dejun Huang, Dhruv Gairola, Yu Huang, Zheng Zheng, Fei Chiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PARC:+Privacy-Aware+Data+Cleaning)|3| +|[Ease the Process of Machine Learning with Dataflow](https://doi.org/10.1145/2983323.2983327)|Tianyou Guo, Jun Xu, Xiaohui Yan, Jianpeng Hou, Ping Li, Zhaohui Li, Jiafeng Guo, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ease+the+Process+of+Machine+Learning+with+Dataflow)|3| +|[GStreamMiner: A GPU-accelerated Data Stream Mining Framework](https://doi.org/10.1145/2983323.2983341)|Chandima Hewa Nadungodage, Yuni Xia, John Jaehwan Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GStreamMiner:+A+GPU-accelerated+Data+Stream+Mining+Framework)|3| +|[Privacy-Preserving Reachability Query Services for Massive Networks](https://doi.org/10.1145/2983323.2983799)|Jiaxin Jiang, Peipei Yi, Byron Choi, Zhiwei Zhang, Xiaohui Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy-Preserving+Reachability+Query+Services+for+Massive+Networks)|2| +|[Duer: Intelligent Personal Assistant](https://doi.org/10.1145/2983323.2983372)|Haifeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Duer:+Intelligent+Personal+Assistant)|2| +|[Inspiration or Preparation?: Explaining Creativity in Scientific Enterprise](https://doi.org/10.1145/2983323.2983820)|Xinyang Zhang, Dashun Wang, Ting Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inspiration+or+Preparation?:+Explaining+Creativity+in+Scientific+Enterprise)|2| +|[Efficient Hidden Trajectory Reconstruction from Sparse Data](https://doi.org/10.1145/2983323.2983796)|Ning Yang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Hidden+Trajectory+Reconstruction+from+Sparse+Data)|2| +|[Quark-X: An Efficient Top-K Processing Framework for RDF Quad Stores](https://doi.org/10.1145/2983323.2983727)|Jyoti Leeka, Srikanta Bedathur, Debajyoti Bera, Medha Atre||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quark-X:+An+Efficient+Top-K+Processing+Framework+for+RDF+Quad+Stores)|2| +|[Hashtag Recommendation for Enterprise Applications](https://doi.org/10.1145/2983323.2983365)|Dhruv Mahajan, Vishwajit Kolathur, Chetan Bansal, Suresh Parthasarathy, Sundararajan Sellamanickam, S. Sathiya Keerthi, Johannes Gehrke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hashtag+Recommendation+for+Enterprise+Applications)|2| +|[CRISP: Consensus Regularized Selection based Prediction](https://doi.org/10.1145/2983323.2983779)|Ping Wang, Karthik K. Padthe, Bhanukiran Vinzamuri, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CRISP:+Consensus+Regularized+Selection+based+Prediction)|2| +|[Regularizing Structured Classifier with Conditional Probabilistic Constraints for Semi-supervised Learning](https://doi.org/10.1145/2983323.2983860)|Vincent Wenchen Zheng, Kevin ChenChuan Chang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularizing+Structured+Classifier+with+Conditional+Probabilistic+Constraints+for+Semi-supervised+Learning)|2| +|[Adaptive Evolutionary Filtering in Real-Time Twitter Stream](https://doi.org/10.1145/2983323.2983760)|Feifan Fan, Yansong Feng, Lili Yao, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Evolutionary+Filtering+in+Real-Time+Twitter+Stream)|2| +|[Modeling Customer Engagement from Partial Observations](https://doi.org/10.1145/2983323.2983854)|Jelena Stojanovic, Djordje Gligorijevic, Zoran Obradovic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Customer+Engagement+from+Partial+Observations)|2| +|[Hierarchical and Dynamic k-Path Covers](https://doi.org/10.1145/2983323.2983712)|Takuya Akiba, Yosuke Yano, Naoto Mizuno||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+and+Dynamic+k-Path+Covers)|2| +|[Deep Match between Geology Reports and Well Logs Using Spatial Information](https://doi.org/10.1145/2983323.2983352)|Bin Tong, Martin Klinkigt, Makoto Iwayama, Yoshiyuki Kobayashi, Anshuman Sahu, Ravigopal Vennelakanti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Match+between+Geology+Reports+and+Well+Logs+Using+Spatial+Information)|2| +|[Extracting Skill Endorsements from Personal Communication Data](https://doi.org/10.1145/2983323.2983884)|Darshan M. Shankaralingappa, Gianmarco De Francisci Morales, Aristides Gionis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Skill+Endorsements+from+Personal+Communication+Data)|2| +|[CyberRank: Knowledge Elicitation for Risk Assessment of Database Security](https://doi.org/10.1145/2983323.2983896)|Hagit GrushkaCohen, Oded Sofer, Ofer Biller, Bracha Shapira, Lior Rokach||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CyberRank:+Knowledge+Elicitation+for+Risk+Assessment+of+Database+Security)|2| +|[Forecasting Geo-sensor Data with Participatory Sensing Based on Dropout Neural Network](https://doi.org/10.1145/2983323.2983902)|JyunYu Jiang, ChengTe Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Geo-sensor+Data+with+Participatory+Sensing+Based+on+Dropout+Neural+Network)|2| +|[Iterative Search using Query Aspects](https://doi.org/10.1145/2983323.2983903)|Manmeet Singh, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Iterative+Search+using+Query+Aspects)|2| +|[DePP: A System for Detecting Pages to Protect in Wikipedia](https://doi.org/10.1145/2983323.2983914)|Kelsey Suyehira, Francesca Spezzano||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DePP:+A+System+for+Detecting+Pages+to+Protect+in+Wikipedia)|2| +|[RAP: Scalable RPCA for Low-rank Matrix Recovery](https://doi.org/10.1145/2983323.2983651)|Chong Peng, Zhao Kang, Ming Yang, Qiang Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RAP:+Scalable+RPCA+for+Low-rank+Matrix+Recovery)|2| +|[Query Answering Efficiency in Expert Networks Under Decentralized Search](https://doi.org/10.1145/2983323.2983652)|Liang Ma, Mudhakar Srivatsa, Derya Cansever, Xifeng Yan, Sue Kase, Michelle Vanni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Answering+Efficiency+in+Expert+Networks+Under+Decentralized+Search)|2| +|[Framing Mobile Information Needs: An Investigation of Hierarchical Query Sequence Structure](https://doi.org/10.1145/2983323.2983654)|Shuguang Han, Xing Yi, Zhen Yue, Zhigeng Geng, Alyssa Glass||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Framing+Mobile+Information+Needs:+An+Investigation+of+Hierarchical+Query+Sequence+Structure)|2| +|[OptMark: A Toolkit for Benchmarking Query Optimizers](https://doi.org/10.1145/2983323.2983658)|Zhan Li, Olga Papaemmanouil, Mitch Cherniack||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=OptMark:+A+Toolkit+for+Benchmarking+Query+Optimizers)|2| +|[FolkTrails: Interpreting Navigation Behavior in a Social Tagging System](https://doi.org/10.1145/2983323.2983686)|Thomas Niebler, Martin Becker, Daniel Zoller, Stephan Doerfel, Andreas Hotho||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FolkTrails:+Interpreting+Navigation+Behavior+in+a+Social+Tagging+System)|2| +|[A Comparative Study of Query-biased and Non-redundant Snippets for Structured Search on Mobile Devices](https://doi.org/10.1145/2983323.2983699)|Nikita V. Spirin, Alexander S. Kotov, Karrie G. Karahalios, Vassil Mladenov, Pavel A. Izhutov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparative+Study+of+Query-biased+and+Non-redundant+Snippets+for+Structured+Search+on+Mobile+Devices)|2| +|[Balanced Supervised Non-Negative Matrix Factorization for Childhood Leukaemia Patients](https://doi.org/10.1145/2983323.2983375)|Ali Braytee, Daniel R. Catchpoole, Paul J. Kennedy, Wei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balanced+Supervised+Non-Negative+Matrix+Factorization+for+Childhood+Leukaemia+Patients)|2| +|[Thymeflow, A Personal Knowledge Base with Spatio-temporal Data](https://doi.org/10.1145/2983323.2983337)|David Montoya, Thomas Pellissier Tanon, Serge Abiteboul, Fabian M. Suchanek||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Thymeflow,+A+Personal+Knowledge+Base+with+Spatio-temporal+Data)|2| |[QART: A Tool for Quality Assurance in Real-Time in Contact Centers](https://doi.org/10.1145/2983323.2983342)|Ragunathan Mariappan, Balaji Peddamuthu, Preethi R. Raajaratnam, Sandipan Dandapat, Neeta Pande, Shourya Roy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QART:+A+Tool+for+Quality+Assurance+in+Real-Time+in+Contact+Centers)|2| -|[Toward Data-Driven Education: CIKM-2016 Keynote](https://doi.org/10.1145/2983323.2983366)|Rakesh Agrawal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+Data-Driven+Education:+CIKM-2016+Keynote)|0| +|[Toward Data-Driven Education: CIKM-2016 Keynote](https://doi.org/10.1145/2983323.2983366)|Rakesh Agrawal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Toward+Data-Driven+Education:+CIKM-2016+Keynote)|1| +|[Plackett-Luce Regression Mixture Model for Heterogeneous Rankings](https://doi.org/10.1145/2983323.2983763)|Maksim Tkachenko, Hady Wirawan Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Plackett-Luce+Regression+Mixture+Model+for+Heterogeneous+Rankings)|1| +|[SemiNMF-PCA framework for Sparse Data Co-clustering](https://doi.org/10.1145/2983323.2983707)|Kais Allab, Lazhar Labiod, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemiNMF-PCA+framework+for+Sparse+Data+Co-clustering)|1| +|[Understanding Sparse Topical Structure of Short Text via Stochastic Variational-Gibbs Inference](https://doi.org/10.1145/2983323.2983765)|Tianyi Lin, Siyuan Zhang, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Sparse+Topical+Structure+of+Short+Text+via+Stochastic+Variational-Gibbs+Inference)|1| +|[A Framework for Task-specific Short Document Expansion](https://doi.org/10.1145/2983323.2983811)|Ramakrishna B. Bairi, Raghavendra Udupa, Ganesh Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Framework+for+Task-specific+Short+Document+Expansion)|1| +|[Beyond Clustering: Sub-DAG Discovery for Categorising Documents](https://doi.org/10.1145/2983323.2983810)|Ramakrishna B. Bairi, Mark James Carman, Ganesh Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+Clustering:+Sub-DAG+Discovery+for+Categorising+Documents)|1| +|[Derivative Delay Embedding: Online Modeling of Streaming Time Series](https://doi.org/10.1145/2983323.2983715)|Zhifei Zhang, Yang Song, Wei Wang, Hairong Qi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Derivative+Delay+Embedding:+Online+Modeling+of+Streaming+Time+Series)|1| +|[aptMTVL: Nailing Interactions in Multi-Task Multi-View Multi-Label Learning using Adaptive-basis Multilinear Factor Analyzers](https://doi.org/10.1145/2983323.2983783)|Xiaoli Li, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=aptMTVL:+Nailing+Interactions+in+Multi-Task+Multi-View+Multi-Label+Learning+using+Adaptive-basis+Multilinear+Factor+Analyzers)|1| +|[From Recommendation to Profile Inference (Rec2PI): A Value-added Service to Wi-Fi Data Mining](https://doi.org/10.1145/2983323.2983827)|Cheng Chen, Fang Dong, Kui Wu, Venkatesh Srinivasan, Alex Thomo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Recommendation+to+Profile+Inference+(Rec2PI):+A+Value-added+Service+to+Wi-Fi+Data+Mining)|1| +|[MIST: Missing Person Intelligence Synthesis Toolkit](https://doi.org/10.1145/2983323.2983346)|Elham Shaabani, Hamidreza Alvari, Paulo Shakarian, J. E. Kelly Snyder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MIST:+Missing+Person+Intelligence+Synthesis+Toolkit)|1| +|[Quantifying Query Ambiguity with Topic Distributions](https://doi.org/10.1145/2983323.2983863)|Yuki Yano, Yukihiro Tagami, Akira Tajima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Quantifying+Query+Ambiguity+with+Topic+Distributions)|1| +|[Exploiting Cluster-based Meta Paths for Link Prediction in Signed Networks](https://doi.org/10.1145/2983323.2983870)|Jiangfeng Zeng, Ke Zhou, Xiao Ma, Fuhao Zou, Hua Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Cluster-based+Meta+Paths+for+Link+Prediction+in+Signed+Networks)|1| +|[Personalized Semantic Word Vectors](https://doi.org/10.1145/2983323.2983875)|Javid Ebrahimi, Dejing Dou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Semantic+Word+Vectors)|1| +|[A Self-Organizing Map for Identifying InfluentialCommunities in Speech-based Networks](https://doi.org/10.1145/2983323.2983885)|Sameen Mansha, Faisal Kamiran, Asim Karim, Aizaz Anwar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Self-Organizing+Map+for+Identifying+InfluentialCommunities+in+Speech-based+Networks)|1| +|[Improving Search Results with Prior Similar Queries](https://doi.org/10.1145/2983323.2983890)|Yashar Moshfeghi, Kristiyan Velinov, Peter Triantafillou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Search+Results+with+Prior+Similar+Queries)|1| +|[PEQ: An Explainable, Specification-based, Aspect-oriented Product Comparator for E-commerce](https://doi.org/10.1145/2983323.2983901)|Abhishek Sikchi, Pawan Goyal, Samik Datta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PEQ:+An+Explainable,+Specification-based,+Aspect-oriented+Product+Comparator+for+E-commerce)|1| +|[Clustering Speed in Multi-lane Traffic Networks](https://doi.org/10.1145/2983323.2983905)|Bing Zhang, Goce Trajcevski, Feiying Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Clustering+Speed+in+Multi-lane+Traffic+Networks)|1| +|[Improving Entity Ranking for Keyword Queries](https://doi.org/10.1145/2983323.2983909)|John Foley, Brendan O'Connor, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Entity+Ranking+for+Keyword+Queries)|1| +|[Evaluating Document Retrieval Methods for Resource Selection in Clustered P2P IR](https://doi.org/10.1145/2983323.2983912)|Rami Suleiman Alkhawaldeh, Joemon M. Jose, Deepak P||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Evaluating+Document+Retrieval+Methods+for+Resource+Selection+in+Clustered+P2P+IR)|1| +|[Detecting and Ranking Conceptual Links between Texts Using a Knowledge Base](https://doi.org/10.1145/2983323.2983913)|Martin Tutek, Goran Glavas, Jan Snajder, Natasa MilicFrayling, Bojana Dalbelo Basic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+and+Ranking+Conceptual+Links+between+Texts+Using+a+Knowledge+Base)|1| +|[Discriminative View Learning for Single View Co-Training](https://doi.org/10.1145/2983323.2983671)|Joseph St. Amand, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discriminative+View+Learning+for+Single+View+Co-Training)|1| +|[Efficient Algorithms for the Two Locus Problem in Genome-Wide Association Study: Algorithms for the Two Locus Problem](https://doi.org/10.1145/2983323.2983685)|Sanguthevar Rajasekaran, Subrata Saha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Algorithms+for+the+Two+Locus+Problem+in+Genome-Wide+Association+Study:+Algorithms+for+the+Two+Locus+Problem)|1| +|[Digesting News Reader Comments via Fine-Grained Associations with Event Facets and News Contents](https://doi.org/10.1145/2983323.2983684)|Bei Shi, Wai Lam||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Digesting+News+Reader+Comments+via+Fine-Grained+Associations+with+Event+Facets+and+News+Contents)|1| +|[Improving Advertisement Recommendation by Enriching User Browser Cookie Attributes](https://doi.org/10.1145/2983323.2983374)|Liang Wang, Kuangchih Lee, Quan Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Advertisement+Recommendation+by+Enriching+User+Browser+Cookie+Attributes)|1| +|[Deola: A System for Linking Author Entities in Web Document with DBLP](https://doi.org/10.1145/2983323.2983330)|Yinan Liu, Wei Shen, Xiaojie Yuan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deola:+A+System+for+Linking+Author+Entities+in+Web+Document+with+DBLP)|1| +|[ConHub: A Metadata Management System for Docker Containers](https://doi.org/10.1145/2983323.2983331)|Chris Xing Tian, Aditya Pan, Yong Chiang Tay||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ConHub:+A+Metadata+Management+System+for+Docker+Containers)|1| |[Building Industry-specific Knowledge Bases](https://doi.org/10.1145/2983323.2983369)|Shivakumar Vaithyanathan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Industry-specific+Knowledge+Bases)|0| -|[Duer: Intelligent Personal Assistant](https://doi.org/10.1145/2983323.2983372)|Haifeng Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Duer:+Intelligent+Personal+Assistant)|0| -|[Personalized Search: Potential and Pitfalls](https://doi.org/10.1145/2983323.2983367)|Susan T. Dumais||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Search:+Potential+and+Pitfalls)|0| +|[Estimating Time Models for News Article Excerpts](https://doi.org/10.1145/2983323.2983802)|Arunav Mishra, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+Time+Models+for+News+Article+Excerpts)|0| |[A Personal Perspective and Retrospective on Web Search Technology](https://doi.org/10.1145/2983323.2983368)|Andrei Z. Broder||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Personal+Perspective+and+Retrospective+on+Web+Search+Technology)|0| |[Large-scale Robust Online Matching and Its Application in E-commerce](https://doi.org/10.1145/2983323.2983370)|Rong Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Large-scale+Robust+Online+Matching+and+Its+Application+in+E-commerce)|0| +|[LDA Revisited: Entropy, Prior and Convergence](https://doi.org/10.1145/2983323.2983794)|Jianwei Zhang, Jia Zeng, Mingxuan Yuan, Weixiong Rao, Jianfeng Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LDA+Revisited:+Entropy,+Prior+and+Convergence)|0| +|[Scarce Feature Topic Mining for Video Recommendation](https://doi.org/10.1145/2983323.2983892)|Wei Lu, Korris FuLai Chung, Kunfeng Lai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scarce+Feature+Topic+Mining+for+Video+Recommendation)|0| +|[A Preference Approach to Reputation in Sponsored Search](https://doi.org/10.1145/2983323.2983904)|Aritra Ghosh, Dinesh Gaurav, Rahul Agrawal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Preference+Approach+to+Reputation+in+Sponsored+Search)|0| +|[PRO: Preference-Aware Recurring Query Optimization](https://doi.org/10.1145/2983323.2983664)|Zhongfang Zhuang, Chuan Lei, Elke A. Rundensteiner, Mohamed Y. Eltabakh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRO:+Preference-Aware+Recurring+Query+Optimization)|0| +|[A Filtering-based Clustering Algorithm for Improving Spatio-temporal Kriging Interpolation Accuracy](https://doi.org/10.1145/2983323.2983668)|Qiao Kang, Weikeng Liao, Ankit Agrawal, Alok N. Choudhary||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Filtering-based+Clustering+Algorithm+for+Improving+Spatio-temporal+Kriging+Interpolation+Accuracy)|0| +|[Digesting Multilingual Reader Comments via Latent Discussion Topics with Commonality and Specificity](https://doi.org/10.1145/2983323.2983683)|Bei Shi, Wai Lam, Lidong Bing, Yinqing Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Digesting+Multilingual+Reader+Comments+via+Latent+Discussion+Topics+with+Commonality+and+Specificity)|0| diff --git a/papers/cikm/cikm2017.md b/papers/cikm/cikm2017.md index 402108ef..23f02fd8 100644 --- a/papers/cikm/cikm2017.md +++ b/papers/cikm/cikm2017.md @@ -2,349 +2,349 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[Reply With: Proactive Recommendation of Email Attachments](https://doi.org/10.1145/3132847.3132979)|Christophe Van Gysel, Bhaskar Mitra, Matteo Venanzi, Roy Rosemarin, Grzegorz Kukla, Piotr Grudzien, Nicola Cancedda||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reply+With:+Proactive+Recommendation+of+Email+Attachments)|68| -|[Interactive Social Recommendation](https://doi.org/10.1145/3132847.3132880)|Xin Wang, Steven C. H. Hoi, Chenghao Liu, Martin Ester||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Social+Recommendation)|58| -|[Attributed Network Embedding for Learning in a Dynamic Environment](https://doi.org/10.1145/3132847.3132919)|Jundong Li, Harsh Dani, Xia Hu, Jiliang Tang, Yi Chang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attributed+Network+Embedding+for+Learning+in+a+Dynamic+Environment)|56| -|[Users Are Known by the Company They Keep: Topic Models for Viewpoint Discovery in Social Networks](https://doi.org/10.1145/3132847.3132897)|Thibaut Thonet, Guillaume Cabanac, Mohand Boughanem, Karen PinelSauvagnat||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Users+Are+Known+by+the+Company+They+Keep:+Topic+Models+for+Viewpoint+Discovery+in+Social+Networks)|51| -|[MIKE: Keyphrase Extraction by Integrating Multidimensional Information](https://doi.org/10.1145/3132847.3132956)|Yuxiang Zhang, Yaocheng Chang, Xiaoqing Liu, Sujatha Das Gollapalli, Xiaoli Li, Chunjing Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MIKE:+Keyphrase+Extraction+by+Integrating+Multidimensional+Information)|49| -|[Multi-view Clustering with Graph Embedding for Connectome Analysis](https://doi.org/10.1145/3132847.3132909)|Guixiang Ma, Lifang He, ChunTa Lu, Weixiang Shao, Philip S. Yu, Alex D. Leow, Ann B. Ragin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-view+Clustering+with+Graph+Embedding+for+Connectome+Analysis)|48| -|[A Non-negative Symmetric Encoder-Decoder Approach for Community Detection](https://doi.org/10.1145/3132847.3132902)|BingJie Sun, Huawei Shen, Jinhua Gao, Wentao Ouyang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Non-negative+Symmetric+Encoder-Decoder+Approach+for+Community+Detection)|48| -|[NeuPL: Attention-based Semantic Matching and Pair-Linking for Entity Disambiguation](https://doi.org/10.1145/3132847.3132963)|Minh C. Phan, Aixin Sun, Yi Tay, Jialong Han, Chenliang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=NeuPL:+Attention-based+Semantic+Matching+and+Pair-Linking+for+Entity+Disambiguation)|48| -|[Learning to Attend, Copy, and Generate for Session-Based Query Suggestion](https://doi.org/10.1145/3132847.3133010)|Mostafa Dehghani, Sascha Rothe, Enrique Alfonseca, Pascal Fleury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Attend,+Copy,+and+Generate+for+Session-Based+Query+Suggestion)|48| -|[Attributed Signed Network Embedding](https://doi.org/10.1145/3132847.3132905)|Suhang Wang, Charu C. Aggarwal, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attributed+Signed+Network+Embedding)|47| -|[Volume Ranking and Sequential Selection in Programmatic Display Advertising](https://doi.org/10.1145/3132847.3132853)|Yuxuan Song, Kan Ren, Han Cai, Weinan Zhang, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Volume+Ranking+and+Sequential+Selection+in+Programmatic+Display+Advertising)|47| -|[On Embedding Uncertain Graphs](https://doi.org/10.1145/3132847.3132885)|Jiafeng Hu, Reynold Cheng, Zhipeng Huang, Yixiang Fang, Siqiang Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Embedding+Uncertain+Graphs)|46| -|[Weakly-Guided User Stance Prediction via Joint Modeling of Content and Social Interaction](https://doi.org/10.1145/3132847.3133020)|Rui Dong, Yizhou Sun, Lu Wang, Yupeng Gu, Yuan Zhong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weakly-Guided+User+Stance+Prediction+via+Joint+Modeling+of+Content+and+Social+Interaction)|46| -|[Neural Attentive Session-based Recommendation](https://doi.org/10.1145/3132847.3132926)|Jing Li, Pengjie Ren, Zhumin Chen, Zhaochun Ren, Tao Lian, Jun Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Neural+Attentive+Session-based+Recommendation)|46| -|[Joint Representation Learning for Top-N Recommendation with Heterogeneous Information Sources](https://doi.org/10.1145/3132847.3132892)|Yongfeng Zhang, Qingyao Ai, Xu Chen, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Representation+Learning+for+Top-N+Recommendation+with+Heterogeneous+Information+Sources)|46| -|[A Topic Model Based on Poisson Decomposition](https://doi.org/10.1145/3132847.3132942)|Haixin Jiang, Rui Zhou, Limeng Zhang, Hua Wang, Yanchun Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Topic+Model+Based+on+Poisson+Decomposition)|46| -|[Learning and Transferring Social and Item Visibilities for Personalized Recommendation](https://doi.org/10.1145/3132847.3132911)|Xiao Lin, Min Zhang, Yongfeng Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+and+Transferring+Social+and+Item+Visibilities+for+Personalized+Recommendation)|45| -|[Adaptive Persistence for Search Effectiveness Measures](https://doi.org/10.1145/3132847.3133033)|Jiepu Jiang, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Persistence+for+Search+Effectiveness+Measures)|45| -|[From Fingerprint to Footprint: Revealing Physical World Privacy Leakage by Cyberspace Cookie Logs](https://doi.org/10.1145/3132847.3132998)|Huandong Wang, Chen Gao, Yong Li, ZhiLi Zhang, Depeng Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Fingerprint+to+Footprint:+Revealing+Physical+World+Privacy+Leakage+by+Cyberspace+Cookie+Logs)|44| -|[Interacting Attention-gated Recurrent Networks for Recommendation](https://doi.org/10.1145/3132847.3133005)|Wenjie Pei, Jie Yang, Zhu Sun, Jie Zhang, Alessandro Bozzon, David M. J. Tax||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interacting+Attention-gated+Recurrent+Networks+for+Recommendation)|44| -|[BayDNN: Friend Recommendation with Bayesian Personalized Ranking Deep Neural Network](https://doi.org/10.1145/3132847.3132941)|Daizong Ding, Mi Zhang, ShaoYuan Li, Jie Tang, Xiaotie Chen, ZhiHua Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BayDNN:+Friend+Recommendation+with+Bayesian+Personalized+Ranking+Deep+Neural+Network)|44| -|[Distant Meta-Path Similarities for Text-Based Heterogeneous Information Networks](https://doi.org/10.1145/3132847.3133029)|Chenguang Wang, Yangqiu Song, Haoran Li, Yizhou Sun, Ming Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distant+Meta-Path+Similarities+for+Text-Based+Heterogeneous+Information+Networks)|44| -|[Extracting Records from the Web Using a Signal Processing Approach](https://doi.org/10.1145/3132847.3132875)|Roberto Panerai Velloso, Carina F. Dorneles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Records+from+the+Web+Using+a+Signal+Processing+Approach)|43| -|[Detecting Multiple Periods and Periodic Patterns in Event Time Sequences](https://doi.org/10.1145/3132847.3133027)|Quan Yuan, Jingbo Shang, Xin Cao, Chao Zhang, Xinhe Geng, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Multiple+Periods+and+Periodic+Patterns+in+Event+Time+Sequences)|43| -|[CSI: A Hybrid Deep Model for Fake News Detection](https://doi.org/10.1145/3132847.3132877)|Natali Ruchansky, Sungyong Seo, Yan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CSI:+A+Hybrid+Deep+Model+for+Fake+News+Detection)|43| -|[Outlier Detection in Sparse Data with Factorization Machines](https://doi.org/10.1145/3132847.3132987)|Mengxiao Zhu, Charu C. Aggarwal, Shuai Ma, Hui Zhang, Jinpeng Huai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Outlier+Detection+in+Sparse+Data+with+Factorization+Machines)|43| -|[Tensor Rank Estimation and Completion via CP-based Nuclear Norm](https://doi.org/10.1145/3132847.3132945)|Qiquan Shi, Haiping Lu, Yiuming Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tensor+Rank+Estimation+and+Completion+via+CP-based+Nuclear+Norm)|43| -|[Understanding and Predicting Weight Loss with Mobile Social Networking Data](https://doi.org/10.1145/3132847.3133019)|Zhiwei Wang, Tyler Derr, Dawei Yin, Jiliang Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+and+Predicting+Weight+Loss+with+Mobile+Social+Networking+Data)|43| -|[Content Recommendation by Noise Contrastive Transfer Learning of Feature Representation](https://doi.org/10.1145/3132847.3132855)|Yiyang Li, Guanyu Tao, Weinan Zhang, Yong Yu, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content+Recommendation+by+Noise+Contrastive+Transfer+Learning+of+Feature+Representation)|43| -|[Core Decomposition and Densest Subgraph in Multilayer Networks](https://doi.org/10.1145/3132847.3132993)|Edoardo Galimberti, Francesco Bonchi, Francesco Gullo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Core+Decomposition+and+Densest+Subgraph+in+Multilayer+Networks)|43| -|[Multi-Task Neural Network for Non-discrete Attribute Prediction in Knowledge Graphs](https://doi.org/10.1145/3132847.3132937)|Yi Tay, Luu Anh Tuan, Minh C. Phan, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Task+Neural+Network+for+Non-discrete+Attribute+Prediction+in+Knowledge+Graphs)|42| -|[On Migratory Behavior in Video Consumption](https://doi.org/10.1145/3132847.3132884)|Huan Yan, TzuHeng Lin, Gang Wang, Yong Li, Haitao Zheng, Depeng Jin, Ben Y. Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Migratory+Behavior+in+Video+Consumption)|42| -|[Active Network Alignment: A Matching-Based Approach](https://doi.org/10.1145/3132847.3132983)|Eric Malmi, Aristides Gionis, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Network+Alignment:+A+Matching-Based+Approach)|42| -|[Aspect-level Sentiment Classification with HEAT (HiErarchical ATtention) Network](https://doi.org/10.1145/3132847.3133037)|Jiajun Cheng, Shenglin Zhao, Jiani Zhang, Irwin King, Xin Zhang, Hui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aspect-level+Sentiment+Classification+with+HEAT+(HiErarchical+ATtention)+Network)|41| -|[Does That Mean You're Happy?: RNN-based Modeling of User Interaction Sequences to Detect Good Abandonment](https://doi.org/10.1145/3132847.3133035)|Kyle Williams, Imed Zitouni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Does+That+Mean+You're+Happy?:+RNN-based+Modeling+of+User+Interaction+Sequences+to+Detect+Good+Abandonment)|41| -|[MGAE: Marginalized Graph Autoencoder for Graph Clustering](https://doi.org/10.1145/3132847.3132967)|Chun Wang, Shirui Pan, Guodong Long, Xingquan Zhu, Jing Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MGAE:+Marginalized+Graph+Autoencoder+for+Graph+Clustering)|41| -|[Sequence Modeling with Hierarchical Deep Generative Models with Dual Memory](https://doi.org/10.1145/3132847.3132952)|Yanan Zheng, Lijie Wen, Jianmin Wang, Jun Yan, Lei Ji||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequence+Modeling+with+Hierarchical+Deep+Generative+Models+with+Dual+Memory)|41| -|[Recommendation with Capacity Constraints](https://doi.org/10.1145/3132847.3133034)|Konstantina Christakopoulou, Jaya Kawale, Arindam Banerjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendation+with+Capacity+Constraints)|41| -|[HoloScope: Topology-and-Spike Aware Fraud Detection](https://doi.org/10.1145/3132847.3133018)|Shenghua Liu, Bryan Hooi, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HoloScope:+Topology-and-Spike+Aware+Fraud+Detection)|41| -|[Sybil Defense in Crowdsourcing Platforms](https://doi.org/10.1145/3132847.3133039)|Dong Yuan, Guoliang Li, Qi Li, Yudian Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sybil+Defense+in+Crowdsourcing+Platforms)|41| -|[A Two-Stage Framework for Computing Entity Relatedness in Wikipedia](https://doi.org/10.1145/3132847.3132890)|Marco Ponza, Paolo Ferragina, Soumen Chakrabarti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Two-Stage+Framework+for+Computing+Entity+Relatedness+in+Wikipedia)|41| -|[Incorporating the Latent Link Categories in Relational Topic Modeling](https://doi.org/10.1145/3132847.3132881)|Yuan He, Cheng Wang, Changjun Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+the+Latent+Link+Categories+in+Relational+Topic+Modeling)|41| -|[Hike: A Hybrid Human-Machine Method for Entity Alignment in Large-Scale Knowledge Bases](https://doi.org/10.1145/3132847.3132912)|Yan Zhuang, Guoliang Li, Zhuojian Zhong, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hike:+A+Hybrid+Human-Machine+Method+for+Entity+Alignment+in+Large-Scale+Knowledge+Bases)|41| -|[Learning to Un-Rank: Quantifying Search Exposure for Users in Online Communities](https://doi.org/10.1145/3132847.3133040)|Asia J. Biega, Azin Ghazimatin, Hakan Ferhatosmanoglu, Krishna P. Gummadi, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Un-Rank:+Quantifying+Search+Exposure+for+Users+in+Online+Communities)|40| -|[Balancing Speed and Quality in Online Learning to Rank for Information Retrieval](https://doi.org/10.1145/3132847.3132896)|Harrie Oosterhuis, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balancing+Speed+and+Quality+in+Online+Learning+to+Rank+for+Information+Retrieval)|40| -|[Deep Sequential Models for Task Satisfaction Prediction](https://doi.org/10.1145/3132847.3133001)|Rishabh Mehrotra, Ahmed Hassan Awadallah, Milad Shokouhi, Emine Yilmaz, Imed Zitouni, Ahmed El Kholy, Madian Khabsa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Sequential+Models+for+Task+Satisfaction+Prediction)|40| -|[BL-ECD: Broad Learning based Enterprise Community Detection via Hierarchical Structure Fusion](https://doi.org/10.1145/3132847.3133026)|Jiawei Zhang, Limeng Cui, Philip S. Yu, Yuanhua Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BL-ECD:+Broad+Learning+based+Enterprise+Community+Detection+via+Hierarchical+Structure+Fusion)|40| -|[Stream Aggregation Through Order Sampling](https://doi.org/10.1145/3132847.3133042)|Nick G. Duffield, Yunhong Xu, Liangzhen Xia, Nesreen K. Ahmed, Minlan Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Stream+Aggregation+Through+Order+Sampling)|40| -|[Maintaining Densest Subsets Efficiently in Evolving Hypergraphs](https://doi.org/10.1145/3132847.3132907)|Shuguang Hu, Xiaowei Wu, T.H. Hubert Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maintaining+Densest+Subsets+Efficiently+in+Evolving+Hypergraphs)|40| -|[Differentially Private Regression for Discrete-Time Survival Analysis](https://doi.org/10.1145/3132847.3132928)|Thông T. Nguyên, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differentially+Private+Regression+for+Discrete-Time+Survival+Analysis)|40| -|[Taxonomy Induction Using Hypernym Subsequences](https://doi.org/10.1145/3132847.3133041)|Amit Gupta, Rémi Lebret, Hamza Harkous, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Taxonomy+Induction+Using+Hypernym+Subsequences)|40| -|[Active Learning for Large-Scale Entity Resolution](https://doi.org/10.1145/3132847.3132949)|Kun Qian, Lucian Popa, Prithviraj Sen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+for+Large-Scale+Entity+Resolution)|40| -|[Words are Malleable: Computing Semantic Shifts in Political and Media Discourse](https://doi.org/10.1145/3132847.3132878)|Hosein Azarbonyad, Mostafa Dehghani, Kaspar Beelen, Alexandra Arkut, Maarten Marx, Jaap Kamps||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Words+are+Malleable:+Computing+Semantic+Shifts+in+Political+and+Media+Discourse)|40| -|[Unsupervised Feature Selection with Joint Clustering Analysis](https://doi.org/10.1145/3132847.3132999)|Shuai An, Jun Wang, Jinmao Wei, Zhenglu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+with+Joint+Clustering+Analysis)|40| -|[Jointly Modeling Static Visual Appearance and Temporal Pattern for Unsupervised Video Hashing](https://doi.org/10.1145/3132847.3133030)|Chao Li, Yang Yang, Jiewei Cao, Zi Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Jointly+Modeling+Static+Visual+Appearance+and+Temporal+Pattern+for+Unsupervised+Video+Hashing)|39| -|[Scenic Routes Now: Efficiently Solving the Time-Dependent Arc Orienteering Problem](https://doi.org/10.1145/3132847.3132874)|Ying Lu, Gregor Jossé, Tobias Emrich, Ugur Demiryurek, Matthias Renz, Cyrus Shahabi, Matthias Schubert||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scenic+Routes+Now:+Efficiently+Solving+the+Time-Dependent+Arc+Orienteering+Problem)|39| -|[Modeling Temporal-Spatial Correlations for Crime Prediction](https://doi.org/10.1145/3132847.3133024)|Xiangyu Zhao, Jiliang Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Temporal-Spatial+Correlations+for+Crime+Prediction)|39| -|[Temporal Analog Retrieval using Transformation over Dual Hierarchical Structures](https://doi.org/10.1145/3132847.3132917)|Yating Zhang, Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+Analog+Retrieval+using+Transformation+over+Dual+Hierarchical+Structures)|39| -|[Anomaly Detection in Dynamic Networks using Multi-view Time-Series Hypersphere Learning](https://doi.org/10.1145/3132847.3132964)|Xian Teng, YuRu Lin, Xidao Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anomaly+Detection+in+Dynamic+Networks+using+Multi-view+Time-Series+Hypersphere+Learning)|39| -|[Crowdsourcing Cybersecurity: Cyber Attack Detection using Social Media](https://doi.org/10.1145/3132847.3132866)|Rupinder Paul Khandpur, Taoran Ji, Steve T. K. Jan, Gang Wang, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing+Cybersecurity:+Cyber+Attack+Detection+using+Social+Media)|39| -|[A Matrix-Vector Recurrent Unit Model for Capturing Compositional Semantics in Phrase Embeddings](https://doi.org/10.1145/3132847.3132984)|Rui Wang, Wei Liu, Chris McDonald||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Matrix-Vector+Recurrent+Unit+Model+for+Capturing+Compositional+Semantics+in+Phrase+Embeddings)|39| -|[FA*IR: A Fair Top-k Ranking Algorithm](https://doi.org/10.1145/3132847.3132938)|Meike Zehlike, Francesco Bonchi, Carlos Castillo, Sara Hajian, Mohamed Megahed, Ricardo BaezaYates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FA*IR:+A+Fair+Top-k+Ranking+Algorithm)|39| -|[Crowd-enabled Pareto-Optimal Objects Finding Employing Multi-Pairwise-Comparison Questions](https://doi.org/10.1145/3132847.3132910)|Chang Liu, Yinan Zhang, Lei Liu, Lizhen Cui, Dong Yuan, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowd-enabled+Pareto-Optimal+Objects+Finding+Employing+Multi-Pairwise-Comparison+Questions)|38| -|[Similarity-based Distant Supervision for Definition Retrieval](https://doi.org/10.1145/3132847.3133032)|Jiepu Jiang, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity-based+Distant+Supervision+for+Definition+Retrieval)|38| -|[Movie Fill in the Blank with Adaptive Temporal Attention and Description Update](https://doi.org/10.1145/3132847.3132922)|Jie Chen, Jie Shao, Fumin Shen, Chengkun He, Lianli Gao, Heng Tao Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Movie+Fill+in+the+Blank+with+Adaptive+Temporal+Attention+and+Description+Update)|38| -|[A Two-step Information Accumulation Strategy for Learning from Highly Imbalanced Data](https://doi.org/10.1145/3132847.3132940)|Bin Liu, Min Zhang, Weizhi Ma, Xin Li, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Two-step+Information+Accumulation+Strategy+for+Learning+from+Highly+Imbalanced+Data)|38| -|[Health Forum Thread Recommendation Using an Interest Aware Topic Model](https://doi.org/10.1145/3132847.3132946)|Kishaloy Halder, MinYen Kan, Kazunari Sugiyama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Health+Forum+Thread+Recommendation+Using+an+Interest+Aware+Topic+Model)|38| -|[Discovering Graph Temporal Association Rules](https://doi.org/10.1145/3132847.3133014)|Mohammad Hossein Namaki, Yinghui Wu, Qi Song, Peng Lin, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Graph+Temporal+Association+Rules)|38| -|[Exploiting Electronic Health Records to Mine Drug Effects on Laboratory Test Results](https://doi.org/10.1145/3132847.3132986)|Mohamed F. Ghalwash, Ying Li, Ping Zhang, Jianying Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Electronic+Health+Records+to+Mine+Drug+Effects+on+Laboratory+Test+Results)|38| -|[Learning Visual Features from Snapshots for Web Search](https://doi.org/10.1145/3132847.3132943)|Yixing Fan, Jiafeng Guo, Yanyan Lan, Jun Xu, Liang Pang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Visual+Features+from+Snapshots+for+Web+Search)|37| -|[Temporally Like-minded User Community Identification through Neural Embeddings](https://doi.org/10.1145/3132847.3132955)|Hossein Fani, Ebrahim Bagheri, Weichang Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporally+Like-minded+User+Community+Identification+through+Neural+Embeddings)|37| -|[Collaborative Filtering as a Case-Study for Model Parallelism on Bulk Synchronous Systems](https://doi.org/10.1145/3132847.3132862)|Ariyam Das, Ishan Upadhyaya, Xiangrui Meng, Ameet Talwalkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Filtering+as+a+Case-Study+for+Model+Parallelism+on+Bulk+Synchronous+Systems)|37| -|[Learning Knowledge Embeddings by Combining Limit-based Scoring Loss](https://doi.org/10.1145/3132847.3132939)|Xiaofei Zhou, Qiannan Zhu, Ping Liu, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Knowledge+Embeddings+by+Combining+Limit-based+Scoring+Loss)|37| -|[An Attention-based Collaboration Framework for Multi-View Network Representation Learning](https://doi.org/10.1145/3132847.3133021)|Meng Qu, Jian Tang, Jingbo Shang, Xiang Ren, Ming Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Attention-based+Collaboration+Framework+for+Multi-View+Network+Representation+Learning)|37| -|[Dual Learning for Cross-domain Image Captioning](https://doi.org/10.1145/3132847.3132920)|Wei Zhao, Wei Xu, Min Yang, Jianbo Ye, Zhou Zhao, Yabing Feng, Yu Qiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual+Learning+for+Cross-domain+Image+Captioning)|36| -|[Dyadic Memory Networks for Aspect-based Sentiment Analysis](https://doi.org/10.1145/3132847.3132936)|Yi Tay, Luu Anh Tuan, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dyadic+Memory+Networks+for+Aspect-based+Sentiment+Analysis)|36| -|[Natural Language Question/Answering: Let Users Talk With The Knowledge Graph](https://doi.org/10.1145/3132847.3132977)|Weiguo Zheng, Hong Cheng, Lei Zou, Jeffrey Xu Yu, Kangfei Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Natural+Language+Question/Answering:+Let+Users+Talk+With+The+Knowledge+Graph)|36| -|[Efficient Discovery of Ontology Functional Dependencies](https://doi.org/10.1145/3132847.3132879)|Sridevi Baskaran, Alexander Keller, Fei Chiang, Lukasz Golab, Jaroslaw Szlichta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Discovery+of+Ontology+Functional+Dependencies)|36| -|[Keyword Search on RDF Graphs - A Query Graph Assembly Approach](https://doi.org/10.1145/3132847.3132957)|Shuo Han, Lei Zou, Jeffrey Xu Yu, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Keyword+Search+on+RDF+Graphs+-+A+Query+Graph+Assembly+Approach)|35| -|[Learning Community Embedding with Community Detection and Node Embedding on Graphs](https://doi.org/10.1145/3132847.3132925)|Sandro Cavallari, Vincent W. Zheng, Hongyun Cai, Kevin ChenChuan Chang, Erik Cambria||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Community+Embedding+with+Community+Detection+and+Node+Embedding+on+Graphs)|35| -|[Talking to Your TV: Context-Aware Voice Search with Hierarchical Recurrent Neural Networks](https://doi.org/10.1145/3132847.3132893)|Jinfeng Rao, Ferhan Türe, Hua He, Oliver Jojic, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Talking+to+Your+TV:+Context-Aware+Voice+Search+with+Hierarchical+Recurrent+Neural+Networks)|35| -|[Tracking Knowledge Proficiency of Students with Educational Priors](https://doi.org/10.1145/3132847.3132929)|Yuying Chen, Qi Liu, Zhenya Huang, Le Wu, Enhong Chen, Runze Wu, Yu Su, Guoping Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Knowledge+Proficiency+of+Students+with+Educational+Priors)|35| -|[A Personalized Predictive Framework for Multivariate Clinical Time Series via Adaptive Model Selection](https://doi.org/10.1145/3132847.3132859)|Zitao Liu, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Personalized+Predictive+Framework+for+Multivariate+Clinical+Time+Series+via+Adaptive+Model+Selection)|35| -|[Broad Learning based Multi-Source Collaborative Recommendation](https://doi.org/10.1145/3132847.3132976)|Junxing Zhu, Jiawei Zhang, Lifang He, Quanyuan Wu, Bin Zhou, Chenwei Zhang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Broad+Learning+based+Multi-Source+Collaborative+Recommendation)|35| -|[Source Retrieval for Web-Scale Text Reuse Detection](https://doi.org/10.1145/3132847.3133097)|Matthias Hagen, Martin Potthast, Payam Adineh, Ehsan Fatehifar, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Source+Retrieval+for+Web-Scale+Text+Reuse+Detection)|35| -|[Building Natural Language Interfaces to Web APIs](https://doi.org/10.1145/3132847.3133009)|Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, Patrick Pantel, Michael Gamon, Mark J. Encarnación||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Natural+Language+Interfaces+to+Web+APIs)|34| -|[Joint Topic-Semantic-aware Social Recommendation for Online Voting](https://doi.org/10.1145/3132847.3132889)|Hongwei Wang, Jia Wang, Miao Zhao, Jiannong Cao, Minyi Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Topic-Semantic-aware+Social+Recommendation+for+Online+Voting)|34| -|[To Be Connected, or Not to Be Connected: That is the Minimum Inefficiency Subgraph Problem](https://doi.org/10.1145/3132847.3132991)|Natali Ruchansky, Francesco Bonchi, David GarcíaSoriano, Francesco Gullo, Nicolas Kourtellis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+Be+Connected,+or+Not+to+Be+Connected:+That+is+the+Minimum+Inefficiency+Subgraph+Problem)|34| -|[Coupled Sparse Matrix Factorization for Response Time Prediction in Logistics Services](https://doi.org/10.1145/3132847.3132948)|Yuqi Wang, Jiannong Cao, Lifang He, Wengen Li, Lichao Sun, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Coupled+Sparse+Matrix+Factorization+for+Response+Time+Prediction+in+Logistics+Services)|34| -|[DeepRank: A New Deep Architecture for Relevance Ranking in Information Retrieval](https://doi.org/10.1145/3132847.3132914)|Liang Pang, Yanyan Lan, Jiafeng Guo, Jun Xu, Jingfang Xu, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepRank:+A+New+Deep+Architecture+for+Relevance+Ranking+in+Information+Retrieval)|33| -|[Privacy-Preserving Collaborative Deep Learning with Application to Human Activity Recognition](https://doi.org/10.1145/3132847.3132990)|Lingjuan Lyu, Xuanli He, Yee Wei Law, Marimuthu Palaniswami||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy-Preserving+Collaborative+Deep+Learning+with+Application+to+Human+Activity+Recognition)|33| -|[Name Disambiguation in Anonymized Graphs using Network Embedding](https://doi.org/10.1145/3132847.3132873)|Baichuan Zhang, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Name+Disambiguation+in+Anonymized+Graphs+using+Network+Embedding)|33| -|[Fully Dynamic Algorithm for Top-k Densest Subgraphs](https://doi.org/10.1145/3132847.3132966)|Muhammad Anis Uddin Nasir, Aristides Gionis, Gianmarco De Francisci Morales, Sarunas Girdzijauskas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fully+Dynamic+Algorithm+for+Top-k+Densest+Subgraphs)|33| -|[Automatic Navbox Generation by Interpretable Clustering over Linked Entities](https://doi.org/10.1145/3132847.3132899)|Chenhao Xie, Lihan Chen, Jiaqing Liang, Kezun Zhang, Yanghua Xiao, Hanghang Tong, Haixun Wang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Navbox+Generation+by+Interpretable+Clustering+over+Linked+Entities)|33| -|[Modeling Language Discrepancy for Cross-Lingual Sentiment Analysis](https://doi.org/10.1145/3132847.3132915)|Qiang Chen, Chenliang Li, Wenjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Language+Discrepancy+for+Cross-Lingual+Sentiment+Analysis)|32| -|[Sensitive and Scalable Online Evaluation with Theoretical Guarantees](https://doi.org/10.1145/3132847.3132895)|Harrie Oosterhuis, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sensitive+and+Scalable+Online+Evaluation+with+Theoretical+Guarantees)|32| -|[From Properties to Links: Deep Network Embedding on Incomplete Graphs](https://doi.org/10.1145/3132847.3132975)|Dejian Yang, Senzhang Wang, Chaozhuo Li, Xiaoming Zhang, Zhoujun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Properties+to+Links:+Deep+Network+Embedding+on+Incomplete+Graphs)|32| -|[Community-Based Network Alignment for Large Attributed Network](https://doi.org/10.1145/3132847.3132904)|Zheng Chen, Xinli Yu, Bo Song, Jianliang Gao, Xiaohua Hu, WeiShih Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-Based+Network+Alignment+for+Large+Attributed+Network)|32| -|[Social Media for Opioid Addiction Epidemiology: Automatic Detection of Opioid Addicts from Twitter and Case Studies](https://doi.org/10.1145/3132847.3132857)|Yujie Fan, Yiming Zhang, Yanfang Ye, Xin Li, Wanhong Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Media+for+Opioid+Addiction+Epidemiology:+Automatic+Detection+of+Opioid+Addicts+from+Twitter+and+Case+Studies)|32| -|[QALink: Enriching Text Documents with Relevant Q&A Site Contents](https://doi.org/10.1145/3132847.3132934)|Yixuan Tang, Weilong Huang, Qi Liu, Anthony K. H. Tung, Xiaoli Wang, Jisong Yang, Beibei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QALink:+Enriching+Text+Documents+with+Relevant+Q&A+Site+Contents)|32| -|[A Deep Recurrent Collaborative Filtering Framework for Venue Recommendation](https://doi.org/10.1145/3132847.3133036)|Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Deep+Recurrent+Collaborative+Filtering+Framework+for+Venue+Recommendation)|32| -|[Capturing Feature-Level Irregularity in Disease Progression Modeling](https://doi.org/10.1145/3132847.3132944)|Kaiping Zheng, Wei Wang, Jinyang Gao, Kee Yuan Ngiam, Beng Chin Ooi, James Wei Luen Yip||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Capturing+Feature-Level+Irregularity+in+Disease+Progression+Modeling)|32| -|[UFeed: Refining Web Data Integration Based on User Feedback](https://doi.org/10.1145/3132847.3132887)|Ahmed ElRoby, Ashraf Aboulnaga||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UFeed:+Refining+Web+Data+Integration+Based+on+User+Feedback)|31| -|[Spreadsheet Property Detection With Rule-assisted Active Learning](https://doi.org/10.1145/3132847.3132882)|Zhe Chen, Sasha Dadiomov, Richard Wesley, Gang Xiao, Daniel Cory, Michael J. Cafarella, Jock D. Mackinlay||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spreadsheet+Property+Detection+With+Rule-assisted+Active+Learning)|31| -|[Understanding Database Performance Inefficiencies in Real-world Web Applications](https://doi.org/10.1145/3132847.3132954)|Cong Yan, Alvin Cheung, Junwen Yang, Shan Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Database+Performance+Inefficiencies+in+Real-world+Web+Applications)|31| -|[Deep Context Modeling for Web Query Entity Disambiguation](https://doi.org/10.1145/3132847.3132856)|Zhen Liao, Xinying Song, Yelong Shen, Saekoo Lee, Jianfeng Gao, Ciya Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Context+Modeling+for+Web+Query+Entity+Disambiguation)|31| -|[Learning Edge Representations via Low-Rank Asymmetric Projections](https://doi.org/10.1145/3132847.3132959)|Sami AbuElHaija, Bryan Perozzi, Rami AlRfou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Edge+Representations+via+Low-Rank+Asymmetric+Projections)|31| -|[Nationality Classification Using Name Embeddings](https://doi.org/10.1145/3132847.3133008)|Junting Ye, Shuchu Han, Yifan Hu, Baris Coskun, Meizhu Liu, Hong Qin, Steven Skiena||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nationality+Classification+Using+Name+Embeddings)|31| -|[Emotions in Social Networks: Distributions, Patterns, and Models](https://doi.org/10.1145/3132847.3132932)|Shengmin Jin, Reza Zafarani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Emotions+in+Social+Networks:+Distributions,+Patterns,+and+Models)|31| -|[Modeling Affinity based Popularity Dynamics](https://doi.org/10.1145/3132847.3132923)|Minkyoung Kim, Daniel A. McFarland, Jure Leskovec||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Affinity+based+Popularity+Dynamics)|30| -|[Spatiotemporal Event Forecasting from Incomplete Hyper-local Price Data](https://doi.org/10.1145/3132847.3132996)|Xuchao Zhang, Liang Zhao, Arnold P. Boedihardjo, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatiotemporal+Event+Forecasting+from+Incomplete+Hyper-local+Price+Data)|30| -|[Exploiting Spatio-Temporal User Behaviors for User Linkage](https://doi.org/10.1145/3132847.3132898)|Wei Chen, Hongzhi Yin, Weiqing Wang, Lei Zhao, Wen Hua, Xiaofang Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Spatio-Temporal+User+Behaviors+for+User+Linkage)|30| -|[Hybrid BiLSTM-Siamese network for FAQ Assistance](https://doi.org/10.1145/3132847.3132861)|Prerna Khurana, Puneet Agarwal, Gautam Shroff, Lovekesh Vig, Ashwin Srinivasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+BiLSTM-Siamese+network+for+FAQ+Assistance)|30| -|[A Study of Main-Memory Hash Joins on Many-core Processor: A Case with Intel Knights Landing Architecture](https://doi.org/10.1145/3132847.3132916)|Xuntao Cheng, Bingsheng He, Xiaoli Du, Chiew Tong Lau||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Main-Memory+Hash+Joins+on+Many-core+Processor:+A+Case+with+Intel+Knights+Landing+Architecture)|30| -|[Tweet Geolocation: Leveraging Location, User and Peer Signals](https://doi.org/10.1145/3132847.3132906)|WenHaw Chong, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tweet+Geolocation:+Leveraging+Location,+User+and+Peer+Signals)|30| -|[A Personalised Ranking Framework with Multiple Sampling Criteria for Venue Recommendation](https://doi.org/10.1145/3132847.3132985)|Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Personalised+Ranking+Framework+with+Multiple+Sampling+Criteria+for+Venue+Recommendation)|30| -|[Semi-Supervised Event-related Tweet Identification with Dynamic Keyword Generation](https://doi.org/10.1145/3132847.3132968)|Xin Zheng, Aixin Sun, Sibo Wang, Jialong Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Supervised+Event-related+Tweet+Identification+with+Dynamic+Keyword+Generation)|30| -|[Minimizing Tension in Teams](https://doi.org/10.1145/3132847.3133013)|Behzad Golshan, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Minimizing+Tension+in+Teams)|30| -|[Predicting Startup Crowdfunding Success through Longitudinal Social Engagement Analysis](https://doi.org/10.1145/3132847.3132908)|Qizhen Zhang, Tengyuan Ye, Meryem Essaidi, Shivani Agarwal, Vincent Liu, Boon Thau Loo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Startup+Crowdfunding+Success+through+Longitudinal+Social+Engagement+Analysis)|30| -|[Integrating Side Information for Boosting Machine Comprehension](https://doi.org/10.1145/3132847.3133136)|Yutong Wang, Yixin Xu, Min Yang, Zhou Zhao, Jun Xiao, Yueting Zhuang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Integrating+Side+Information+for+Boosting+Machine+Comprehension)|30| -|[Region Representation Learning via Mobility Flow](https://doi.org/10.1145/3132847.3133006)|Hongjian Wang, Zhenhui Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Region+Representation+Learning+via+Mobility+Flow)|29| -|[Crowdsourced Selection on Multi-Attribute Data](https://doi.org/10.1145/3132847.3132891)|Xueping Weng, Guoliang Li, Huiqi Hu, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourced+Selection+on+Multi-Attribute+Data)|29| -|[Learning Node Embeddings in Interaction Graphs](https://doi.org/10.1145/3132847.3132918)|Yao Zhang, Yun Xiong, Xiangnan Kong, Yangyong Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Node+Embeddings+in+Interaction+Graphs)|29| -|[Fast Algorithms for Pareto Optimal Group-based Skyline](https://doi.org/10.1145/3132847.3132950)|Wenhui Yu, Zheng Qin, Jinfei Liu, Li Xiong, Xu Chen, Huidi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Algorithms+for+Pareto+Optimal+Group-based+Skyline)|29| -|[LARM: A Lifetime Aware Regression Model for Predicting YouTube Video Popularity](https://doi.org/10.1145/3132847.3132997)|Changsha Ma, Zhisheng Yan, Chang Wen Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LARM:+A+Lifetime+Aware+Regression+Model+for+Predicting+YouTube+Video+Popularity)|29| -|[PQBF: I/O-Efficient Approximate Nearest Neighbor Search by Product Quantization](https://doi.org/10.1145/3132847.3132901)|Yingfan Liu, Hong Cheng, Jiangtao Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PQBF:+I/O-Efficient+Approximate+Nearest+Neighbor+Search+by+Product+Quantization)|29| -|[Indexable Bayesian Personalized Ranking for Efficient Top-k Recommendation](https://doi.org/10.1145/3132847.3132913)|Dung D. Le, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexable+Bayesian+Personalized+Ranking+for+Efficient+Top-k+Recommendation)|29| -|[Building a Dossier on the Cheap: Integrating Distributed Personal Data Resources Under Cost Constraints](https://doi.org/10.1145/3132847.3132951)|Imrul Chowdhury Anindya, Harichandan Roy, Murat Kantarcioglu, Bradley A. Malin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+a+Dossier+on+the+Cheap:+Integrating+Distributed+Personal+Data+Resources+Under+Cost+Constraints)|29| -|[DeMalC: A Feature-rich Machine Learning Framework for Malicious Call Detection](https://doi.org/10.1145/3132847.3132848)|Yuhong Li, Dongmei Hou, Aimin Pan, Zhiguo Gong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeMalC:+A+Feature-rich+Machine+Learning+Framework+for+Malicious+Call+Detection)|29| -|[HotSpots: Failure Cascades on Heterogeneous Critical Infrastructure Networks](https://doi.org/10.1145/3132847.3132867)|Liangzhe Chen, Xinfeng Xu, Sangkeun Lee, Sisi Duan, Alfonso G. Tarditi, Supriya Chinthavali, B. Aditya Prakash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HotSpots:+Failure+Cascades+on+Heterogeneous+Critical+Infrastructure+Networks)|29| -|[HIN2Vec: Explore Meta-paths in Heterogeneous Information Networks for Representation Learning](https://doi.org/10.1145/3132847.3132953)|TaoYang Fu, WangChien Lee, Zhen Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HIN2Vec:+Explore+Meta-paths+in+Heterogeneous+Information+Networks+for+Representation+Learning)|29| -|[Tone Analyzer for Online Customer Service: An Unsupervised Model with Interfered Training](https://doi.org/10.1145/3132847.3132864)|Peifeng Yin, Zhe Liu, Anbang Xu, Taiga Nakamura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tone+Analyzer+for+Online+Customer+Service:+An+Unsupervised+Model+with+Interfered+Training)|29| -|[Enhancing the Network Embedding Quality with Structural Similarity](https://doi.org/10.1145/3132847.3132900)|Tianshu Lyu, Yuan Zhang, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+the+Network+Embedding+Quality+with+Structural+Similarity)|28| -|[Efficient Computation of Subspace Skyline over Categorical Domains](https://doi.org/10.1145/3132847.3133012)|Md Farhadur Rahman, Abolfazl Asudeh, Nick Koudas, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Subspace+Skyline+over+Categorical+Domains)|28| -|[ANS-Based Index Compression](https://doi.org/10.1145/3132847.3132888)|Alistair Moffat, Matthias Petri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ANS-Based+Index+Compression)|28| -|[Highly Efficient Mining of Overlapping Clusters in Signed Weighted Networks](https://doi.org/10.1145/3132847.3133004)|TuanAnh Hoang, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Highly+Efficient+Mining+of+Overlapping+Clusters+in+Signed+Weighted+Networks)|28| -|[Length Adaptive Recurrent Model for Text Classification](https://doi.org/10.1145/3132847.3132947)|Zhengjie Huang, Zi Ye, Shuangyin Li, Rong Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Length+Adaptive+Recurrent+Model+for+Text+Classification)|28| -|[FM-Hawkes: A Hawkes Process Based Approach for Modeling Online Activity Correlations](https://doi.org/10.1145/3132847.3132883)|Sha Li, Xiaofeng Gao, Weiming Bao, Guihai Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FM-Hawkes:+A+Hawkes+Process+Based+Approach+for+Modeling+Online+Activity+Correlations)|28| -|[Fine-grained Patient Similarity Measuring using Deep Metric Learning](https://doi.org/10.1145/3132847.3133022)|Jiazhi Ni, Jie Liu, Chenxin Zhang, Dan Ye, Zhirou Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fine-grained+Patient+Similarity+Measuring+using+Deep+Metric+Learning)|28| -|[Partitioning Orders in Online Shopping Services](https://doi.org/10.1145/3132847.3132903)|Sreenivas Gollapudi, Ravi Kumar, Debmalya Panigrahi, Rina Panigrahy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Partitioning+Orders+in+Online+Shopping+Services)|28| -|[Returning is Believing: Optimizing Long-term User Engagement in Recommender Systems](https://doi.org/10.1145/3132847.3133025)|Qingyun Wu, Hongning Wang, Liangjie Hong, Yue Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Returning+is+Believing:+Optimizing+Long-term+User+Engagement+in+Recommender+Systems)|28| -|[A Comparison of Nuggets and Clusters for Evaluating Timeline Summaries](https://doi.org/10.1145/3132847.3133000)|Gaurav Baruah, Richard McCreadie, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparison+of+Nuggets+and+Clusters+for+Evaluating+Timeline+Summaries)|27| -|[Communication-Efficient Distributed Skyline Computation](https://doi.org/10.1145/3132847.3132927)|Haoyu Zhang, Qin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Communication-Efficient+Distributed+Skyline+Computation)|27| -|[GPU-Accelerated Graph Clustering via Parallel Label Propagation](https://doi.org/10.1145/3132847.3132960)|Yusuke Kozawa, Toshiyuki Amagasa, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPU-Accelerated+Graph+Clustering+via+Parallel+Label+Propagation)|27| -|[Beyond Success Rate: Utility as a Search Quality Metric for Online Experiments](https://doi.org/10.1145/3132847.3132850)|Widad Machmouchi, Ahmed Hassan Awadallah, Imed Zitouni, Georg Buscher||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+Success+Rate:+Utility+as+a+Search+Quality+Metric+for+Online+Experiments)|27| -|[Growing Story Forest Online from Massive Breaking News](https://doi.org/10.1145/3132847.3132852)|Bang Liu, Di Niu, Kunfeng Lai, Linglong Kong, Yu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Growing+Story+Forest+Online+from+Massive+Breaking+News)|27| -|[Smart Infrastructure Maintenance Using Incremental Tensor Analysis: Extended Abstract](https://doi.org/10.1145/3132847.3132851)|Nguyen Lu Dang Khoa, Ali Anaissi, Yang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Smart+Infrastructure+Maintenance+Using+Incremental+Tensor+Analysis:+Extended+Abstract)|27| -|[Data Driven Chiller Plant Energy Optimization with Domain Knowledge](https://doi.org/10.1145/3132847.3132860)|Hoang Dung Vu, KokSoon Chai, Bryan D. Keating, Nurislam Tursynbek, Boyan Xu, Kaige Yang, Xiaoyan Yang, Zhenjie Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Driven+Chiller+Plant+Energy+Optimization+with+Domain+Knowledge)|27| -|[Unsupervised Concept Categorization and Extraction from Scientific Document Titles](https://doi.org/10.1145/3132847.3133023)|Adit Krishnan, Aravind Sankar, Shi Zhi, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Concept+Categorization+and+Extraction+from+Scientific+Document+Titles)|27| -|[Accurate Sentence Matching with Hybrid Siamese Networks](https://doi.org/10.1145/3132847.3133156)|Massimo Nicosia, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accurate+Sentence+Matching+with+Hybrid+Siamese+Networks)|27| -|[A Scalable Graph-Coarsening Based Index for Dynamic Graph Databases](https://doi.org/10.1145/3132847.3133003)|Akshay Kansal, Francesca Spezzano||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Scalable+Graph-Coarsening+Based+Index+for+Dynamic+Graph+Databases)|26| -|[Finding Periodic Discrete Events in Noisy Streams](https://doi.org/10.1145/3132847.3132981)|Abhirup Ghosh, Christopher Lucas, Rik Sarkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+Periodic+Discrete+Events+in+Noisy+Streams)|26| -|[Selective Value Coupling Learning for Detecting Outliers in High-Dimensional Categorical Data](https://doi.org/10.1145/3132847.3132994)|Guansong Pang, Hongzuo Xu, Longbing Cao, Wentao Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selective+Value+Coupling+Learning+for+Detecting+Outliers+in+High-Dimensional+Categorical+Data)|26| -|[A Fast Trajectory Outlier Detection Approach via Driving Behavior Modeling](https://doi.org/10.1145/3132847.3132933)|Hao Wu, Weiwei Sun, Baihua Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fast+Trajectory+Outlier+Detection+Approach+via+Driving+Behavior+Modeling)|26| -|[Modeling Student Learning Styles in MOOCs](https://doi.org/10.1145/3132847.3132965)|Yuling Shi, Zhiyong Peng, Hongning Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Student+Learning+Styles+in+MOOCs)|26| -|[CNN-IETS: A CNN-based Probabilistic Approach for Information Extraction by Text Segmentation](https://doi.org/10.1145/3132847.3132962)|Meng Hu, Zhixu Li, Yongxin Shen, An Liu, Guanfeng Liu, Kai Zheng, Lei Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CNN-IETS:+A+CNN-based+Probabilistic+Approach+for+Information+Extraction+by+Text+Segmentation)|26| -|[DiagTree: Diagnostic Tree for Differential Diagnosis](https://doi.org/10.1145/3132847.3132924)|Yejin Kim, Jingyun Choi, Yosep Chong, Xiaoqian Jiang, Hwanjo Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DiagTree:+Diagnostic+Tree+for+Differential+Diagnosis)|26| -|[Representation Learning of Large-Scale Knowledge Graphs via Entity Feature Combinations](https://doi.org/10.1145/3132847.3132961)|Zhen Tan, Xiang Zhao, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Representation+Learning+of+Large-Scale+Knowledge+Graphs+via+Entity+Feature+Combinations)|26| -|[Estimating Event Focus Time Using Neural Word Embeddings](https://doi.org/10.1145/3132847.3133131)|Supratim Das, Arunav Mishra, Klaus Berberich, Vinay Setty||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+Event+Focus+Time+Using+Neural+Word+Embeddings)|26| -|[Task Embeddings: Learning Query Embeddings using Task Context](https://doi.org/10.1145/3132847.3133098)|Rishabh Mehrotra, Emine Yilmaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Task+Embeddings:+Learning+Query+Embeddings+using+Task+Context)|26| -|[J-REED: Joint Relation Extraction and Entity Disambiguation](https://doi.org/10.1145/3132847.3133090)|Dat Ba Nguyen, Martin Theobald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=J-REED:+Joint+Relation+Extraction+and+Entity+Disambiguation)|26| -|[Destination-aware Task Assignment in Spatial Crowdsourcing](https://doi.org/10.1145/3132847.3132894)|Yan Zhao, Yang Li, Yu Wang, Han Su, Kai Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Destination-aware+Task+Assignment+in+Spatial+Crowdsourcing)|25| -|[Select Your Questions Wisely: For Entity Resolution With Crowd Errors](https://doi.org/10.1145/3132847.3132876)|Vijaya Krishna Yalavarthi, Xiangyu Ke, Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Select+Your+Questions+Wisely:+For+Entity+Resolution+With+Crowd+Errors)|25| -|[Multi-Label Feature Selection using Correlation Information](https://doi.org/10.1145/3132847.3132858)|Ali Braytee, Wei Liu, Daniel R. Catchpoole, Paul J. Kennedy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Label+Feature+Selection+using+Correlation+Information)|25| -|[Interactive Spatial Keyword Querying with Semantics](https://doi.org/10.1145/3132847.3132969)|Jiabao Sun, Jiajie Xu, Kai Zheng, Chengfei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Spatial+Keyword+Querying+with+Semantics)|25| -|[From Query-By-Keyword to Query-By-Example: LinkedIn Talent Search Approach](https://doi.org/10.1145/3132847.3132869)|Viet HaThuc, Yan Yan, Xianren Wu, Vijay Dialani, Abhishek Gupta, Shakti Sinha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Query-By-Keyword+to+Query-By-Example:+LinkedIn+Talent+Search+Approach)|25| -|[Language Modeling by Clustering with Word Embeddings for Text Readability Assessment](https://doi.org/10.1145/3132847.3133104)|Miriam Cha, Youngjune Gwon, H. T. Kung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Language+Modeling+by+Clustering+with+Word+Embeddings+for+Text+Readability+Assessment)|25| -|[Hyper Questions: Unsupervised Targeting of a Few Experts in Crowdsourcing](https://doi.org/10.1145/3132847.3132971)|Jiyi Li, Yukino Baba, Hisashi Kashima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hyper+Questions:+Unsupervised+Targeting+of+a+Few+Experts+in+Crowdsourcing)|24| -|[Privacy Aware Temporal Profiling of Emails in Distributed Setup](https://doi.org/10.1145/3132847.3132970)|Sutapa Mondal, Manish Shukla, Sachin Lodha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy+Aware+Temporal+Profiling+of+Emails+in+Distributed+Setup)|24| -|[Latency Reduction via Decision Tree Based Query Construction](https://doi.org/10.1145/3132847.3132865)|Aman Grover, Dhruv Arya, Ganesh Venkataraman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latency+Reduction+via+Decision+Tree+Based+Query+Construction)|24| -|[Relaxing Graph Pattern Matching With Explanations](https://doi.org/10.1145/3132847.3132992)|Jia Li, Yang Cao, Shuai Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relaxing+Graph+Pattern+Matching+With+Explanations)|24| -|[Bringing Salary Transparency to the World: Computing Robust Compensation Insights via LinkedIn Salary](https://doi.org/10.1145/3132847.3132863)|Krishnaram Kenthapadi, Stuart Ambler, Liang Zhang, Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bringing+Salary+Transparency+to+the+World:+Computing+Robust+Compensation+Insights+via+LinkedIn+Salary)|23| -|[Covering the Optimal Time Window Over Temporal Data](https://doi.org/10.1145/3132847.3132935)|Bin Cao, Chenyu Hou, Jing Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Covering+the+Optimal+Time+Window+Over+Temporal+Data)|23| -|[Efficient Discovery of Abnormal Event Sequences in Enterprise Security Systems](https://doi.org/10.1145/3132847.3132854)|Boxiang Dong, Zhengzhang Chen, Wendy Hui Wang, LuAn Tang, Kai Zhang, Ying Lin, Zhichun Li, Haifeng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Discovery+of+Abnormal+Event+Sequences+in+Enterprise+Security+Systems)|23| -|[Budgeted Task Scheduling for Crowdsourced Knowledge Acquisition](https://doi.org/10.1145/3132847.3133002)|Tao Han, Hailong Sun, Yangqiu Song, Zizhe Wang, Xudong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Budgeted+Task+Scheduling+for+Crowdsourced+Knowledge+Acquisition)|23| -|[PMS: an Effective Approximation Approach for Distributed Large-scale Graph Data Processing and Mining](https://doi.org/10.1145/3132847.3133087)|Yingjie Cao, Yangyang Zhang, Jianxin Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PMS:+an+Effective+Approximation+Approach+for+Distributed+Large-scale+Graph+Data+Processing+and+Mining)|23| -|[Analyzing Mathematical Content to Detect Academic Plagiarism](https://doi.org/10.1145/3132847.3133144)|Norman Meuschke, Moritz Schubotz, Felix Hamborg, Tomás Skopal, Bela Gipp||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Mathematical+Content+to+Detect+Academic+Plagiarism)|23| -|[SemFacet: Making Hard Faceted Search Easier](https://doi.org/10.1145/3132847.3133192)|Evgeny Kharlamov, Luca Giacomelli, Evgeny Sherkhonov, Bernardo Cuenca Grau, Egor V. Kostylev, Ian Horrocks||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemFacet:+Making+Hard+Faceted+Search+Easier)|23| -|[A Large Scale Prediction Engine for App Install Clicks and Conversions](https://doi.org/10.1145/3132847.3132868)|Narayan Bhamidipati, Ravi Kant, Shaunak Mishra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Large+Scale+Prediction+Engine+for+App+Install+Clicks+and+Conversions)|22| -|[Scaling Probabilistic Temporal Query Evaluation](https://doi.org/10.1145/3132847.3133038)|Melisachew Wudage Chekol||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+Probabilistic+Temporal+Query+Evaluation)|22| -|[BoostVHT: Boosting Distributed Streaming Decision Trees](https://doi.org/10.1145/3132847.3132974)|Theodore Vasiloudis, Foteini Beligianni, Gianmarco De Francisci Morales||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BoostVHT:+Boosting+Distributed+Streaming+Decision+Trees)|22| -|[Minimizing Dependence between Graphs](https://doi.org/10.1145/3132847.3132931)|Yu Rong, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Minimizing+Dependence+between+Graphs)|22| -|[Hybrid MemNet for Extractive Summarization](https://doi.org/10.1145/3132847.3133127)|Abhishek Kumar Singh, Manish Gupta, Vasudeva Varma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+MemNet+for+Extractive+Summarization)|22| -|[A New Approach to Compute CNNs for Extremely Large Images](https://doi.org/10.1145/3132847.3132872)|Sai Wu, Mengdan Zhang, Gang Chen, Ke Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+New+Approach+to+Compute+CNNs+for+Extremely+Large+Images)|21| -|[QLever: A Query Engine for Efficient SPARQL+Text Search](https://doi.org/10.1145/3132847.3132921)|Hannah Bast, Björn Buchhold||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QLever:+A+Query+Engine+for+Efficient+SPARQL+Text+Search)|21| -|[iFACT: An Interactive Framework to Assess Claims from Tweets](https://doi.org/10.1145/3132847.3132995)|WeeYong Lim, MongLi Lee, Wynne Hsu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iFACT:+An+Interactive+Framework+to+Assess+Claims+from+Tweets)|21| -|[An Empirical Analysis of Pruning Techniques: Performance, Retrievability and Bias](https://doi.org/10.1145/3132847.3133151)|RueyCheng Chen, Leif Azzopardi, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Analysis+of+Pruning+Techniques:+Performance,+Retrievability+and+Bias)|21| -|[On Discovering the Number of Document Topics via Conceptual Latent Space](https://doi.org/10.1145/3132847.3133086)|Nghia DuongTrung, Lars SchmidtThieme||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Discovering+the+Number+of+Document+Topics+via+Conceptual+Latent+Space)|21| -|[Modeling Menu Bundle Designs of Crowdfunding Projects](https://doi.org/10.1145/3132847.3132958)|Yusan Lin, Peifeng Yin, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Menu+Bundle+Designs+of+Crowdfunding+Projects)|20| -|[SOPER: Discovering the Influence of Fashion and the Many Faces of User from Session Logs using Stick Breaking Process](https://doi.org/10.1145/3132847.3133007)|Lucky Dhakad, Mrinal Kanti Das, Chiranjib Bhattacharyya, Samik Datta, Mihir Kale, Vivek Mehta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SOPER:+Discovering+the+Influence+of+Fashion+and+the+Many+Faces+of+User+from+Session+Logs+using+Stick+Breaking+Process)|20| -|[Structural-fitting Word Vectors to Linguistic Ontology for Semantic Relatedness Measurement](https://doi.org/10.1145/3132847.3133152)|YangYin Lee, TingYu Yen, HenHsen Huang, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural-fitting+Word+Vectors+to+Linguistic+Ontology+for+Semantic+Relatedness+Measurement)|20| -|[Construction of a National Scale ENF Map using Online Multimedia Data](https://doi.org/10.1145/3132847.3132982)|Hyunsoo Kim, Youngbae Jeon, Ji Won Yoon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Construction+of+a+National+Scale+ENF+Map+using+Online+Multimedia+Data)|19| -|[Augmented Variational Autoencoders for Collaborative Filtering with Auxiliary Information](https://doi.org/10.1145/3132847.3132972)|Wonsung Lee, Kyungwoo Song, IlChul Moon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Augmented+Variational+Autoencoders+for+Collaborative+Filtering+with+Auxiliary+Information)|19| -|[Semantic Rules for Machine Diagnostics: Execution and Management](https://doi.org/10.1145/3132847.3133159)|Evgeny Kharlamov, Ognjen Savkovic, Guohui Xiao, Rafael Peñaloza, Gulnar Mehdi, Mikhail Roshchin, Ian Horrocks||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Rules+for+Machine+Diagnostics:+Execution+and+Management)|19| -|[A Robust Named-Entity Recognition System Using Syllable Bigram Embedding with Eojeol Prefix Information](https://doi.org/10.1145/3132847.3133105)|Sunjae Kwon, Youngjoong Ko, Jungyun Seo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Robust+Named-Entity+Recognition+System+Using+Syllable+Bigram+Embedding+with+Eojeol+Prefix+Information)|19| -|[Learning Temporal Ambiguity in Web Search Queries](https://doi.org/10.1145/3132847.3133129)|Behrooz Mansouri, Mohammad Sadegh Zahedi, Maseud Rahgozar, Farhad Oroumchian, Ricardo Campos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Temporal+Ambiguity+in+Web+Search+Queries)|19| -|[Hierarchical RNN with Static Sentence-Level Attention for Text-Based Speaker Change Detection](https://doi.org/10.1145/3132847.3133110)|Zhao Meng, Lili Mou, Zhi Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+RNN+with+Static+Sentence-Level+Attention+for+Text-Based+Speaker+Change+Detection)|19| -|[Predicting Short-Term Public Transport Demand via Inhomogeneous Poisson Processes](https://doi.org/10.1145/3132847.3133058)|Aditya Krishna Menon, Young Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Short-Term+Public+Transport+Demand+via+Inhomogeneous+Poisson+Processes)|19| -|[Bayesian Heteroscedastic Matrix Factorization for Conversion Rate Prediction](https://doi.org/10.1145/3132847.3133076)|Hongxia Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bayesian+Heteroscedastic+Matrix+Factorization+for+Conversion+Rate+Prediction)|19| -|[Low-Rank Matrix Completion over Finite Abelian Group Algebras for Context-Aware Recommendation](https://doi.org/10.1145/3132847.3133057)|ChiaAn Yu, TakShing Chan, YiHsuan Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Low-Rank+Matrix+Completion+over+Finite+Abelian+Group+Algebras+for+Context-Aware+Recommendation)|19| -|[Fast and Accurate Time Series Classification with WEASEL](https://doi.org/10.1145/3132847.3132980)|Patrick Schäfer, Ulf Leser||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+Accurate+Time+Series+Classification+with+WEASEL)|18| -|[Forecasting Ad-Impressions on Online Retail Websites using Non-homogeneous Hawkes Processes](https://doi.org/10.1145/3132847.3133017)|Krunal Parmar, Samuel Bushi, Sourangshu Bhattacharya, Surender Kumar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Ad-Impressions+on+Online+Retail+Websites+using+Non-homogeneous+Hawkes+Processes)|18| -|[Deep Learning Based Forecasting of Critical Infrastructure Data](https://doi.org/10.1145/3132847.3133031)|Zahra Zohrevand, Uwe Glässer, Mohammad A. Tayebi, Hamed Yaghoubi Shahir, Mehdi Shirmaleki, Amir Yaghoubi Shahir||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Learning+Based+Forecasting+of+Critical+Infrastructure+Data)|18| -|[A Neural Candidate-Selector Architecture for Automatic Structured Clinical Text Annotation](https://doi.org/10.1145/3132847.3132989)|Gaurav Singh, Iain James Marshall, James Thomas, John ShaweTaylor, Byron C. Wallace||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Candidate-Selector+Architecture+for+Automatic+Structured+Clinical+Text+Annotation)|18| -|[Profiling DRDoS Attacks with Data Analytics Pipeline](https://doi.org/10.1145/3132847.3133155)|Laure BertiÉquille, Yury Zhauniarovich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profiling+DRDoS+Attacks+with+Data+Analytics+Pipeline)|18| -|[Text Coherence Analysis Based on Deep Neural Network](https://doi.org/10.1145/3132847.3133047)|Baiyun Cui, Yingming Li, Yaqing Zhang, Zhongfei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+Coherence+Analysis+Based+on+Deep+Neural+Network)|18| -|[Inferring Appliance Energy Usage from Smart Meters using Fully Convolutional Encoder Decoder Networks](https://doi.org/10.1145/3132847.3133146)|Felan Carlo C. Garcia, Erees Queen B. Macabebe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Appliance+Energy+Usage+from+Smart+Meters+using+Fully+Convolutional+Encoder+Decoder+Networks)|18| -|[An Improved Test Collection and Baselines for Bibliographic Citation Recommendation](https://doi.org/10.1145/3132847.3133085)|Dwaipayan Roy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Improved+Test+Collection+and+Baselines+for+Bibliographic+Citation+Recommendation)|18| -|[Revealing the Hidden Links in Content Networks: An Application to Event Discovery](https://doi.org/10.1145/3132847.3133148)|Antonia Saravanou, Ioannis Katakis, George Valkanas, Vana Kalogeraki, Dimitrios Gunopulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Revealing+the+Hidden+Links+in+Content+Networks:+An+Application+to+Event+Discovery)|18| -|[Denoising Clinical Notes for Medical Literature Retrieval with Convolutional Neural Model](https://doi.org/10.1145/3132847.3133149)|Luca Soldaini, Andrew Yates, Nazli Goharian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Denoising+Clinical+Notes+for+Medical+Literature+Retrieval+with+Convolutional+Neural+Model)|18| -|[How Safe is Your (Taxi) Driver?](https://doi.org/10.1145/3132847.3133068)|Rade Stanojevic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+Safe+is+Your+(Taxi)+Driver?)|18| -|[SemDia: Semantic Rule-Based Equipment Diagnostics Tool](https://doi.org/10.1145/3132847.3133191)|Gulnar Mehdi, Evgeny Kharlamov, Ognjen Savkovic, Guohui Xiao, Elem Güzel Kalayci, Sebastian Brandt, Ian Horrocks, Mikhail Roshchin, Thomas A. Runkler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemDia:+Semantic+Rule-Based+Equipment+Diagnostics+Tool)|18| -|[Probabilistic Skyline on Incomplete Data](https://doi.org/10.1145/3132847.3132930)|Kaiqi Zhang, Hong Gao, Xixian Han, Zhipeng Cai, Jianzhong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Skyline+on+Incomplete+Data)|17| -|[A Compare-Aggregate Model with Dynamic-Clip Attention for Answer Selection](https://doi.org/10.1145/3132847.3133089)|Weijie Bian, Si Li, Zhao Yang, Guang Chen, Zhiqing Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Compare-Aggregate+Model+with+Dynamic-Clip+Attention+for+Answer+Selection)|17| -|[Unsupervised Matrix-valued Kernel Learning For One Class Classification](https://doi.org/10.1145/3132847.3133114)|Shaobo Dang, Xiongcai Cai, Yang Wang, Jianjia Zhang, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Matrix-valued+Kernel+Learning+For+One+Class+Classification)|17| -|[Tracking the Impact of Fact Deletions on Knowledge Graph Queries using Provenance Polynomials](https://doi.org/10.1145/3132847.3133118)|Garima Gaur, Srikanta J. Bedathur, Arnab Bhattacharya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+the+Impact+of+Fact+Deletions+on+Knowledge+Graph+Queries+using+Provenance+Polynomials)|17| -|[IDAE: Imputation-boosted Denoising Autoencoder for Collaborative Filtering](https://doi.org/10.1145/3132847.3133158)|Jaewoong Lee, Jongwuk Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=IDAE:+Imputation-boosted+Denoising+Autoencoder+for+Collaborative+Filtering)|17| -|[Alternating Pointwise-Pairwise Learning for Personalized Item Ranking](https://doi.org/10.1145/3132847.3133100)|Yu Lei, Wenjie Li, Ziyu Lu, Miao Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Alternating+Pointwise-Pairwise+Learning+for+Personalized+Item+Ranking)|17| -|[Enhancing Knowledge Graph Completion By Embedding Correlations](https://doi.org/10.1145/3132847.3133143)|Soumajit Pal, Jacopo Urbani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+Knowledge+Graph+Completion+By+Embedding+Correlations)|17| -|[TATHYA: A Multi-Classifier System for Detecting Check-Worthy Statements in Political Debates](https://doi.org/10.1145/3132847.3133150)|Ayush Patwari, Dan Goldwasser, Saurabh Bagchi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TATHYA:+A+Multi-Classifier+System+for+Detecting+Check-Worthy+Statements+in+Political+Debates)|17| -|[Recipe Popularity Prediction with Deep Visual-Semantic Fusion](https://doi.org/10.1145/3132847.3133137)|Satoshi Sanjo, Marie Katsurai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recipe+Popularity+Prediction+with+Deep+Visual-Semantic+Fusion)|17| -|[SimMeme: Semantic-Based Meme Search](https://doi.org/10.1145/3132847.3133174)|Maya Ekron, Tova Milo, Brit Youngmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SimMeme:+Semantic-Based+Meme+Search)|17| -|[Storyfinder: Personalized Knowledge Base Construction and Management by Browsing the Web](https://doi.org/10.1145/3132847.3133186)|Steffen Remus, Manuel Kaufmann, Kathrin Ballweg, Tatiana von Landesberger, Chris Biemann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Storyfinder:+Personalized+Knowledge+Base+Construction+and+Management+by+Browsing+the+Web)|17| -|[StreamingCube: A Unified Framework for Stream Processing and OLAP Analysis](https://doi.org/10.1145/3132847.3133165)|Salman Ahmed Shaikh, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=StreamingCube:+A+Unified+Framework+for+Stream+Processing+and+OLAP+Analysis)|17| -|[Detecting Social Bots by Jointly Modeling Deep Behavior and Content Information](https://doi.org/10.1145/3132847.3133050)|Chiyu Cai, Linjing Li, Daniel Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Social+Bots+by+Jointly+Modeling+Deep+Behavior+and+Content+Information)|16| -|[Compact Multiple-Instance Learning](https://doi.org/10.1145/3132847.3133070)|Jing Chai, Weiwei Liu, Ivor W. Tsang, XiaoBo Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+Multiple-Instance+Learning)|16| -|[A Communication Efficient Parallel DBSCAN Algorithm based on Parameter Server](https://doi.org/10.1145/3132847.3133112)|Xu Hu, Jun Huang, Minghui Qiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Communication+Efficient+Parallel+DBSCAN+Algorithm+based+on+Parameter+Server)|16| -|[Online Expectation-Maximization for Click Models](https://doi.org/10.1145/3132847.3133053)|Ilya Markov, Alexey Borisov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Expectation-Maximization+for+Click+Models)|16| -|[Learning Entity Type Embeddings for Knowledge Graph Completion](https://doi.org/10.1145/3132847.3133095)|Changsung Moon, Paul Jones, Nagiza F. Samatova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Entity+Type+Embeddings+for+Knowledge+Graph+Completion)|16| -|[Paraphrastic Fusion for Abstractive Multi-Sentence Compression Generation](https://doi.org/10.1145/3132847.3133106)|Mir Tafseer Nayeem, Yllias Chali||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Paraphrastic+Fusion+for+Abstractive+Multi-Sentence+Compression+Generation)|16| -|[Robust Heterogeneous Discriminative Analysis for Single Sample Per Person Face Recognition](https://doi.org/10.1145/3132847.3133096)|Meng Pang, Yiuming Cheung, Binghui Wang, Risheng Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Heterogeneous+Discriminative+Analysis+for+Single+Sample+Per+Person+Face+Recognition)|16| -|[A Way to Boost Semi-NMF for Document Clustering](https://doi.org/10.1145/3132847.3133157)|Aghiles Salah, Melissa Ailem, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Way+to+Boost+Semi-NMF+for+Document+Clustering)|16| -|[SIMD-Based Multiple Sets Intersection with Dual-Scale Search Algorithm](https://doi.org/10.1145/3132847.3133082)|Xingshen Song, Yuexiang Yang, Xiaoyong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SIMD-Based+Multiple+Sets+Intersection+with+Dual-Scale+Search+Algorithm)|16| -|[Soft Seeded SSL Graphs for Unsupervised Semantic Similarity-based Retrieval](https://doi.org/10.1145/3132847.3133162)|Avikalp Srivastava, Madhav Datt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Soft+Seeded+SSL+Graphs+for+Unsupervised+Semantic+Similarity-based+Retrieval)|16| -|[A Study of Feature Construction for Text-based Forecasting of Time Series Variables](https://doi.org/10.1145/3132847.3133109)|Yiren Wang, Dominic Seyler, Shubhra Kanti Karmaker Santu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Feature+Construction+for+Text-based+Forecasting+of+Time+Series+Variables)|16| -|[Unsupervised Feature Selection with Heterogeneous Side Information](https://doi.org/10.1145/3132847.3133055)|Xiaokai Wei, Bokai Cao, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+with+Heterogeneous+Side+Information)|16| -|[Chinese Named Entity Recognition with Character-Word Mixed Embedding](https://doi.org/10.1145/3132847.3133088)|Shijia E, Yang Xiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Chinese+Named+Entity+Recognition+with+Character-Word+Mixed+Embedding)|15| -|[Collaborative Topic Regression with Denoising AutoEncoder for Content and Community Co-Representation](https://doi.org/10.1145/3132847.3133128)|Trong T. Nguyen, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Topic+Regression+with+Denoising+AutoEncoder+for+Content+and+Community+Co-Representation)|15| -|[Improving the Gain of Visual Perceptual Behaviour on Topic Modeling for Text Recommendation](https://doi.org/10.1145/3132847.3133122)|Cheng Wang, Yujuan Fang, Zheng Tan, Yuan He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+the+Gain+of+Visual+Perceptual+Behaviour+on+Topic+Modeling+for+Text+Recommendation)|15| -|[Attentive Graph-based Recursive Neural Network for Collective Vertex Classification](https://doi.org/10.1145/3132847.3133081)|Qiongkai Xu, Qing Wang, Chenchen Xu, Lizhen Qu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attentive+Graph-based+Recursive+Neural+Network+for+Collective+Vertex+Classification)|15| -|[Metacrate: Organize and Analyze Millions of Data Profiles](https://doi.org/10.1145/3132847.3133180)|Sebastian Kruse, David Hahn, Marius Walter, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Metacrate:+Organize+and+Analyze+Millions+of+Data+Profiles)|15| -|[AliMe Assist : An Intelligent Assistant for Creating an Innovative E-commerce Experience](https://doi.org/10.1145/3132847.3133169)|FengLin Li, Minghui Qiu, Haiqing Chen, Xiongwei Wang, Xing Gao, Jun Huang, Juwei Ren, Zhongzhou Zhao, Weipeng Zhao, Lei Wang, Guwei Jin, Wei Chu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AliMe+Assist+:+An+Intelligent+Assistant+for+Creating+an+Innovative+E-commerce+Experience)|15| -|[Hierarchical Module Classification in Mixed-initiative Conversational Agent System](https://doi.org/10.1145/3132847.3133185)|Sia Xin Yun Suzanna, Anthony Lianjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+Module+Classification+in+Mixed-initiative+Conversational+Agent+System)|15| -|[Intent Based Relevance Estimation from Click Logs](https://doi.org/10.1145/3132847.3132870)|Prakash Mandayam Comar, Srinivasan H. Sengamedu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intent+Based+Relevance+Estimation+from+Click+Logs)|14| -|[Learning Biological Sequence Types Using the Literature](https://doi.org/10.1145/3132847.3133051)|Mohamed Reda Bouadjenek, Karin Verspoor, Justin Zobel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Biological+Sequence+Types+Using+the+Literature)|14| -|[A Framework for Estimating Execution Times of IO Traces on SSDs](https://doi.org/10.1145/3132847.3133115)|Yoonsuk Kang, YongYeon Jo, Jaehyuk Cha, Wan D. Bae, SangWook Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Framework+for+Estimating+Execution+Times+of+IO+Traces+on+SSDs)|14| -|[Exploiting User Consuming Behavior for Effective Item Tagging](https://doi.org/10.1145/3132847.3133071)|Shen Liu, Hongyan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+User+Consuming+Behavior+for+Effective+Item+Tagging)|14| -|[Boolean Matrix Decomposition by Formal Concept Sampling](https://doi.org/10.1145/3132847.3133054)|Petr Osicka, Martin Trnecka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Boolean+Matrix+Decomposition+by+Formal+Concept+Sampling)|14| -|[Knowledge-based Question Answering by Jointly Generating, Copying and Paraphrasing](https://doi.org/10.1145/3132847.3133064)|Shuguang Zhu, Xiang Cheng, Sen Su, Shuang Lang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge-based+Question+Answering+by+Jointly+Generating,+Copying+and+Paraphrasing)|14| -|[SemVis: Semantic Visualization for Interactive Topical Analysis](https://doi.org/10.1145/3132847.3133181)|Tuan M. V. Le, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemVis:+Semantic+Visualization+for+Interactive+Topical+Analysis)|14| -|[Privacy of Hidden Profiles: Utility-Preserving Profile Removal in Online Forums](https://doi.org/10.1145/3132847.3133140)|Sedigheh Eslami, Asia J. Biega, Rishiraj Saha Roy, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy+of+Hidden+Profiles:+Utility-Preserving+Profile+Removal+in+Online+Forums)|13| -|[QoS-Aware Scheduling of Heterogeneous Servers for Inference in Deep Neural Networks](https://doi.org/10.1145/3132847.3133045)|Zhou Fang, Tong Yu, Ole J. Mengshoel, Rajesh K. Gupta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QoS-Aware+Scheduling+of+Heterogeneous+Servers+for+Inference+in+Deep+Neural+Networks)|13| -|[An Ad CTR Prediction Method Based on Feature Learning of Deep and Shallow Layers](https://doi.org/10.1145/3132847.3133072)|Zai Huang, Zhen Pan, Qi Liu, Bai Long, Haiping Ma, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Ad+CTR+Prediction+Method+Based+on+Feature+Learning+of+Deep+and+Shallow+Layers)|13| -|[Deep Neural Networks for News Recommendations](https://doi.org/10.1145/3132847.3133154)|Keunchan Park, Jisoo Lee, Jaeho Choi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Neural+Networks+for+News+Recommendations)|13| -|[Integrating the Framing of Clinical Questions via PICO into the Retrieval of Medical Literature for Systematic Reviews](https://doi.org/10.1145/3132847.3133080)|Harrisen Scells, Guido Zuccon, Bevan Koopman, Anthony Deacon, Leif Azzopardi, Shlomo Geva||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Integrating+the+Framing+of+Clinical+Questions+via+PICO+into+the+Retrieval+of+Medical+Literature+for+Systematic+Reviews)|13| -|[Knowledge Graph Embedding with Triple Context](https://doi.org/10.1145/3132847.3133119)|Jun Shi, Huan Gao, Guilin Qi, Zhangquan Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge+Graph+Embedding+with+Triple+Context)|13| -|[pm-SCAN: an I/O Efficient Structural Clustering Algorithm for Large-scale Graphs](https://doi.org/10.1145/3132847.3133121)|Jung Hyuk Seo, Myoung Ho Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=pm-SCAN:+an+I/O+Efficient+Structural+Clustering+Algorithm+for+Large-scale+Graphs)|13| -|[Sentence Retrieval with Sentiment-specific Topical Anchoring for Review Summarization](https://doi.org/10.1145/3132847.3133153)|Jiaxing Tan, Alexander Kotov, Rojiar Pir Mohammadiani, Yumei Huo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentence+Retrieval+with+Sentiment-specific+Topical+Anchoring+for+Review+Summarization)|13| -|[An Empirical Study of Community Overlap: Ground-truth, Algorithmic Solutions, and Implications](https://doi.org/10.1145/3132847.3133133)|Joyce Jiyoung Whang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Study+of+Community+Overlap:+Ground-truth,+Algorithmic+Solutions,+and+Implications)|13| -|[Non-Exhaustive, Overlapping Co-Clustering](https://doi.org/10.1145/3132847.3133078)|Joyce Jiyoung Whang, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-Exhaustive,+Overlapping+Co-Clustering)|13| -|[Simulating Zero-Resource Spoken Term Discovery](https://doi.org/10.1145/3132847.3133160)|Jerome White, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simulating+Zero-Resource+Spoken+Term+Discovery)|13| -|[Common-Specific Multimodal Learning for Deep Belief Network](https://doi.org/10.1145/3132847.3133092)|Changsheng Xiang, Xiaoming Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Common-Specific+Multimodal+Learning+for+Deep+Belief+Network)|13| -|[Learning to Rank with Query-level Semi-supervised Autoencoders](https://doi.org/10.1145/3132847.3133049)|Bo Xu, Hongfei Lin, Yuan Lin, Kan Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+with+Query-level+Semi-supervised+Autoencoders)|13| -|[MultiSentiNet: A Deep Semantic Network for Multimodal Sentiment Analysis](https://doi.org/10.1145/3132847.3133142)|Nan Xu, Wenji Mao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MultiSentiNet:+A+Deep+Semantic+Network+for+Multimodal+Sentiment+Analysis)|13| -|[RATE: Overcoming Noise and Sparsity of Textual Features in Real-Time Location Estimation](https://doi.org/10.1145/3132847.3133067)|Yu Zhang, Wei Wei, Binxuan Huang, Kathleen M. Carley, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RATE:+Overcoming+Noise+and+Sparsity+of+Textual+Features+in+Real-Time+Location+Estimation)|13| -|[Public Transportation Mode Detection from Cellular Data](https://doi.org/10.1145/3132847.3133173)|Guanyao Li, ChunJie Chen, ShengYun Huang, AiJou Chou, Xiaochuan Gou, WenChih Peng, ChihWei Yi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Public+Transportation+Mode+Detection+from+Cellular+Data)|13| -|[CleanCloud: Cleaning Big Data on Cloud](https://doi.org/10.1145/3132847.3133187)|Hongzhi Wang, Xiaoou Ding, Xiangying Chen, Jianzhong Li, Hong Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CleanCloud:+Cleaning+Big+Data+on+Cloud)|13| -|[Query and Animate Multi-attribute Trajectory Data](https://doi.org/10.1145/3132847.3133178)|Jianqiu Xu, Ralf Hartmut Güting||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+and+Animate+Multi-attribute+Trajectory+Data)|13| -|[Linking News across Multiple Streams for Timeliness Analysis](https://doi.org/10.1145/3132847.3132988)|Ida Mele, Seyed Ali Bahrainian, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linking+News+across+Multiple+Streams+for+Timeliness+Analysis)|12| -|[Citation Metadata Extraction via Deep Neural Network-based Segment Sequence Labeling](https://doi.org/10.1145/3132847.3133074)|Dong An, Liangcai Gao, Zhuoren Jiang, Runtao Liu, Zhi Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Citation+Metadata+Extraction+via+Deep+Neural+Network-based+Segment+Sequence+Labeling)|12| -|[Text Embedding for Sub-Entity Ranking from User Reviews](https://doi.org/10.1145/3132847.3133066)|ChihYu Chao, YiFan Chu, HsiuWei Yang, ChuanJu Wang, MingFeng Tsai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+Embedding+for+Sub-Entity+Ranking+from+User+Reviews)|12| -|[Personalized Image Aesthetics Assessment](https://doi.org/10.1145/3132847.3133052)|Xiang Deng, Chaoran Cui, Huidi Fang, Xiushan Nie, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Image+Aesthetics+Assessment)|12| -|[Fast K-means for Large Scale Clustering](https://doi.org/10.1145/3132847.3133091)|Qinghao Hu, Jiaxiang Wu, Lu Bai, Yifan Zhang, Jian Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+K-means+for+Large+Scale+Clustering)|12| -|[Truth Discovery by Claim and Source Embedding](https://doi.org/10.1145/3132847.3133069)|Shanshan Lyu, Wentao Ouyang, Huawei Shen, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+by+Claim+and+Source+Embedding)|12| -|[Identifying Top-K Influential Nodes in Networks](https://doi.org/10.1145/3132847.3133126)|Sara Mumtaz, Xiaoyang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-K+Influential+Nodes+in+Networks)|12| -|[Semantic Annotation for Places in LBSN through Graph Embedding](https://doi.org/10.1145/3132847.3133075)|Yan Wang, Zongxu Qin, Jun Pang, Yang Zhang, Jin Xin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Annotation+for+Places+in+LBSN+through+Graph+Embedding)|12| -|[Algorithmic Bias: Do Good Systems Make Relevant Documents More Retrievable?](https://doi.org/10.1145/3132847.3133135)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Algorithmic+Bias:+Do+Good+Systems+Make+Relevant+Documents+More+Retrievable?)|12| -|[Missing Value Learning](https://doi.org/10.1145/3132847.3133094)|ZhiLin Zhao, ChangDong Wang, KunYu Lin, JianHuang Lai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Missing+Value+Learning)|12| -|[Exploring the Veracity of Online Claims with BackDrop](https://doi.org/10.1145/3132847.3133179)|Julien Leblay, Weiling Chen, Steven J. Lynden||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+Veracity+of+Online+Claims+with+BackDrop)|12| -|[Product Exploration based on Latent Visual Attributes](https://doi.org/10.1145/3132847.3133175)|Tomás Skopal, Ladislav Peska, Gregor Kovalcík, Tomás Grosup, Jakub Lokoc||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Product+Exploration+based+on+Latent+Visual+Attributes)|12| -|[Extracting Entities of Interest from Comparative Product Reviews](https://doi.org/10.1145/3132847.3133141)|Jatin Arora, Sumit Agrawal, Pawan Goyal, Sayan Pathak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Entities+of+Interest+from+Comparative+Product+Reviews)|11| -|[Efficient Fault-Tolerant Group Recommendation Using alpha-beta-core](https://doi.org/10.1145/3132847.3133130)|Danhao Ding, Hui Li, Zhipeng Huang, Nikos Mamoulis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Fault-Tolerant+Group+Recommendation+Using+alpha-beta-core)|11| -|[An Empirical Study of Embedding Features in Learning to Rank](https://doi.org/10.1145/3132847.3133138)|Faezeh Ensan, Ebrahim Bagheri, Amal Zouaq, Alexandre Kouznetsov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Study+of+Embedding+Features+in+Learning+to+Rank)|11| -|[Graph Ladder Networks for Network Classification](https://doi.org/10.1145/3132847.3133124)|Ruiqi Hu, Shirui Pan, Jing Jiang, Guodong Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+Ladder+Networks+for+Network+Classification)|11| -|[Ontology-based Graph Visualization for Summarized View](https://doi.org/10.1145/3132847.3133113)|Xin Huang, Byron Choi, Jianliang Xu, William K. Cheung, Yanchun Zhang, Jiming Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ontology-based+Graph+Visualization+for+Summarized+View)|11| -|[Ranking Rich Mobile Verticals based on Clicks and Abandonment](https://doi.org/10.1145/3132847.3133059)|Mami Kawasaki, Inho Kang, Tetsuya Sakai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Rich+Mobile+Verticals+based+on+Clicks+and+Abandonment)|11| -|[Machine Learning based Performance Modeling of Flash SSDs](https://doi.org/10.1145/3132847.3133120)|Jaehyung Kim, Jinuk Park, Sanghyun Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine+Learning+based+Performance+Modeling+of+Flash+SSDs)|11| -|[Learning Graph-based Embedding For Time-Aware Product Recommendation](https://doi.org/10.1145/3132847.3133060)|Yuqi Li, Weizheng Chen, Hongfei Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Graph-based+Embedding+For+Time-Aware+Product+Recommendation)|11| -|[A Collaborative Ranking Model for Cross-Domain Recommendations](https://doi.org/10.1145/3132847.3133107)|Dimitrios Rafailidis, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Collaborative+Ranking+Model+for+Cross-Domain+Recommendations)|11| -|[A Temporal Attentional Model for Rumor Stance Classification](https://doi.org/10.1145/3132847.3133116)|Amir Pouran Ben Veyseh, Javid Ebrahimi, Dejing Dou, Daniel Lowd||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Temporal+Attentional+Model+for+Rumor+Stance+Classification)|11| -|[SERM: A Recurrent Model for Next Location Prediction in Semantic Trajectories](https://doi.org/10.1145/3132847.3133056)|Di Yao, Chao Zhang, JianHui Huang, Jingping Bi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SERM:+A+Recurrent+Model+for+Next+Location+Prediction+in+Semantic+Trajectories)|11| -|[HyPerInsight: Data Exploration Deep Inside HyPer](https://doi.org/10.1145/3132847.3133167)|Nina C. Hubig, Linnea Passing, Maximilian E. Schüle, Dimitri Vorona, Alfons Kemper, Thomas Neumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HyPerInsight:+Data+Exploration+Deep+Inside+HyPer)|11| -|[Interactive System for Reasoning about Document Age](https://doi.org/10.1145/3132847.3133166)|Adam Jatowt, Ricardo Campos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+System+for+Reasoning+about+Document+Age)|11| -|[Interactive Analytics System for Exploring Outliers](https://doi.org/10.1145/3132847.3133189)|Mingrui Wei, Lei Cao, Chris Cormier, Hui Zheng, Elke A. Rundensteiner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Analytics+System+for+Exploring+Outliers)|11| -|[Summarizing Significant Changes in Network Traffic Using Contrast Pattern Mining](https://doi.org/10.1145/3132847.3133111)|Elaheh Alipour Chavary, Sarah M. Erfani, Christopher Leckie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Summarizing+Significant+Changes+in+Network+Traffic+Using+Contrast+Pattern+Mining)|10| -|[Geographic and Temporal Trends in Fake News Consumption During the 2016 US Presidential Election](https://doi.org/10.1145/3132847.3133147)|Adam Fourney, Miklós Z. Rácz, Gireeja Ranade, Markus Mobius, Eric Horvitz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Geographic+and+Temporal+Trends+in+Fake+News+Consumption+During+the+2016+US+Presidential+Election)|10| -|[Interest Diffusion in Heterogeneous Information Network for Personalized Item Ranking](https://doi.org/10.1145/3132847.3133061)|Mukul Gupta, Pradeep Kumar, Rajhans Mishra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest+Diffusion+in+Heterogeneous+Information+Network+for+Personalized+Item+Ranking)|10| -|[Smart City Analytics: Ensemble-Learned Prediction of Citizen Home Care](https://doi.org/10.1145/3132847.3133101)|Casper Hansen, Christian Hansen, Stephen Alstrup, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Smart+City+Analytics:+Ensemble-Learned+Prediction+of+Citizen+Home+Care)|10| -|[KIEM: A Knowledge Graph based Method to Identify Entity Morphs](https://doi.org/10.1145/3132847.3133123)|Longtao Huang, Lin Zhao, Shangwen Lv, Fangzhou Lu, Yue Zhai, Songlin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KIEM:+A+Knowledge+Graph+based+Method+to+Identify+Entity+Morphs)|10| -|[An Enhanced Topic Modeling Approach to Multiple Stance Identification](https://doi.org/10.1145/3132847.3133145)|Junjie Lin, Wenji Mao, Yuhao Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Enhanced+Topic+Modeling+Approach+to+Multiple+Stance+Identification)|10| -|[Collaborative Sequence Prediction for Sequential Recommender](https://doi.org/10.1145/3132847.3133079)|Shuzi Niu, Rongzhi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Sequence+Prediction+for+Sequential+Recommender)|10| -|[When Labels Fall Short: Property Graph Simulation via Blending of Network Structure and Vertex Attributes](https://doi.org/10.1145/3132847.3133065)|Arun V. Sathanur, Sutanay Choudhury, Cliff A. Joslyn, Sumit Purohit||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Labels+Fall+Short:+Property+Graph+Simulation+via+Blending+of+Network+Structure+and+Vertex+Attributes)|10| -|[Local Ensemble across Multiple Sources for Collaborative Filtering](https://doi.org/10.1145/3132847.3133099)|Jing Zheng, Fuzhen Zhuang, Chuan Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+Ensemble+across+Multiple+Sources+for+Collaborative+Filtering)|10| -|[Cluster-level Emotion Pattern Matching for Cross-Domain Social Emotion Classification](https://doi.org/10.1145/3132847.3133063)|Endong Zhu, Yanghui Rao, Haoran Xie, Yuwei Liu, Jian Yin, Fu Lee Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cluster-level+Emotion+Pattern+Matching+for+Cross-Domain+Social+Emotion+Classification)|10| -|[Urbanity: A System for Interactive Exploration of Urban Dynamics from Streaming Human Sensing Data](https://doi.org/10.1145/3132847.3133177)|Mengxiong Liu, Zhengchao Liu, Chao Zhang, Keyang Zhang, Quan Yuan, Tim Hanratty, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Urbanity:+A+System+for+Interactive+Exploration+of+Urban+Dynamics+from+Streaming+Human+Sensing+Data)|10| -|[An Interactive Framework for Video Surveillance Event Detection and Modeling](https://doi.org/10.1145/3132847.3133164)|Fabio Persia, Fabio Bettini, Sven Helmer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Interactive+Framework+for+Video+Surveillance+Event+Detection+and+Modeling)|10| -|[A Neural Collaborative Filtering Model with Interaction-based Neighborhood](https://doi.org/10.1145/3132847.3133083)|Ting Bai, JiRong Wen, Jun Zhang, Wayne Xin Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Collaborative+Filtering+Model+with+Interaction-based+Neighborhood)|9| -|[Analysis of Telegram, An Instant Messaging Service](https://doi.org/10.1145/3132847.3133132)|Arash Dargahi Nobari, Negar Reshadatmand, Mahmood Neshati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+of+Telegram,+An+Instant+Messaging+Service)|9| +|[Neural Attentive Session-based Recommendation](https://doi.org/10.1145/3132847.3132926)|Jing Li, Pengjie Ren, Zhumin Chen, Zhaochun Ren, Tao Lian, Jun Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Neural+Attentive+Session-based+Recommendation)|527| +|[CSI: A Hybrid Deep Model for Fake News Detection](https://doi.org/10.1145/3132847.3132877)|Natali Ruchansky, Sungyong Seo, Yan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CSI:+A+Hybrid+Deep+Model+for+Fake+News+Detection)|327| +|[HIN2Vec: Explore Meta-paths in Heterogeneous Information Networks for Representation Learning](https://doi.org/10.1145/3132847.3132953)|TaoYang Fu, WangChien Lee, Zhen Lei||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HIN2Vec:+Explore+Meta-paths+in+Heterogeneous+Information+Networks+for+Representation+Learning)|269| +|[Learning Community Embedding with Community Detection and Node Embedding on Graphs](https://doi.org/10.1145/3132847.3132925)|Sandro Cavallari, Vincent W. Zheng, Hongyun Cai, Kevin ChenChuan Chang, Erik Cambria||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Community+Embedding+with+Community+Detection+and+Node+Embedding+on+Graphs)|183| +|[FA*IR: A Fair Top-k Ranking Algorithm](https://doi.org/10.1145/3132847.3132938)|Meike Zehlike, Francesco Bonchi, Carlos Castillo, Sara Hajian, Mohamed Megahed, Ricardo BaezaYates||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FA*IR:+A+Fair+Top-k+Ranking+Algorithm)|178| +|[Attributed Network Embedding for Learning in a Dynamic Environment](https://doi.org/10.1145/3132847.3132919)|Jundong Li, Harsh Dani, Xia Hu, Jiliang Tang, Yi Chang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attributed+Network+Embedding+for+Learning+in+a+Dynamic+Environment)|168| +|[Joint Representation Learning for Top-N Recommendation with Heterogeneous Information Sources](https://doi.org/10.1145/3132847.3132892)|Yongfeng Zhang, Qingyao Ai, Xu Chen, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Representation+Learning+for+Top-N+Recommendation+with+Heterogeneous+Information+Sources)|137| +|[MGAE: Marginalized Graph Autoencoder for Graph Clustering](https://doi.org/10.1145/3132847.3132967)|Chun Wang, Shirui Pan, Guodong Long, Xingquan Zhu, Jing Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MGAE:+Marginalized+Graph+Autoencoder+for+Graph+Clustering)|134| +|[DeepRank: A New Deep Architecture for Relevance Ranking in Information Retrieval](https://doi.org/10.1145/3132847.3132914)|Liang Pang, Yanyan Lan, Jiafeng Guo, Jun Xu, Jingfang Xu, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepRank:+A+New+Deep+Architecture+for+Relevance+Ranking+in+Information+Retrieval)|111| +|[DeepHawkes: Bridging the Gap between Prediction and Understanding of Information Cascades](https://doi.org/10.1145/3132847.3132973)|Qi Cao, Huawei Shen, Keting Cen, Wentao Ouyang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepHawkes:+Bridging+the+Gap+between+Prediction+and+Understanding+of+Information+Cascades)|107| +|[SERM: A Recurrent Model for Next Location Prediction in Semantic Trajectories](https://doi.org/10.1145/3132847.3133056)|Di Yao, Chao Zhang, JianHui Huang, Jingping Bi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SERM:+A+Recurrent+Model+for+Next+Location+Prediction+in+Semantic+Trajectories)|107| +|[Fast and Accurate Time Series Classification with WEASEL](https://doi.org/10.1145/3132847.3132980)|Patrick Schäfer, Ulf Leser||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+and+Accurate+Time+Series+Classification+with+WEASEL)|100| +|[FUSION: An Online Method for Multistream Classification](https://doi.org/10.1145/3132847.3132886)|Ahsanul Haque, Zhuoyi Wang, Swarup Chandra, Bo Dong, Latifur Khan, Kevin W. Hamlen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FUSION:+An+Online+Method+for+Multistream+Classification)|92| +|[An Attention-based Collaboration Framework for Multi-View Network Representation Learning](https://doi.org/10.1145/3132847.3133021)|Meng Qu, Jian Tang, Jingbo Shang, Xiang Ren, Ming Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Attention-based+Collaboration+Framework+for+Multi-View+Network+Representation+Learning)|81| +|[Crowdsourcing Cybersecurity: Cyber Attack Detection using Social Media](https://doi.org/10.1145/3132847.3132866)|Rupinder Paul Khandpur, Taoran Ji, Steve T. K. Jan, Gang Wang, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourcing+Cybersecurity:+Cyber+Attack+Detection+using+Social+Media)|66| +|[Aspect-level Sentiment Classification with HEAT (HiErarchical ATtention) Network](https://doi.org/10.1145/3132847.3133037)|Jiajun Cheng, Shenglin Zhao, Jiani Zhang, Irwin King, Xin Zhang, Hui Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Aspect-level+Sentiment+Classification+with+HEAT+(HiErarchical+ATtention)+Network)|65| +|[Attributed Signed Network Embedding](https://doi.org/10.1145/3132847.3132905)|Suhang Wang, Charu C. Aggarwal, Jiliang Tang, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attributed+Signed+Network+Embedding)|61| +|[A Neural Collaborative Filtering Model with Interaction-based Neighborhood](https://doi.org/10.1145/3132847.3133083)|Ting Bai, JiRong Wen, Jun Zhang, Wayne Xin Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Collaborative+Filtering+Model+with+Interaction-based+Neighborhood)|61| +|[Name Disambiguation in Anonymized Graphs using Network Embedding](https://doi.org/10.1145/3132847.3132873)|Baichuan Zhang, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Name+Disambiguation+in+Anonymized+Graphs+using+Network+Embedding)|59| +|[Modeling Temporal-Spatial Correlations for Crime Prediction](https://doi.org/10.1145/3132847.3133024)|Xiangyu Zhao, Jiliang Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Temporal-Spatial+Correlations+for+Crime+Prediction)|51| +|[A Deep Recurrent Collaborative Filtering Framework for Venue Recommendation](https://doi.org/10.1145/3132847.3133036)|Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Deep+Recurrent+Collaborative+Filtering+Framework+for+Venue+Recommendation)|50| +|[Learning to Attend, Copy, and Generate for Session-Based Query Suggestion](https://doi.org/10.1145/3132847.3133010)|Mostafa Dehghani, Sascha Rothe, Enrique Alfonseca, Pascal Fleury||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Attend,+Copy,+and+Generate+for+Session-Based+Query+Suggestion)|50| +|[Dyadic Memory Networks for Aspect-based Sentiment Analysis](https://doi.org/10.1145/3132847.3132936)|Yi Tay, Luu Anh Tuan, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dyadic+Memory+Networks+for+Aspect-based+Sentiment+Analysis)|49| +|[Region Representation Learning via Mobility Flow](https://doi.org/10.1145/3132847.3133006)|Hongjian Wang, Zhenhui Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Region+Representation+Learning+via+Mobility+Flow)|44| +|[Learning Entity Type Embeddings for Knowledge Graph Completion](https://doi.org/10.1145/3132847.3133095)|Changsung Moon, Paul Jones, Nagiza F. Samatova||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Entity+Type+Embeddings+for+Knowledge+Graph+Completion)|44| +|[Nationality Classification Using Name Embeddings](https://doi.org/10.1145/3132847.3133008)|Junting Ye, Shuchu Han, Yifan Hu, Baris Coskun, Meizhu Liu, Hong Qin, Steven Skiena||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nationality+Classification+Using+Name+Embeddings)|43| +|[AliMe Assist : An Intelligent Assistant for Creating an Innovative E-commerce Experience](https://doi.org/10.1145/3132847.3133169)|FengLin Li, Minghui Qiu, Haiqing Chen, Xiongwei Wang, Xing Gao, Jun Huang, Juwei Ren, Zhongzhou Zhao, Weipeng Zhao, Lei Wang, Guwei Jin, Wei Chu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AliMe+Assist+:+An+Intelligent+Assistant+for+Creating+an+Innovative+E-commerce+Experience)|43| +|[A Fast Trajectory Outlier Detection Approach via Driving Behavior Modeling](https://doi.org/10.1145/3132847.3132933)|Hao Wu, Weiwei Sun, Baihua Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fast+Trajectory+Outlier+Detection+Approach+via+Driving+Behavior+Modeling)|42| +|[NeuPL: Attention-based Semantic Matching and Pair-Linking for Entity Disambiguation](https://doi.org/10.1145/3132847.3132963)|Minh C. Phan, Aixin Sun, Yi Tay, Jialong Han, Chenliang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=NeuPL:+Attention-based+Semantic+Matching+and+Pair-Linking+for+Entity+Disambiguation)|42| +|[From Properties to Links: Deep Network Embedding on Incomplete Graphs](https://doi.org/10.1145/3132847.3132975)|Dejian Yang, Senzhang Wang, Chaozhuo Li, Xiaoming Zhang, Zhoujun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Properties+to+Links:+Deep+Network+Embedding+on+Incomplete+Graphs)|41| +|[CoreDB: a Data Lake Service](https://doi.org/10.1145/3132847.3133171)|Amin Beheshti, Boualem Benatallah, Reza Nouri, Van Munin Chhieng, HuangTao Xiong, Xu Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoreDB:+a+Data+Lake+Service)|41| +|[HoloScope: Topology-and-Spike Aware Fraud Detection](https://doi.org/10.1145/3132847.3133018)|Shenghua Liu, Bryan Hooi, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HoloScope:+Topology-and-Spike+Aware+Fraud+Detection)|40| +|[Destination-aware Task Assignment in Spatial Crowdsourcing](https://doi.org/10.1145/3132847.3132894)|Yan Zhao, Yang Li, Yu Wang, Han Su, Kai Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Destination-aware+Task+Assignment+in+Spatial+Crowdsourcing)|39| +|[Privacy-Preserving Collaborative Deep Learning with Application to Human Activity Recognition](https://doi.org/10.1145/3132847.3132990)|Lingjuan Lyu, Xuanli He, Yee Wei Law, Marimuthu Palaniswami||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy-Preserving+Collaborative+Deep+Learning+with+Application+to+Human+Activity+Recognition)|39| +|[Keyword Search on RDF Graphs - A Query Graph Assembly Approach](https://doi.org/10.1145/3132847.3132957)|Shuo Han, Lei Zou, Jeffrey Xu Yu, Dongyan Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Keyword+Search+on+RDF+Graphs+-+A+Query+Graph+Assembly+Approach)|38| +|[Learning Edge Representations via Low-Rank Asymmetric Projections](https://doi.org/10.1145/3132847.3132959)|Sami AbuElHaija, Bryan Perozzi, Rami AlRfou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Edge+Representations+via+Low-Rank+Asymmetric+Projections)|38| +|[Exploiting Spatio-Temporal User Behaviors for User Linkage](https://doi.org/10.1145/3132847.3132898)|Wei Chen, Hongzhi Yin, Weiqing Wang, Lei Zhao, Wen Hua, Xiaofang Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Spatio-Temporal+User+Behaviors+for+User+Linkage)|37| +|[Geographic and Temporal Trends in Fake News Consumption During the 2016 US Presidential Election](https://doi.org/10.1145/3132847.3133147)|Adam Fourney, Miklós Z. Rácz, Gireeja Ranade, Markus Mobius, Eric Horvitz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Geographic+and+Temporal+Trends+in+Fake+News+Consumption+During+the+2016+US+Presidential+Election)|37| +|[Active Learning for Large-Scale Entity Resolution](https://doi.org/10.1145/3132847.3132949)|Kun Qian, Lucian Popa, Prithviraj Sen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Learning+for+Large-Scale+Entity+Resolution)|36| +|[Natural Language Question/Answering: Let Users Talk With The Knowledge Graph](https://doi.org/10.1145/3132847.3132977)|Weiguo Zheng, Hong Cheng, Lei Zou, Jeffrey Xu Yu, Kangfei Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Natural+Language+Question/Answering:+Let+Users+Talk+With+The+Knowledge+Graph)|35| +|[Efficient Fault-Tolerant Group Recommendation Using alpha-beta-core](https://doi.org/10.1145/3132847.3133130)|Danhao Ding, Hui Li, Zhipeng Huang, Nikos Mamoulis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Fault-Tolerant+Group+Recommendation+Using+alpha-beta-core)|35| +|[Tracking Knowledge Proficiency of Students with Educational Priors](https://doi.org/10.1145/3132847.3132929)|Yuying Chen, Qi Liu, Zhenya Huang, Le Wu, Enhong Chen, Runze Wu, Yu Su, Guoping Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+Knowledge+Proficiency+of+Students+with+Educational+Priors)|34| +|[Interacting Attention-gated Recurrent Networks for Recommendation](https://doi.org/10.1145/3132847.3133005)|Wenjie Pei, Jie Yang, Zhu Sun, Jie Zhang, Alessandro Bozzon, David M. J. Tax||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interacting+Attention-gated+Recurrent+Networks+for+Recommendation)|34| +|[Core Decomposition and Densest Subgraph in Multilayer Networks](https://doi.org/10.1145/3132847.3132993)|Edoardo Galimberti, Francesco Bonchi, Francesco Gullo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Core+Decomposition+and+Densest+Subgraph+in+Multilayer+Networks)|34| +|[Session-aware Information Embedding for E-commerce Product Recommendation](https://doi.org/10.1145/3132847.3133163)|Chen Wu, Ming Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Session-aware+Information+Embedding+for+E-commerce+Product+Recommendation)|34| +|[Enhancing the Network Embedding Quality with Structural Similarity](https://doi.org/10.1145/3132847.3132900)|Tianshu Lyu, Yuan Zhang, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+the+Network+Embedding+Quality+with+Structural+Similarity)|33| +|[MultiSentiNet: A Deep Semantic Network for Multimodal Sentiment Analysis](https://doi.org/10.1145/3132847.3133142)|Nan Xu, Wenji Mao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MultiSentiNet:+A+Deep+Semantic+Network+for+Multimodal+Sentiment+Analysis)|33| +|[Augmented Variational Autoencoders for Collaborative Filtering with Auxiliary Information](https://doi.org/10.1145/3132847.3132972)|Wonsung Lee, Kyungwoo Song, IlChul Moon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Augmented+Variational+Autoencoders+for+Collaborative+Filtering+with+Auxiliary+Information)|32| +|[BayDNN: Friend Recommendation with Bayesian Personalized Ranking Deep Neural Network](https://doi.org/10.1145/3132847.3132941)|Daizong Ding, Mi Zhang, ShaoYuan Li, Jie Tang, Xiaotie Chen, ZhiHua Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BayDNN:+Friend+Recommendation+with+Bayesian+Personalized+Ranking+Deep+Neural+Network)|32| +|[A Non-negative Symmetric Encoder-Decoder Approach for Community Detection](https://doi.org/10.1145/3132847.3132902)|BingJie Sun, Huawei Shen, Jinhua Gao, Wentao Ouyang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Non-negative+Symmetric+Encoder-Decoder+Approach+for+Community+Detection)|31| +|[Dual Learning for Cross-domain Image Captioning](https://doi.org/10.1145/3132847.3132920)|Wei Zhao, Wei Xu, Min Yang, Jianbo Ye, Zhou Zhao, Yabing Feng, Yu Qiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dual+Learning+for+Cross-domain+Image+Captioning)|30| +|[Hike: A Hybrid Human-Machine Method for Entity Alignment in Large-Scale Knowledge Bases](https://doi.org/10.1145/3132847.3132912)|Yan Zhuang, Guoliang Li, Zhuojian Zhong, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hike:+A+Hybrid+Human-Machine+Method+for+Entity+Alignment+in+Large-Scale+Knowledge+Bases)|28| +|[A Compare-Aggregate Model with Dynamic-Clip Attention for Answer Selection](https://doi.org/10.1145/3132847.3133089)|Weijie Bian, Si Li, Zhao Yang, Guang Chen, Zhiqing Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Compare-Aggregate+Model+with+Dynamic-Clip+Attention+for+Answer+Selection)|28| +|[Learning and Transferring Social and Item Visibilities for Personalized Recommendation](https://doi.org/10.1145/3132847.3132911)|Xiao Lin, Min Zhang, Yongfeng Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+and+Transferring+Social+and+Item+Visibilities+for+Personalized+Recommendation)|27| +|[Learning Node Embeddings in Interaction Graphs](https://doi.org/10.1145/3132847.3132918)|Yao Zhang, Yun Xiong, Xiangnan Kong, Yangyong Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Node+Embeddings+in+Interaction+Graphs)|27| +|[Understanding Database Performance Inefficiencies in Real-world Web Applications](https://doi.org/10.1145/3132847.3132954)|Cong Yan, Alvin Cheung, Junwen Yang, Shan Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Database+Performance+Inefficiencies+in+Real-world+Web+Applications)|27| +|[Multi-view Clustering with Graph Embedding for Connectome Analysis](https://doi.org/10.1145/3132847.3132909)|Guixiang Ma, Lifang He, ChunTa Lu, Weixiang Shao, Philip S. Yu, Alex D. Leow, Ann B. Ragin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-view+Clustering+with+Graph+Embedding+for+Connectome+Analysis)|26| +|[Returning is Believing: Optimizing Long-term User Engagement in Recommender Systems](https://doi.org/10.1145/3132847.3133025)|Qingyun Wu, Hongning Wang, Liangjie Hong, Yue Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Returning+is+Believing:+Optimizing+Long-term+User+Engagement+in+Recommender+Systems)|25| +|[Blockchain-based Data Management and Analytics for Micro-insurance Applications](https://doi.org/10.1145/3132847.3133172)|Hoang Tam Vo, Lenin Mehedy, Mukesh K. Mohania, Ermyas Abebe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Blockchain-based+Data+Management+and+Analytics+for+Micro-insurance+Applications)|25| +|[On Embedding Uncertain Graphs](https://doi.org/10.1145/3132847.3132885)|Jiafeng Hu, Reynold Cheng, Zhipeng Huang, Yixiang Fang, Siqiang Luo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Embedding+Uncertain+Graphs)|24| +|[Social Media for Opioid Addiction Epidemiology: Automatic Detection of Opioid Addicts from Twitter and Case Studies](https://doi.org/10.1145/3132847.3132857)|Yujie Fan, Yiming Zhang, Yanfang Ye, Xin Li, Wanhong Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Social+Media+for+Opioid+Addiction+Epidemiology:+Automatic+Detection+of+Opioid+Addicts+from+Twitter+and+Case+Studies)|24| +|[Taxonomy Induction Using Hypernym Subsequences](https://doi.org/10.1145/3132847.3133041)|Amit Gupta, Rémi Lebret, Hamza Harkous, Karl Aberer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Taxonomy+Induction+Using+Hypernym+Subsequences)|23| +|[Detecting Social Bots by Jointly Modeling Deep Behavior and Content Information](https://doi.org/10.1145/3132847.3133050)|Chiyu Cai, Linjing Li, Daniel Zeng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Social+Bots+by+Jointly+Modeling+Deep+Behavior+and+Content+Information)|23| +|[Integrating the Framing of Clinical Questions via PICO into the Retrieval of Medical Literature for Systematic Reviews](https://doi.org/10.1145/3132847.3133080)|Harrisen Scells, Guido Zuccon, Bevan Koopman, Anthony Deacon, Leif Azzopardi, Shlomo Geva||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Integrating+the+Framing+of+Clinical+Questions+via+PICO+into+the+Retrieval+of+Medical+Literature+for+Systematic+Reviews)|23| +|[Spectrum-based Deep Neural Networks for Fraud Detection](https://doi.org/10.1145/3132847.3133139)|Shuhan Yuan, Xintao Wu, Jun Li, Aidong Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spectrum-based+Deep+Neural+Networks+for+Fraud+Detection)|23| +|[Building Natural Language Interfaces to Web APIs](https://doi.org/10.1145/3132847.3133009)|Yu Su, Ahmed Hassan Awadallah, Madian Khabsa, Patrick Pantel, Michael Gamon, Mark J. Encarnación||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+Natural+Language+Interfaces+to+Web+APIs)|22| +|[Deep Neural Networks for News Recommendations](https://doi.org/10.1145/3132847.3133154)|Keunchan Park, Jisoo Lee, Jaeho Choi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Neural+Networks+for+News+Recommendations)|22| +|[Maintaining Densest Subsets Efficiently in Evolving Hypergraphs](https://doi.org/10.1145/3132847.3132907)|Shuguang Hu, Xiaowei Wu, T.H. Hubert Chan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Maintaining+Densest+Subsets+Efficiently+in+Evolving+Hypergraphs)|21| +|[Spreadsheet Property Detection With Rule-assisted Active Learning](https://doi.org/10.1145/3132847.3132882)|Zhe Chen, Sasha Dadiomov, Richard Wesley, Gang Xiao, Daniel Cory, Michael J. Cafarella, Jock D. Mackinlay||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spreadsheet+Property+Detection+With+Rule-assisted+Active+Learning)|21| +|[A Personalised Ranking Framework with Multiple Sampling Criteria for Venue Recommendation](https://doi.org/10.1145/3132847.3132985)|Jarana Manotumruksa, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Personalised+Ranking+Framework+with+Multiple+Sampling+Criteria+for+Venue+Recommendation)|21| +|[Discovering Graph Temporal Association Rules](https://doi.org/10.1145/3132847.3133014)|Mohammad Hossein Namaki, Yinghui Wu, Qi Song, Peng Lin, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Discovering+Graph+Temporal+Association+Rules)|21| +|[Joint Topic-Semantic-aware Social Recommendation for Online Voting](https://doi.org/10.1145/3132847.3132889)|Hongwei Wang, Jia Wang, Miao Zhao, Jiannong Cao, Minyi Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Joint+Topic-Semantic-aware+Social+Recommendation+for+Online+Voting)|19| +|[Growing Story Forest Online from Massive Breaking News](https://doi.org/10.1145/3132847.3132852)|Bang Liu, Di Niu, Kunfeng Lai, Linglong Kong, Yu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Growing+Story+Forest+Online+from+Massive+Breaking+News)|19| +|[Recipe Popularity Prediction with Deep Visual-Semantic Fusion](https://doi.org/10.1145/3132847.3133137)|Satoshi Sanjo, Marie Katsurai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recipe+Popularity+Prediction+with+Deep+Visual-Semantic+Fusion)|19| +|[Deep Sequential Models for Task Satisfaction Prediction](https://doi.org/10.1145/3132847.3133001)|Rishabh Mehrotra, Ahmed Hassan Awadallah, Milad Shokouhi, Emine Yilmaz, Imed Zitouni, Ahmed El Kholy, Madian Khabsa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Sequential+Models+for+Task+Satisfaction+Prediction)|18| +|[Multi-Label Feature Selection using Correlation Information](https://doi.org/10.1145/3132847.3132858)|Ali Braytee, Wei Liu, Daniel R. Catchpoole, Paul J. Kennedy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Label+Feature+Selection+using+Correlation+Information)|18| +|[QoS-Aware Scheduling of Heterogeneous Servers for Inference in Deep Neural Networks](https://doi.org/10.1145/3132847.3133045)|Zhou Fang, Tong Yu, Ole J. Mengshoel, Rajesh K. Gupta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QoS-Aware+Scheduling+of+Heterogeneous+Servers+for+Inference+in+Deep+Neural+Networks)|18| +|[TATHYA: A Multi-Classifier System for Detecting Check-Worthy Statements in Political Debates](https://doi.org/10.1145/3132847.3133150)|Ayush Patwari, Dan Goldwasser, Saurabh Bagchi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TATHYA:+A+Multi-Classifier+System+for+Detecting+Check-Worthy+Statements+in+Political+Debates)|18| +|[LARM: A Lifetime Aware Regression Model for Predicting YouTube Video Popularity](https://doi.org/10.1145/3132847.3132997)|Changsha Ma, Zhisheng Yan, Chang Wen Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=LARM:+A+Lifetime+Aware+Regression+Model+for+Predicting+YouTube+Video+Popularity)|17| +|[Efficient Discovery of Abnormal Event Sequences in Enterprise Security Systems](https://doi.org/10.1145/3132847.3132854)|Boxiang Dong, Zhengzhang Chen, Wendy Hui Wang, LuAn Tang, Kai Zhang, Ying Lin, Zhichun Li, Haifeng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Discovery+of+Abnormal+Event+Sequences+in+Enterprise+Security+Systems)|17| +|[Fine-grained Patient Similarity Measuring using Deep Metric Learning](https://doi.org/10.1145/3132847.3133022)|Jiazhi Ni, Jie Liu, Chenxin Zhang, Dan Ye, Zhirou Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fine-grained+Patient+Similarity+Measuring+using+Deep+Metric+Learning)|17| +|[Capturing Feature-Level Irregularity in Disease Progression Modeling](https://doi.org/10.1145/3132847.3132944)|Kaiping Zheng, Wei Wang, Jinyang Gao, Kee Yuan Ngiam, Beng Chin Ooi, James Wei Luen Yip||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Capturing+Feature-Level+Irregularity+in+Disease+Progression+Modeling)|17| +|[Language Modeling by Clustering with Word Embeddings for Text Readability Assessment](https://doi.org/10.1145/3132847.3133104)|Miriam Cha, Youngjune Gwon, H. T. Kung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Language+Modeling+by+Clustering+with+Word+Embeddings+for+Text+Readability+Assessment)|17| +|[Analysis of Telegram, An Instant Messaging Service](https://doi.org/10.1145/3132847.3133132)|Arash Dargahi Nobari, Negar Reshadatmand, Mahmood Neshati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analysis+of+Telegram,+An+Instant+Messaging+Service)|17| +|[Fast Algorithms for Pareto Optimal Group-based Skyline](https://doi.org/10.1145/3132847.3132950)|Wenhui Yu, Zheng Qin, Jinfei Liu, Li Xiong, Xu Chen, Huidi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Algorithms+for+Pareto+Optimal+Group-based+Skyline)|16| +|[Selective Value Coupling Learning for Detecting Outliers in High-Dimensional Categorical Data](https://doi.org/10.1145/3132847.3132994)|Guansong Pang, Hongzuo Xu, Longbing Cao, Wentao Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Selective+Value+Coupling+Learning+for+Detecting+Outliers+in+High-Dimensional+Categorical+Data)|16| +|[Learning Knowledge Embeddings by Combining Limit-based Scoring Loss](https://doi.org/10.1145/3132847.3132939)|Xiaofei Zhou, Qiannan Zhu, Ping Liu, Li Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Knowledge+Embeddings+by+Combining+Limit-based+Scoring+Loss)|16| +|[SemFacet: Making Hard Faceted Search Easier](https://doi.org/10.1145/3132847.3133192)|Evgeny Kharlamov, Luca Giacomelli, Evgeny Sherkhonov, Bernardo Cuenca Grau, Egor V. Kostylev, Ian Horrocks||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemFacet:+Making+Hard+Faceted+Search+Easier)|16| +|[A Large Scale Prediction Engine for App Install Clicks and Conversions](https://doi.org/10.1145/3132847.3132868)|Narayan Bhamidipati, Ravi Kant, Shaunak Mishra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Large+Scale+Prediction+Engine+for+App+Install+Clicks+and+Conversions)|15| +|[Probabilistic Skyline on Incomplete Data](https://doi.org/10.1145/3132847.3132930)|Kaiqi Zhang, Hong Gao, Xixian Han, Zhipeng Cai, Jianzhong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Skyline+on+Incomplete+Data)|15| +|[A Study of Main-Memory Hash Joins on Many-core Processor: A Case with Intel Knights Landing Architecture](https://doi.org/10.1145/3132847.3132916)|Xuntao Cheng, Bingsheng He, Xiaoli Du, Chiew Tong Lau||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Main-Memory+Hash+Joins+on+Many-core+Processor:+A+Case+with+Intel+Knights+Landing+Architecture)|15| +|[Multi-Task Neural Network for Non-discrete Attribute Prediction in Knowledge Graphs](https://doi.org/10.1145/3132847.3132937)|Yi Tay, Luu Anh Tuan, Minh C. Phan, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Task+Neural+Network+for+Non-discrete+Attribute+Prediction+in+Knowledge+Graphs)|15| +|[Broad Learning based Multi-Source Collaborative Recommendation](https://doi.org/10.1145/3132847.3132976)|Junxing Zhu, Jiawei Zhang, Lifang He, Quanyuan Wu, Bin Zhou, Chenwei Zhang, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Broad+Learning+based+Multi-Source+Collaborative+Recommendation)|15| +|[Sybil Defense in Crowdsourcing Platforms](https://doi.org/10.1145/3132847.3133039)|Dong Yuan, Guoliang Li, Qi Li, Yudian Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sybil+Defense+in+Crowdsourcing+Platforms)|15| +|[Text Coherence Analysis Based on Deep Neural Network](https://doi.org/10.1145/3132847.3133047)|Baiyun Cui, Yingming Li, Yaqing Zhang, Zhongfei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+Coherence+Analysis+Based+on+Deep+Neural+Network)|15| +|[Interactive Social Recommendation](https://doi.org/10.1145/3132847.3132880)|Xin Wang, Steven C. H. Hoi, Chenghao Liu, Martin Ester||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Social+Recommendation)|14| +|[Smart Infrastructure Maintenance Using Incremental Tensor Analysis: Extended Abstract](https://doi.org/10.1145/3132847.3132851)|Nguyen Lu Dang Khoa, Ali Anaissi, Yang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Smart+Infrastructure+Maintenance+Using+Incremental+Tensor+Analysis:+Extended+Abstract)|14| +|[Tweet Geolocation: Leveraging Location, User and Peer Signals](https://doi.org/10.1145/3132847.3132906)|WenHaw Chong, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tweet+Geolocation:+Leveraging+Location,+User+and+Peer+Signals)|14| +|[Analyzing Mathematical Content to Detect Academic Plagiarism](https://doi.org/10.1145/3132847.3133144)|Norman Meuschke, Moritz Schubotz, Felix Hamborg, Tomás Skopal, Bela Gipp||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Analyzing+Mathematical+Content+to+Detect+Academic+Plagiarism)|14| +|[Users Are Known by the Company They Keep: Topic Models for Viewpoint Discovery in Social Networks](https://doi.org/10.1145/3132847.3132897)|Thibaut Thonet, Guillaume Cabanac, Mohand Boughanem, Karen PinelSauvagnat||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Users+Are+Known+by+the+Company+They+Keep:+Topic+Models+for+Viewpoint+Discovery+in+Social+Networks)|13| +|[Sensitive and Scalable Online Evaluation with Theoretical Guarantees](https://doi.org/10.1145/3132847.3132895)|Harrie Oosterhuis, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sensitive+and+Scalable+Online+Evaluation+with+Theoretical+Guarantees)|13| +|[Balancing Speed and Quality in Online Learning to Rank for Information Retrieval](https://doi.org/10.1145/3132847.3132896)|Harrie Oosterhuis, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Balancing+Speed+and+Quality+in+Online+Learning+to+Rank+for+Information+Retrieval)|13| +|[Community-Based Network Alignment for Large Attributed Network](https://doi.org/10.1145/3132847.3132904)|Zheng Chen, Xinli Yu, Bo Song, Jianliang Gao, Xiaohua Hu, WeiShih Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Community-Based+Network+Alignment+for+Large+Attributed+Network)|13| +|[ANS-Based Index Compression](https://doi.org/10.1145/3132847.3132888)|Alistair Moffat, Matthias Petri||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ANS-Based+Index+Compression)|13| +|[From Fingerprint to Footprint: Revealing Physical World Privacy Leakage by Cyberspace Cookie Logs](https://doi.org/10.1145/3132847.3132998)|Huandong Wang, Chen Gao, Yong Li, ZhiLi Zhang, Depeng Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Fingerprint+to+Footprint:+Revealing+Physical+World+Privacy+Leakage+by+Cyberspace+Cookie+Logs)|13| +|[MIKE: Keyphrase Extraction by Integrating Multidimensional Information](https://doi.org/10.1145/3132847.3132956)|Yuxiang Zhang, Yaocheng Chang, Xiaoqing Liu, Sujatha Das Gollapalli, Xiaoli Li, Chunjing Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MIKE:+Keyphrase+Extraction+by+Integrating+Multidimensional+Information)|13| +|[Words are Malleable: Computing Semantic Shifts in Political and Media Discourse](https://doi.org/10.1145/3132847.3132878)|Hosein Azarbonyad, Mostafa Dehghani, Kaspar Beelen, Alexandra Arkut, Maarten Marx, Jaap Kamps||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Words+are+Malleable:+Computing+Semantic+Shifts+in+Political+and+Media+Discourse)|13| +|[Relaxing Graph Pattern Matching With Explanations](https://doi.org/10.1145/3132847.3132992)|Jia Li, Yang Cao, Shuai Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relaxing+Graph+Pattern+Matching+With+Explanations)|13| +|[Alternating Pointwise-Pairwise Learning for Personalized Item Ranking](https://doi.org/10.1145/3132847.3133100)|Yu Lei, Wenjie Li, Ziyu Lu, Miao Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Alternating+Pointwise-Pairwise+Learning+for+Personalized+Item+Ranking)|13| +|[Spatiotemporal Event Forecasting from Incomplete Hyper-local Price Data](https://doi.org/10.1145/3132847.3132996)|Xuchao Zhang, Liang Zhao, Arnold P. Boedihardjo, ChangTien Lu, Naren Ramakrishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spatiotemporal+Event+Forecasting+from+Incomplete+Hyper-local+Price+Data)|12| +|[Interactive Spatial Keyword Querying with Semantics](https://doi.org/10.1145/3132847.3132969)|Jiabao Sun, Jiajie Xu, Kai Zheng, Chengfei Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Spatial+Keyword+Querying+with+Semantics)|12| +|[Predicting Startup Crowdfunding Success through Longitudinal Social Engagement Analysis](https://doi.org/10.1145/3132847.3132908)|Qizhen Zhang, Tengyuan Ye, Meryem Essaidi, Shivani Agarwal, Vincent Liu, Boon Thau Loo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Startup+Crowdfunding+Success+through+Longitudinal+Social+Engagement+Analysis)|12| +|[Automatic Catchphrase Identification from Legal Court Case Documents](https://doi.org/10.1145/3132847.3133102)|Arpan Mandal, Kripabandhu Ghosh, Arindam Pal, Saptarshi Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Catchphrase+Identification+from+Legal+Court+Case+Documents)|12| +|[Task Embeddings: Learning Query Embeddings using Task Context](https://doi.org/10.1145/3132847.3133098)|Rishabh Mehrotra, Emine Yilmaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Task+Embeddings:+Learning+Query+Embeddings+using+Task+Context)|12| +|[Accurate Sentence Matching with Hybrid Siamese Networks](https://doi.org/10.1145/3132847.3133156)|Massimo Nicosia, Alessandro Moschitti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Accurate+Sentence+Matching+with+Hybrid+Siamese+Networks)|12| +|[A Temporal Attentional Model for Rumor Stance Classification](https://doi.org/10.1145/3132847.3133116)|Amir Pouran Ben Veyseh, Javid Ebrahimi, Dejing Dou, Daniel Lowd||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Temporal+Attentional+Model+for+Rumor+Stance+Classification)|12| +|[An Interactive Framework for Video Surveillance Event Detection and Modeling](https://doi.org/10.1145/3132847.3133164)|Fabio Persia, Fabio Bettini, Sven Helmer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Interactive+Framework+for+Video+Surveillance+Event+Detection+and+Modeling)|12| +|[GPU-Accelerated Graph Clustering via Parallel Label Propagation](https://doi.org/10.1145/3132847.3132960)|Yusuke Kozawa, Toshiyuki Amagasa, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GPU-Accelerated+Graph+Clustering+via+Parallel+Label+Propagation)|11| +|[Detecting Multiple Periods and Periodic Patterns in Event Time Sequences](https://doi.org/10.1145/3132847.3133027)|Quan Yuan, Jingbo Shang, Xin Cao, Chao Zhang, Xinhe Geng, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Multiple+Periods+and+Periodic+Patterns+in+Event+Time+Sequences)|11| +|[Tensor Rank Estimation and Completion via CP-based Nuclear Norm](https://doi.org/10.1145/3132847.3132945)|Qiquan Shi, Haiping Lu, Yiuming Cheung||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tensor+Rank+Estimation+and+Completion+via+CP-based+Nuclear+Norm)|11| +|[Semi-Supervised Event-related Tweet Identification with Dynamic Keyword Generation](https://doi.org/10.1145/3132847.3132968)|Xin Zheng, Aixin Sun, Sibo Wang, Jialong Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Supervised+Event-related+Tweet+Identification+with+Dynamic+Keyword+Generation)|11| +|[Distant Meta-Path Similarities for Text-Based Heterogeneous Information Networks](https://doi.org/10.1145/3132847.3133029)|Chenguang Wang, Yangqiu Song, Haoran Li, Yizhou Sun, Ming Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distant+Meta-Path+Similarities+for+Text-Based+Heterogeneous+Information+Networks)|11| +|[Semantic Rules for Machine Diagnostics: Execution and Management](https://doi.org/10.1145/3132847.3133159)|Evgeny Kharlamov, Ognjen Savkovic, Guohui Xiao, Rafael Peñaloza, Gulnar Mehdi, Mikhail Roshchin, Ian Horrocks||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Rules+for+Machine+Diagnostics:+Execution+and+Management)|11| +|[JointSem: Combining Query Entity Linking and Entity based Document Ranking](https://doi.org/10.1145/3132847.3133048)|Chenyan Xiong, Zhengzhong Liu, Jamie Callan, Eduard H. Hovy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=JointSem:+Combining+Query+Entity+Linking+and+Entity+based+Document+Ranking)|11| +|[A New Approach to Compute CNNs for Extremely Large Images](https://doi.org/10.1145/3132847.3132872)|Sai Wu, Mengdan Zhang, Gang Chen, Ke Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+New+Approach+to+Compute+CNNs+for+Extremely+Large+Images)|10| +|[Active Sampling for Large-scale Information Retrieval Evaluation](https://doi.org/10.1145/3132847.3133015)|Dan Li, Evangelos Kanoulas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Sampling+for+Large-scale+Information+Retrieval+Evaluation)|10| +|[Temporally Like-minded User Community Identification through Neural Embeddings](https://doi.org/10.1145/3132847.3132955)|Hossein Fani, Ebrahim Bagheri, Weichang Du||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporally+Like-minded+User+Community+Identification+through+Neural+Embeddings)|10| +|[SOPER: Discovering the Influence of Fashion and the Many Faces of User from Session Logs using Stick Breaking Process](https://doi.org/10.1145/3132847.3133007)|Lucky Dhakad, Mrinal Kanti Das, Chiranjib Bhattacharyya, Samik Datta, Mihir Kale, Vivek Mehta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SOPER:+Discovering+the+Influence+of+Fashion+and+the+Many+Faces+of+User+from+Session+Logs+using+Stick+Breaking+Process)|10| +|[Active Network Alignment: A Matching-Based Approach](https://doi.org/10.1145/3132847.3132983)|Eric Malmi, Aristides Gionis, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Network+Alignment:+A+Matching-Based+Approach)|10| +|[Efficient Discovery of Ontology Functional Dependencies](https://doi.org/10.1145/3132847.3132879)|Sridevi Baskaran, Alexander Keller, Fei Chiang, Lukasz Golab, Jaroslaw Szlichta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Discovery+of+Ontology+Functional+Dependencies)|10| +|[A Two-Stage Framework for Computing Entity Relatedness in Wikipedia](https://doi.org/10.1145/3132847.3132890)|Marco Ponza, Paolo Ferragina, Soumen Chakrabarti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Two-Stage+Framework+for+Computing+Entity+Relatedness+in+Wikipedia)|10| +|[Hierarchical RNN with Static Sentence-Level Attention for Text-Based Speaker Change Detection](https://doi.org/10.1145/3132847.3133110)|Zhao Meng, Lili Mou, Zhi Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+RNN+with+Static+Sentence-Level+Attention+for+Text-Based+Speaker+Change+Detection)|10| +|[Knowledge Graph Embedding with Triple Context](https://doi.org/10.1145/3132847.3133119)|Jun Shi, Huan Gao, Guilin Qi, Zhangquan Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge+Graph+Embedding+with+Triple+Context)|10| +|[RATE: Overcoming Noise and Sparsity of Textual Features in Real-Time Location Estimation](https://doi.org/10.1145/3132847.3133067)|Yu Zhang, Wei Wei, Binxuan Huang, Kathleen M. Carley, Yan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RATE:+Overcoming+Noise+and+Sparsity+of+Textual+Features+in+Real-Time+Location+Estimation)|10| +|[Public Transportation Mode Detection from Cellular Data](https://doi.org/10.1145/3132847.3133173)|Guanyao Li, ChunJie Chen, ShengYun Huang, AiJou Chou, Xiaochuan Gou, WenChih Peng, ChihWei Yi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Public+Transportation+Mode+Detection+from+Cellular+Data)|10| +|[Reply With: Proactive Recommendation of Email Attachments](https://doi.org/10.1145/3132847.3132979)|Christophe Van Gysel, Bhaskar Mitra, Matteo Venanzi, Roy Rosemarin, Grzegorz Kukla, Piotr Grudzien, Nicola Cancedda||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Reply+With:+Proactive+Recommendation+of+Email+Attachments)|9| +|[Scenic Routes Now: Efficiently Solving the Time-Dependent Arc Orienteering Problem](https://doi.org/10.1145/3132847.3132874)|Ying Lu, Gregor Jossé, Tobias Emrich, Ugur Demiryurek, Matthias Renz, Cyrus Shahabi, Matthias Schubert||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scenic+Routes+Now:+Efficiently+Solving+the+Time-Dependent+Arc+Orienteering+Problem)|9| +|[PQBF: I/O-Efficient Approximate Nearest Neighbor Search by Product Quantization](https://doi.org/10.1145/3132847.3132901)|Yingfan Liu, Hong Cheng, Jiangtao Cui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PQBF:+I/O-Efficient+Approximate+Nearest+Neighbor+Search+by+Product+Quantization)|9| +|[Anomaly Detection in Dynamic Networks using Multi-view Time-Series Hypersphere Learning](https://doi.org/10.1145/3132847.3132964)|Xian Teng, YuRu Lin, Xidao Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Anomaly+Detection+in+Dynamic+Networks+using+Multi-view+Time-Series+Hypersphere+Learning)|9| +|[BL-ECD: Broad Learning based Enterprise Community Detection via Hierarchical Structure Fusion](https://doi.org/10.1145/3132847.3133026)|Jiawei Zhang, Limeng Cui, Philip S. Yu, Yuanhua Lv||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BL-ECD:+Broad+Learning+based+Enterprise+Community+Detection+via+Hierarchical+Structure+Fusion)|9| +|[To Be Connected, or Not to Be Connected: That is the Minimum Inefficiency Subgraph Problem](https://doi.org/10.1145/3132847.3132991)|Natali Ruchansky, Francesco Bonchi, David GarcíaSoriano, Francesco Gullo, Nicolas Kourtellis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=To+Be+Connected,+or+Not+to+Be+Connected:+That+is+the+Minimum+Inefficiency+Subgraph+Problem)|9| +|[Weakly-Guided User Stance Prediction via Joint Modeling of Content and Social Interaction](https://doi.org/10.1145/3132847.3133020)|Rui Dong, Yizhou Sun, Lu Wang, Yupeng Gu, Yuan Zhong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weakly-Guided+User+Stance+Prediction+via+Joint+Modeling+of+Content+and+Social+Interaction)|9| +|[Source Retrieval for Web-Scale Text Reuse Detection](https://doi.org/10.1145/3132847.3133097)|Matthias Hagen, Martin Potthast, Payam Adineh, Ehsan Fatehifar, Benno Stein||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Source+Retrieval+for+Web-Scale+Text+Reuse+Detection)|9| +|[Deep Multi-Similarity Hashing for Multi-label Image Retrieval](https://doi.org/10.1145/3132847.3133084)|Tong Li, Sheng Gao, Yajing Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Multi-Similarity+Hashing+for+Multi-label+Image+Retrieval)|9| |[Combining Local and Global Word Embeddings for Microblog Stemming](https://doi.org/10.1145/3132847.3133103)|Anurag Roy, Trishnendu Ghorai, Kripabandhu Ghosh, Saptarshi Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Combining+Local+and+Global+Word+Embeddings+for+Microblog+Stemming)|9| -|[Visualizing Deep Neural Networks with Interaction of Super-pixels](https://doi.org/10.1145/3132847.3133108)|Shixin Tian, Ying Cai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visualizing+Deep+Neural+Networks+with+Interaction+of+Super-pixels)|9| -|[Session-aware Information Embedding for E-commerce Product Recommendation](https://doi.org/10.1145/3132847.3133163)|Chen Wu, Ming Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Session-aware+Information+Embedding+for+E-commerce+Product+Recommendation)|9| -|[Conflict of Interest Declaration and Detection System in Heterogeneous Networks](https://doi.org/10.1145/3132847.3133134)|Siyuan Wu, Leong Hou U, Sourav S. Bhowmick, Wolfgang Gatterbauer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Conflict+of+Interest+Declaration+and+Detection+System+in+Heterogeneous+Networks)|9| -|[JointSem: Combining Query Entity Linking and Entity based Document Ranking](https://doi.org/10.1145/3132847.3133048)|Chenyan Xiong, Zhengzhong Liu, Jamie Callan, Eduard H. Hovy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=JointSem:+Combining+Query+Entity+Linking+and+Entity+based+Document+Ranking)|9| -|[Spectrum-based Deep Neural Networks for Fraud Detection](https://doi.org/10.1145/3132847.3133139)|Shuhan Yuan, Xintao Wu, Jun Li, Aidong Lu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spectrum-based+Deep+Neural+Networks+for+Fraud+Detection)|9| -|[PODIUM: Procuring Opinions from Diverse Users in a Multi-Dimensional World](https://doi.org/10.1145/3132847.3133176)|Yael Amsterdamer, Oded Goldreich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PODIUM:+Procuring+Opinions+from+Diverse+Users+in+a+Multi-Dimensional+World)|9| -|[IMaxer: A Unified System for Evaluating Influence Maximization in Location-based Social Networks](https://doi.org/10.1145/3132847.3133184)|Muhammad Aamir Saleem, Rohit Kumar, Toon Calders, Xike Xie, Torben Bach Pedersen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=IMaxer:+A+Unified+System+for+Evaluating+Influence+Maximization+in+Location-based+Social+Networks)|9| -|[ClaimVerif: A Real-time Claim Verification System Using the Web and Fact Databases](https://doi.org/10.1145/3132847.3133182)|Shi Zhi, Yicheng Sun, Jiayi Liu, Chao Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ClaimVerif:+A+Real-time+Claim+Verification+System+Using+the+Web+and+Fact+Databases)|9| -|[Modeling Opinion Influence with User Dual Identity](https://doi.org/10.1145/3132847.3133125)|Chengyao Chen, Zhitao Wang, Wenjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Opinion+Influence+with+User+Dual+Identity)|8| -|[Automatic Catchphrase Identification from Legal Court Case Documents](https://doi.org/10.1145/3132847.3133102)|Arpan Mandal, Kripabandhu Ghosh, Arindam Pal, Saptarshi Ghosh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Catchphrase+Identification+from+Legal+Court+Case+Documents)|8| -|[Using Knowledge Graphs to Explain Entity Co-occurrence in Twitter](https://doi.org/10.1145/3132847.3133161)|Yiwei Wang, Mark James Carman, YuanFang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Knowledge+Graphs+to+Explain+Entity+Co-occurrence+in+Twitter)|8| -|[VizQ: A System for Scalable Processing of Visibility Queries in 3D Spatial Databases](https://doi.org/10.1145/3132847.3133190)|Arif Arman, Mohammed Eunus Ali, Farhana Murtaza Choudhury, Kaysar Abdullah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=VizQ:+A+System+for+Scalable+Processing+of+Visibility+Queries+in+3D+Spatial+Databases)|8| -|[CoreDB: a Data Lake Service](https://doi.org/10.1145/3132847.3133171)|Amin Beheshti, Boualem Benatallah, Reza Nouri, Van Munin Chhieng, HuangTao Xiong, Xu Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoreDB:+a+Data+Lake+Service)|8| -|[Rapid Analysis of Network Connectivity](https://doi.org/10.1145/3132847.3133170)|Scott Freitas, Hanghang Tong, Nan Cao, Yinglong Xia||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rapid+Analysis+of+Network+Connectivity)|8| -|[TaCLe: Learning Constraints in Tabular Data](https://doi.org/10.1145/3132847.3133193)|Sergey Paramonov, Samuel Kolb, Tias Guns, Luc De Raedt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TaCLe:+Learning+Constraints+in+Tabular+Data)|8| -|[Blockchain-based Data Management and Analytics for Micro-insurance Applications](https://doi.org/10.1145/3132847.3133172)|Hoang Tam Vo, Lenin Mehedy, Mukesh K. Mohania, Ermyas Abebe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Blockchain-based+Data+Management+and+Analytics+for+Micro-insurance+Applications)|8| -|[Deep Multi-Similarity Hashing for Multi-label Image Retrieval](https://doi.org/10.1145/3132847.3133084)|Tong Li, Sheng Gao, Yajing Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Multi-Similarity+Hashing+for+Multi-label+Image+Retrieval)|7| -|[TICC: Transparent Inter-Column Compression for Column-Oriented Database Systems](https://doi.org/10.1145/3132847.3133077)|Hao Liu, Yudian Ji, Jiang Xiao, Haoyu Tan, Qiong Luo, Lionel M. Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TICC:+Transparent+Inter-Column+Compression+for+Column-Oriented+Database+Systems)|7| -|[SEQ: Example-based Query for Spatial Objects](https://doi.org/10.1145/3132847.3133073)|Siqiang Luo, Jiafeng Hu, Reynold Cheng, Jing Yan, Ben Kao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SEQ:+Example-based+Query+for+Spatial+Objects)|7| -|[SummIt: A Tool for Extractive Summarization, Discovery and Analysis](https://doi.org/10.1145/3132847.3133183)|Guy Feigenblat, Odellia Boni, Haggai Roitman, David Konopnicki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SummIt:+A+Tool+for+Extractive+Summarization,+Discovery+and+Analysis)|7| -|[Optimizing Email Volume For Sitewide Engagement](https://doi.org/10.1145/3132847.3132849)|Rupesh Gupta, Guanfeng Liang, Rómer Rosales||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Email+Volume+For+Sitewide+Engagement)|6| -|[Active Sampling for Large-scale Information Retrieval Evaluation](https://doi.org/10.1145/3132847.3133015)|Dan Li, Evangelos Kanoulas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Active+Sampling+for+Large-scale+Information+Retrieval+Evaluation)|5| -|[A Novel Approach for Efficient Computation of Community Aware Ridesharing Groups](https://doi.org/10.1145/3132847.3133117)|Samiul Anwar, Shuha Nabila, Tanzima Hashem||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Novel+Approach+for+Efficient+Computation+of+Community+Aware+Ridesharing+Groups)|5| -|[POOLSIDE: An Online Probabilistic Knowledge Base for Shopping Decision Support](https://doi.org/10.1145/3132847.3133168)|Ping Zhong, Zhanhuai Li, Qun Chen, Yanyan Wang, Lianping Wang, Murtadha H. M. Ahmed, Fengfeng Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=POOLSIDE:+An+Online+Probabilistic+Knowledge+Base+for+Shopping+Decision+Support)|5| -|[Regularized and Retrofitted models for Learning Sentence Representation with Context](https://doi.org/10.1145/3132847.3133011)|Tanay Kumar Saha, Shafiq R. Joty, Naeemul Hassan, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularized+and+Retrofitted+models+for+Learning+Sentence+Representation+with+Context)|4| -|[Fast Word Recognition for Noise channel-based Models in Scenarios with Noise Specific Domain Knowledge](https://doi.org/10.1145/3132847.3133028)|Marco Cristo, Raíza Hanada, André Luiz da Costa Carvalho, Fernando Anglada Lores, Maria da Graça Campos Pimentel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Word+Recognition+for+Noise+channel-based+Models+in+Scenarios+with+Noise+Specific+Domain+Knowledge)|4| -|[Understanding Engagement through Search Behaviour](https://doi.org/10.1145/3132847.3132978)|Mengdie Zhuang, Gianluca Demartini, Elaine G. Toms||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Engagement+through+Search+Behaviour)|4| -|[An Euclidean Distance based on the Weighted Self-information Related Data Transformation for Nominal Data Clustering](https://doi.org/10.1145/3132847.3133062)|Lei Gu, Liying Zhang, Yang Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Euclidean+Distance+based+on+the+Weighted+Self-information+Related+Data+Transformation+for+Nominal+Data+Clustering)|4| -|[FUSION: An Online Method for Multistream Classification](https://doi.org/10.1145/3132847.3132886)|Ahsanul Haque, Zhuoyi Wang, Swarup Chandra, Bo Dong, Latifur Khan, Kevin W. Hamlen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FUSION:+An+Online+Method+for+Multistream+Classification)|3| -|[DeepHawkes: Bridging the Gap between Prediction and Understanding of Information Cascades](https://doi.org/10.1145/3132847.3132973)|Qi Cao, Huawei Shen, Keting Cen, Wentao Ouyang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepHawkes:+Bridging+the+Gap+between+Prediction+and+Understanding+of+Information+Cascades)|3| -|[Efficient Document Filtering Using Vector Space Topic Expansion and Pattern-Mining: The Case of Event Detection in Microposts](https://doi.org/10.1145/3132847.3133016)|Julia Proskurnia, Ruslan Mavlyutov, Carlos Castillo, Karl Aberer, Philippe CudréMauroux||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Document+Filtering+Using+Vector+Space+Topic+Expansion+and+Pattern-Mining:+The+Case+of+Event+Detection+in+Microposts)|2| -|[Computing Betweenness Centrality in B-hypergraphs](https://doi.org/10.1145/3132847.3133093)|Kwang Hee Lee, MyoungHo Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+Betweenness+Centrality+in+B-hypergraphs)|2| +|[Semantic Annotation for Places in LBSN through Graph Embedding](https://doi.org/10.1145/3132847.3133075)|Yan Wang, Zongxu Qin, Jun Pang, Yang Zhang, Jin Xin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantic+Annotation+for+Places+in+LBSN+through+Graph+Embedding)|9| +|[SemDia: Semantic Rule-Based Equipment Diagnostics Tool](https://doi.org/10.1145/3132847.3133191)|Gulnar Mehdi, Evgeny Kharlamov, Ognjen Savkovic, Guohui Xiao, Elem Güzel Kalayci, Sebastian Brandt, Ian Horrocks, Mikhail Roshchin, Thomas A. Runkler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemDia:+Semantic+Rule-Based+Equipment+Diagnostics+Tool)|9| +|[Jointly Modeling Static Visual Appearance and Temporal Pattern for Unsupervised Video Hashing](https://doi.org/10.1145/3132847.3133030)|Chao Li, Yang Yang, Jiewei Cao, Zi Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Jointly+Modeling+Static+Visual+Appearance+and+Temporal+Pattern+for+Unsupervised+Video+Hashing)|8| +|[Efficient Computation of Subspace Skyline over Categorical Domains](https://doi.org/10.1145/3132847.3133012)|Md Farhadur Rahman, Abolfazl Asudeh, Nick Koudas, Gautam Das||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Computation+of+Subspace+Skyline+over+Categorical+Domains)|8| +|[Bringing Salary Transparency to the World: Computing Robust Compensation Insights via LinkedIn Salary](https://doi.org/10.1145/3132847.3132863)|Krishnaram Kenthapadi, Stuart Ambler, Liang Zhang, Deepak Agarwal||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bringing+Salary+Transparency+to+the+World:+Computing+Robust+Compensation+Insights+via+LinkedIn+Salary)|8| +|[QLever: A Query Engine for Efficient SPARQL+Text Search](https://doi.org/10.1145/3132847.3132921)|Hannah Bast, Björn Buchhold||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QLever:+A+Query+Engine+for+Efficient+SPARQL+Text+Search)|8| +|[Length Adaptive Recurrent Model for Text Classification](https://doi.org/10.1145/3132847.3132947)|Zhengjie Huang, Zi Ye, Shuangyin Li, Rong Pan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Length+Adaptive+Recurrent+Model+for+Text+Classification)|8| +|[FM-Hawkes: A Hawkes Process Based Approach for Modeling Online Activity Correlations](https://doi.org/10.1145/3132847.3132883)|Sha Li, Xiaofeng Gao, Weiming Bao, Guihai Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FM-Hawkes:+A+Hawkes+Process+Based+Approach+for+Modeling+Online+Activity+Correlations)|8| +|[Health Forum Thread Recommendation Using an Interest Aware Topic Model](https://doi.org/10.1145/3132847.3132946)|Kishaloy Halder, MinYen Kan, Kazunari Sugiyama||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Health+Forum+Thread+Recommendation+Using+an+Interest+Aware+Topic+Model)|8| +|[Fully Dynamic Algorithm for Top-k Densest Subgraphs](https://doi.org/10.1145/3132847.3132966)|Muhammad Anis Uddin Nasir, Aristides Gionis, Gianmarco De Francisci Morales, Sarunas Girdzijauskas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fully+Dynamic+Algorithm+for+Top-k+Densest+Subgraphs)|8| +|[Optimizing Email Volume For Sitewide Engagement](https://doi.org/10.1145/3132847.3132849)|Rupesh Gupta, Guanfeng Liang, Rómer Rosales||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Email+Volume+For+Sitewide+Engagement)|8| +|[Understanding Engagement through Search Behaviour](https://doi.org/10.1145/3132847.3132978)|Mengdie Zhuang, Gianluca Demartini, Elaine G. Toms||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Engagement+through+Search+Behaviour)|8| +|[Personalized Image Aesthetics Assessment](https://doi.org/10.1145/3132847.3133052)|Xiang Deng, Chaoran Cui, Huidi Fang, Xiushan Nie, Yilong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalized+Image+Aesthetics+Assessment)|8| +|[An Ad CTR Prediction Method Based on Feature Learning of Deep and Shallow Layers](https://doi.org/10.1145/3132847.3133072)|Zai Huang, Zhen Pan, Qi Liu, Bai Long, Haiping Ma, Enhong Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Ad+CTR+Prediction+Method+Based+on+Feature+Learning+of+Deep+and+Shallow+Layers)|8| +|[Algorithmic Bias: Do Good Systems Make Relevant Documents More Retrievable?](https://doi.org/10.1145/3132847.3133135)|Colin Wilkie, Leif Azzopardi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Algorithmic+Bias:+Do+Good+Systems+Make+Relevant+Documents+More+Retrievable?)|8| +|[Interactive System for Reasoning about Document Age](https://doi.org/10.1145/3132847.3133166)|Adam Jatowt, Ricardo Campos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+System+for+Reasoning+about+Document+Age)|8| +|[ClaimVerif: A Real-time Claim Verification System Using the Web and Fact Databases](https://doi.org/10.1145/3132847.3133182)|Shi Zhi, Yicheng Sun, Jiayi Liu, Chao Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ClaimVerif:+A+Real-time+Claim+Verification+System+Using+the+Web+and+Fact+Databases)|8| +|[Modeling Language Discrepancy for Cross-Lingual Sentiment Analysis](https://doi.org/10.1145/3132847.3132915)|Qiang Chen, Chenliang Li, Wenjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Language+Discrepancy+for+Cross-Lingual+Sentiment+Analysis)|7| +|[Does That Mean You're Happy?: RNN-based Modeling of User Interaction Sequences to Detect Good Abandonment](https://doi.org/10.1145/3132847.3133035)|Kyle Williams, Imed Zitouni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Does+That+Mean+You're+Happy?:+RNN-based+Modeling+of+User+Interaction+Sequences+to+Detect+Good+Abandonment)|7| +|[iFACT: An Interactive Framework to Assess Claims from Tweets](https://doi.org/10.1145/3132847.3132995)|WeeYong Lim, MongLi Lee, Wynne Hsu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=iFACT:+An+Interactive+Framework+to+Assess+Claims+from+Tweets)|7| +|[Modeling Student Learning Styles in MOOCs](https://doi.org/10.1145/3132847.3132965)|Yuling Shi, Zhiyong Peng, Hongning Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Student+Learning+Styles+in+MOOCs)|7| +|[Budgeted Task Scheduling for Crowdsourced Knowledge Acquisition](https://doi.org/10.1145/3132847.3133002)|Tao Han, Hailong Sun, Yangqiu Song, Zizhe Wang, Xudong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Budgeted+Task+Scheduling+for+Crowdsourced+Knowledge+Acquisition)|7| +|[Hyper Questions: Unsupervised Targeting of a Few Experts in Crowdsourcing](https://doi.org/10.1145/3132847.3132971)|Jiyi Li, Yukino Baba, Hisashi Kashima||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hyper+Questions:+Unsupervised+Targeting+of+a+Few+Experts+in+Crowdsourcing)|7| +|[Emotions in Social Networks: Distributions, Patterns, and Models](https://doi.org/10.1145/3132847.3132932)|Shengmin Jin, Reza Zafarani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Emotions+in+Social+Networks:+Distributions,+Patterns,+and+Models)|7| +|[Profiling DRDoS Attacks with Data Analytics Pipeline](https://doi.org/10.1145/3132847.3133155)|Laure BertiÉquille, Yury Zhauniarovich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Profiling+DRDoS+Attacks+with+Data+Analytics+Pipeline)|7| +|[Learning Graph-based Embedding For Time-Aware Product Recommendation](https://doi.org/10.1145/3132847.3133060)|Yuqi Li, Weizheng Chen, Hongfei Yan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Graph-based+Embedding+For+Time-Aware+Product+Recommendation)|7| +|[Predicting Short-Term Public Transport Demand via Inhomogeneous Poisson Processes](https://doi.org/10.1145/3132847.3133058)|Aditya Krishna Menon, Young Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predicting+Short-Term+Public+Transport+Demand+via+Inhomogeneous+Poisson+Processes)|7| +|[A Collaborative Ranking Model for Cross-Domain Recommendations](https://doi.org/10.1145/3132847.3133107)|Dimitrios Rafailidis, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Collaborative+Ranking+Model+for+Cross-Domain+Recommendations)|7| +|[Denoising Clinical Notes for Medical Literature Retrieval with Convolutional Neural Model](https://doi.org/10.1145/3132847.3133149)|Luca Soldaini, Andrew Yates, Nazli Goharian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Denoising+Clinical+Notes+for+Medical+Literature+Retrieval+with+Convolutional+Neural+Model)|7| +|[Non-Exhaustive, Overlapping Co-Clustering](https://doi.org/10.1145/3132847.3133078)|Joyce Jiyoung Whang, Inderjit S. Dhillon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Non-Exhaustive,+Overlapping+Co-Clustering)|7| +|[Select Your Questions Wisely: For Entity Resolution With Crowd Errors](https://doi.org/10.1145/3132847.3132876)|Vijaya Krishna Yalavarthi, Xiangyu Ke, Arijit Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Select+Your+Questions+Wisely:+For+Entity+Resolution+With+Crowd+Errors)|6| +|[Hybrid BiLSTM-Siamese network for FAQ Assistance](https://doi.org/10.1145/3132847.3132861)|Prerna Khurana, Puneet Agarwal, Gautam Shroff, Lovekesh Vig, Ashwin Srinivasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+BiLSTM-Siamese+network+for+FAQ+Assistance)|6| +|[Talking to Your TV: Context-Aware Voice Search with Hierarchical Recurrent Neural Networks](https://doi.org/10.1145/3132847.3132893)|Jinfeng Rao, Ferhan Türe, Hua He, Oliver Jojic, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Talking+to+Your+TV:+Context-Aware+Voice+Search+with+Hierarchical+Recurrent+Neural+Networks)|6| +|[Adaptive Persistence for Search Effectiveness Measures](https://doi.org/10.1145/3132847.3133033)|Jiepu Jiang, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Persistence+for+Search+Effectiveness+Measures)|6| +|[Deep Learning Based Forecasting of Critical Infrastructure Data](https://doi.org/10.1145/3132847.3133031)|Zahra Zohrevand, Uwe Glässer, Mohammad A. Tayebi, Hamed Yaghoubi Shahir, Mehdi Shirmaleki, Amir Yaghoubi Shahir||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Learning+Based+Forecasting+of+Critical+Infrastructure+Data)|6| +|[A Personalized Predictive Framework for Multivariate Clinical Time Series via Adaptive Model Selection](https://doi.org/10.1145/3132847.3132859)|Zitao Liu, Milos Hauskrecht||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Personalized+Predictive+Framework+for+Multivariate+Clinical+Time+Series+via+Adaptive+Model+Selection)|6| +|[Data Driven Chiller Plant Energy Optimization with Domain Knowledge](https://doi.org/10.1145/3132847.3132860)|Hoang Dung Vu, KokSoon Chai, Bryan D. Keating, Nurislam Tursynbek, Boyan Xu, Kaige Yang, Xiaoyan Yang, Zhenjie Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Data+Driven+Chiller+Plant+Energy+Optimization+with+Domain+Knowledge)|6| +|[QALink: Enriching Text Documents with Relevant Q&A Site Contents](https://doi.org/10.1145/3132847.3132934)|Yixuan Tang, Weilong Huang, Qi Liu, Anthony K. H. Tung, Xiaoli Wang, Jisong Yang, Beibei Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=QALink:+Enriching+Text+Documents+with+Relevant+Q&A+Site+Contents)|6| +|[Recommendation with Capacity Constraints](https://doi.org/10.1145/3132847.3133034)|Konstantina Christakopoulou, Jaya Kawale, Arindam Banerjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendation+with+Capacity+Constraints)|6| +|[A Topic Model Based on Poisson Decomposition](https://doi.org/10.1145/3132847.3132942)|Haixin Jiang, Rui Zhou, Limeng Zhang, Hua Wang, Yanchun Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Topic+Model+Based+on+Poisson+Decomposition)|6| +|[HotSpots: Failure Cascades on Heterogeneous Critical Infrastructure Networks](https://doi.org/10.1145/3132847.3132867)|Liangzhe Chen, Xinfeng Xu, Sangkeun Lee, Sisi Duan, Alfonso G. Tarditi, Supriya Chinthavali, B. Aditya Prakash||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HotSpots:+Failure+Cascades+on+Heterogeneous+Critical+Infrastructure+Networks)|6| +|[Estimating Event Focus Time Using Neural Word Embeddings](https://doi.org/10.1145/3132847.3133131)|Supratim Das, Arunav Mishra, Klaus Berberich, Vinay Setty||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Estimating+Event+Focus+Time+Using+Neural+Word+Embeddings)|6| +|[Identifying Top-K Influential Nodes in Networks](https://doi.org/10.1145/3132847.3133126)|Sara Mumtaz, Xiaoyang Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Identifying+Top-K+Influential+Nodes+in+Networks)|6| +|[Collaborative Sequence Prediction for Sequential Recommender](https://doi.org/10.1145/3132847.3133079)|Shuzi Niu, Rongzhi Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Sequence+Prediction+for+Sequential+Recommender)|6| +|[An Improved Test Collection and Baselines for Bibliographic Citation Recommendation](https://doi.org/10.1145/3132847.3133085)|Dwaipayan Roy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Improved+Test+Collection+and+Baselines+for+Bibliographic+Citation+Recommendation)|6| +|[A Study of Feature Construction for Text-based Forecasting of Time Series Variables](https://doi.org/10.1145/3132847.3133109)|Yiren Wang, Dominic Seyler, Shubhra Kanti Karmaker Santu, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Study+of+Feature+Construction+for+Text-based+Forecasting+of+Time+Series+Variables)|6| +|[Conflict of Interest Declaration and Detection System in Heterogeneous Networks](https://doi.org/10.1145/3132847.3133134)|Siyuan Wu, Leong Hou U, Sourav S. Bhowmick, Wolfgang Gatterbauer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Conflict+of+Interest+Declaration+and+Detection+System+in+Heterogeneous+Networks)|6| +|[HyPerInsight: Data Exploration Deep Inside HyPer](https://doi.org/10.1145/3132847.3133167)|Nina C. Hubig, Linnea Passing, Maximilian E. Schüle, Dimitri Vorona, Alfons Kemper, Thomas Neumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HyPerInsight:+Data+Exploration+Deep+Inside+HyPer)|6| +|[Metacrate: Organize and Analyze Millions of Data Profiles](https://doi.org/10.1145/3132847.3133180)|Sebastian Kruse, David Hahn, Marius Walter, Felix Naumann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Metacrate:+Organize+and+Analyze+Millions+of+Data+Profiles)|6| +|[Crowdsourced Selection on Multi-Attribute Data](https://doi.org/10.1145/3132847.3132891)|Xueping Weng, Guoliang Li, Huiqi Hu, Jianhua Feng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowdsourced+Selection+on+Multi-Attribute+Data)|5| +|[Efficient Document Filtering Using Vector Space Topic Expansion and Pattern-Mining: The Case of Event Detection in Microposts](https://doi.org/10.1145/3132847.3133016)|Julia Proskurnia, Ruslan Mavlyutov, Carlos Castillo, Karl Aberer, Philippe CudréMauroux||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+Document+Filtering+Using+Vector+Space+Topic+Expansion+and+Pattern-Mining:+The+Case+of+Event+Detection+in+Microposts)|5| +|[Modeling Affinity based Popularity Dynamics](https://doi.org/10.1145/3132847.3132923)|Minkyoung Kim, Daniel A. McFarland, Jure Leskovec||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Affinity+based+Popularity+Dynamics)|5| +|[Beyond Success Rate: Utility as a Search Quality Metric for Online Experiments](https://doi.org/10.1145/3132847.3132850)|Widad Machmouchi, Ahmed Hassan Awadallah, Imed Zitouni, Georg Buscher||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Beyond+Success+Rate:+Utility+as+a+Search+Quality+Metric+for+Online+Experiments)|5| +|[Outlier Detection in Sparse Data with Factorization Machines](https://doi.org/10.1145/3132847.3132987)|Mengxiao Zhu, Charu C. Aggarwal, Shuai Ma, Hui Zhang, Jinpeng Huai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Outlier+Detection+in+Sparse+Data+with+Factorization+Machines)|5| +|[BoostVHT: Boosting Distributed Streaming Decision Trees](https://doi.org/10.1145/3132847.3132974)|Theodore Vasiloudis, Foteini Beligianni, Gianmarco De Francisci Morales||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=BoostVHT:+Boosting+Distributed+Streaming+Decision+Trees)|5| +|[CNN-IETS: A CNN-based Probabilistic Approach for Information Extraction by Text Segmentation](https://doi.org/10.1145/3132847.3132962)|Meng Hu, Zhixu Li, Yongxin Shen, An Liu, Guanfeng Liu, Kai Zheng, Lei Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CNN-IETS:+A+CNN-based+Probabilistic+Approach+for+Information+Extraction+by+Text+Segmentation)|5| +|[Differentially Private Regression for Discrete-Time Survival Analysis](https://doi.org/10.1145/3132847.3132928)|Thông T. Nguyên, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differentially+Private+Regression+for+Discrete-Time+Survival+Analysis)|5| +|[A Neural Candidate-Selector Architecture for Automatic Structured Clinical Text Annotation](https://doi.org/10.1145/3132847.3132989)|Gaurav Singh, Iain James Marshall, James Thomas, John ShaweTaylor, Byron C. Wallace||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Neural+Candidate-Selector+Architecture+for+Automatic+Structured+Clinical+Text+Annotation)|5| +|[From Query-By-Keyword to Query-By-Example: LinkedIn Talent Search Approach](https://doi.org/10.1145/3132847.3132869)|Viet HaThuc, Yan Yan, Xianren Wu, Vijay Dialani, Abhishek Gupta, Shakti Sinha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Query-By-Keyword+to+Query-By-Example:+LinkedIn+Talent+Search+Approach)|5| +|[Exploiting Electronic Health Records to Mine Drug Effects on Laboratory Test Results](https://doi.org/10.1145/3132847.3132986)|Mohamed F. Ghalwash, Ying Li, Ping Zhang, Jianying Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Electronic+Health+Records+to+Mine+Drug+Effects+on+Laboratory+Test+Results)|5| +|[Tone Analyzer for Online Customer Service: An Unsupervised Model with Interfered Training](https://doi.org/10.1145/3132847.3132864)|Peifeng Yin, Zhe Liu, Anbang Xu, Taiga Nakamura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tone+Analyzer+for+Online+Customer+Service:+An+Unsupervised+Model+with+Interfered+Training)|5| +|[Summarizing Significant Changes in Network Traffic Using Contrast Pattern Mining](https://doi.org/10.1145/3132847.3133111)|Elaheh Alipour Chavary, Sarah M. Erfani, Christopher Leckie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Summarizing+Significant+Changes+in+Network+Traffic+Using+Contrast+Pattern+Mining)|5| +|[Fast K-means for Large Scale Clustering](https://doi.org/10.1145/3132847.3133091)|Qinghao Hu, Jiaxiang Wu, Lu Bai, Yifan Zhang, Jian Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+K-means+for+Large+Scale+Clustering)|5| +|[Truth Discovery by Claim and Source Embedding](https://doi.org/10.1145/3132847.3133069)|Shanshan Lyu, Wentao Ouyang, Huawei Shen, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Truth+Discovery+by+Claim+and+Source+Embedding)|5| +|[Learning Temporal Ambiguity in Web Search Queries](https://doi.org/10.1145/3132847.3133129)|Behrooz Mansouri, Mohammad Sadegh Zahedi, Maseud Rahgozar, Farhad Oroumchian, Ricardo Campos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Temporal+Ambiguity+in+Web+Search+Queries)|5| +|[A Way to Boost Semi-NMF for Document Clustering](https://doi.org/10.1145/3132847.3133157)|Aghiles Salah, Melissa Ailem, Mohamed Nadif||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Way+to+Boost+Semi-NMF+for+Document+Clustering)|5| +|[Hybrid MemNet for Extractive Summarization](https://doi.org/10.1145/3132847.3133127)|Abhishek Kumar Singh, Manish Gupta, Vasudeva Varma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hybrid+MemNet+for+Extractive+Summarization)|5| +|[Product Exploration based on Latent Visual Attributes](https://doi.org/10.1145/3132847.3133175)|Tomás Skopal, Ladislav Peska, Gregor Kovalcík, Tomás Grosup, Jakub Lokoc||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Product+Exploration+based+on+Latent+Visual+Attributes)|5| +|[Construction of a National Scale ENF Map using Online Multimedia Data](https://doi.org/10.1145/3132847.3132982)|Hyunsoo Kim, Youngbae Jeon, Ji Won Yoon||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Construction+of+a+National+Scale+ENF+Map+using+Online+Multimedia+Data)|4| +|[Learning Visual Features from Snapshots for Web Search](https://doi.org/10.1145/3132847.3132943)|Yixing Fan, Jiafeng Guo, Yanyan Lan, Jun Xu, Liang Pang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Visual+Features+from+Snapshots+for+Web+Search)|4| +|[Communication-Efficient Distributed Skyline Computation](https://doi.org/10.1145/3132847.3132927)|Haoyu Zhang, Qin Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Communication-Efficient+Distributed+Skyline+Computation)|4| +|[Scaling Probabilistic Temporal Query Evaluation](https://doi.org/10.1145/3132847.3133038)|Melisachew Wudage Chekol||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scaling+Probabilistic+Temporal+Query+Evaluation)|4| +|[Forecasting Ad-Impressions on Online Retail Websites using Non-homogeneous Hawkes Processes](https://doi.org/10.1145/3132847.3133017)|Krunal Parmar, Samuel Bushi, Sourangshu Bhattacharya, Surender Kumar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Forecasting+Ad-Impressions+on+Online+Retail+Websites+using+Non-homogeneous+Hawkes+Processes)|4| +|[Unsupervised Concept Categorization and Extraction from Scientific Document Titles](https://doi.org/10.1145/3132847.3133023)|Adit Krishnan, Aravind Sankar, Shi Zhi, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Concept+Categorization+and+Extraction+from+Scientific+Document+Titles)|4| +|[Representation Learning of Large-Scale Knowledge Graphs via Entity Feature Combinations](https://doi.org/10.1145/3132847.3132961)|Zhen Tan, Xiang Zhao, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Representation+Learning+of+Large-Scale+Knowledge+Graphs+via+Entity+Feature+Combinations)|4| +|[A Novel Approach for Efficient Computation of Community Aware Ridesharing Groups](https://doi.org/10.1145/3132847.3133117)|Samiul Anwar, Shuha Nabila, Tanzima Hashem||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Novel+Approach+for+Efficient+Computation+of+Community+Aware+Ridesharing+Groups)|4| +|[An Empirical Study of Embedding Features in Learning to Rank](https://doi.org/10.1145/3132847.3133138)|Faezeh Ensan, Ebrahim Bagheri, Amal Zouaq, Alexandre Kouznetsov||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Study+of+Embedding+Features+in+Learning+to+Rank)|4| +|[Chinese Named Entity Recognition with Character-Word Mixed Embedding](https://doi.org/10.1145/3132847.3133088)|Shijia E, Yang Xiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Chinese+Named+Entity+Recognition+with+Character-Word+Mixed+Embedding)|4| +|[Privacy of Hidden Profiles: Utility-Preserving Profile Removal in Online Forums](https://doi.org/10.1145/3132847.3133140)|Sedigheh Eslami, Asia J. Biega, Rishiraj Saha Roy, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy+of+Hidden+Profiles:+Utility-Preserving+Profile+Removal+in+Online+Forums)|4| +|[Graph Ladder Networks for Network Classification](https://doi.org/10.1145/3132847.3133124)|Ruiqi Hu, Shirui Pan, Jing Jiang, Guodong Long||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Graph+Ladder+Networks+for+Network+Classification)|4| +|[A Communication Efficient Parallel DBSCAN Algorithm based on Parameter Server](https://doi.org/10.1145/3132847.3133112)|Xu Hu, Jun Huang, Minghui Qiu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Communication+Efficient+Parallel+DBSCAN+Algorithm+based+on+Parameter+Server)|4| +|[J-REED: Joint Relation Extraction and Entity Disambiguation](https://doi.org/10.1145/3132847.3133090)|Dat Ba Nguyen, Martin Theobald, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=J-REED:+Joint+Relation+Extraction+and+Entity+Disambiguation)|4| +|[Collaborative Topic Regression with Denoising AutoEncoder for Content and Community Co-Representation](https://doi.org/10.1145/3132847.3133128)|Trong T. Nguyen, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Topic+Regression+with+Denoising+AutoEncoder+for+Content+and+Community+Co-Representation)|4| +|[pm-SCAN: an I/O Efficient Structural Clustering Algorithm for Large-scale Graphs](https://doi.org/10.1145/3132847.3133121)|Jung Hyuk Seo, Myoung Ho Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=pm-SCAN:+an+I/O+Efficient+Structural+Clustering+Algorithm+for+Large-scale+Graphs)|4| +|[Sentence Retrieval with Sentiment-specific Topical Anchoring for Review Summarization](https://doi.org/10.1145/3132847.3133153)|Jiaxing Tan, Alexander Kotov, Rojiar Pir Mohammadiani, Yumei Huo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sentence+Retrieval+with+Sentiment-specific+Topical+Anchoring+for+Review+Summarization)|4| +|[IMaxer: A Unified System for Evaluating Influence Maximization in Location-based Social Networks](https://doi.org/10.1145/3132847.3133184)|Muhammad Aamir Saleem, Rohit Kumar, Toon Calders, Xike Xie, Torben Bach Pedersen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=IMaxer:+A+Unified+System+for+Evaluating+Influence+Maximization+in+Location-based+Social+Networks)|4| +|[A Scalable Graph-Coarsening Based Index for Dynamic Graph Databases](https://doi.org/10.1145/3132847.3133003)|Akshay Kansal, Francesca Spezzano||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Scalable+Graph-Coarsening+Based+Index+for+Dynamic+Graph+Databases)|3| +|[Finding Periodic Discrete Events in Noisy Streams](https://doi.org/10.1145/3132847.3132981)|Abhirup Ghosh, Christopher Lucas, Rik Sarkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+Periodic+Discrete+Events+in+Noisy+Streams)|3| +|[Temporal Analog Retrieval using Transformation over Dual Hierarchical Structures](https://doi.org/10.1145/3132847.3132917)|Yating Zhang, Adam Jatowt, Katsumi Tanaka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Temporal+Analog+Retrieval+using+Transformation+over+Dual+Hierarchical+Structures)|3| +|[Highly Efficient Mining of Overlapping Clusters in Signed Weighted Networks](https://doi.org/10.1145/3132847.3133004)|TuanAnh Hoang, EePeng Lim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Highly+Efficient+Mining+of+Overlapping+Clusters+in+Signed+Weighted+Networks)|3| +|[Stream Aggregation Through Order Sampling](https://doi.org/10.1145/3132847.3133042)|Nick G. Duffield, Yunhong Xu, Liangzhen Xia, Nesreen K. Ahmed, Minlan Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Stream+Aggregation+Through+Order+Sampling)|3| +|[Coupled Sparse Matrix Factorization for Response Time Prediction in Logistics Services](https://doi.org/10.1145/3132847.3132948)|Yuqi Wang, Jiannong Cao, Lifang He, Wengen Li, Lichao Sun, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Coupled+Sparse+Matrix+Factorization+for+Response+Time+Prediction+in+Logistics+Services)|3| +|[On Migratory Behavior in Video Consumption](https://doi.org/10.1145/3132847.3132884)|Huan Yan, TzuHeng Lin, Gang Wang, Yong Li, Haitao Zheng, Depeng Jin, Ben Y. Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Migratory+Behavior+in+Video+Consumption)|3| +|[Understanding and Predicting Weight Loss with Mobile Social Networking Data](https://doi.org/10.1145/3132847.3133019)|Zhiwei Wang, Tyler Derr, Dawei Yin, Jiliang Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+and+Predicting+Weight+Loss+with+Mobile+Social+Networking+Data)|3| +|[Indexable Bayesian Personalized Ranking for Efficient Top-k Recommendation](https://doi.org/10.1145/3132847.3132913)|Dung D. Le, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Indexable+Bayesian+Personalized+Ranking+for+Efficient+Top-k+Recommendation)|3| +|[DeMalC: A Feature-rich Machine Learning Framework for Malicious Call Detection](https://doi.org/10.1145/3132847.3132848)|Yuhong Li, Dongmei Hou, Aimin Pan, Zhiguo Gong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeMalC:+A+Feature-rich+Machine+Learning+Framework+for+Malicious+Call+Detection)|3| +|[Minimizing Tension in Teams](https://doi.org/10.1145/3132847.3133013)|Behzad Golshan, Evimaria Terzi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Minimizing+Tension+in+Teams)|3| +|[Deep Context Modeling for Web Query Entity Disambiguation](https://doi.org/10.1145/3132847.3132856)|Zhen Liao, Xinying Song, Yelong Shen, Saekoo Lee, Jianfeng Gao, Ciya Liao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Context+Modeling+for+Web+Query+Entity+Disambiguation)|3| +|[An Empirical Analysis of Pruning Techniques: Performance, Retrievability and Bias](https://doi.org/10.1145/3132847.3133151)|RueyCheng Chen, Leif Azzopardi, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Analysis+of+Pruning+Techniques:+Performance,+Retrievability+and+Bias)|3| +|[On Discovering the Number of Document Topics via Conceptual Latent Space](https://doi.org/10.1145/3132847.3133086)|Nghia DuongTrung, Lars SchmidtThieme||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Discovering+the+Number+of+Document+Topics+via+Conceptual+Latent+Space)|3| +|[Interest Diffusion in Heterogeneous Information Network for Personalized Item Ranking](https://doi.org/10.1145/3132847.3133061)|Mukul Gupta, Pradeep Kumar, Rajhans Mishra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interest+Diffusion+in+Heterogeneous+Information+Network+for+Personalized+Item+Ranking)|3| +|[Ontology-based Graph Visualization for Summarized View](https://doi.org/10.1145/3132847.3133113)|Xin Huang, Byron Choi, Jianliang Xu, William K. Cheung, Yanchun Zhang, Jiming Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ontology-based+Graph+Visualization+for+Summarized+View)|3| +|[Paraphrastic Fusion for Abstractive Multi-Sentence Compression Generation](https://doi.org/10.1145/3132847.3133106)|Mir Tafseer Nayeem, Yllias Chali||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Paraphrastic+Fusion+for+Abstractive+Multi-Sentence+Compression+Generation)|3| +|[Boolean Matrix Decomposition by Formal Concept Sampling](https://doi.org/10.1145/3132847.3133054)|Petr Osicka, Martin Trnecka||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Boolean+Matrix+Decomposition+by+Formal+Concept+Sampling)|3| +|[Enhancing Knowledge Graph Completion By Embedding Correlations](https://doi.org/10.1145/3132847.3133143)|Soumajit Pal, Jacopo Urbani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhancing+Knowledge+Graph+Completion+By+Embedding+Correlations)|3| +|[When Labels Fall Short: Property Graph Simulation via Blending of Network Structure and Vertex Attributes](https://doi.org/10.1145/3132847.3133065)|Arun V. Sathanur, Sutanay Choudhury, Cliff A. Joslyn, Sumit Purohit||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Labels+Fall+Short:+Property+Graph+Simulation+via+Blending+of+Network+Structure+and+Vertex+Attributes)|3| +|[Revealing the Hidden Links in Content Networks: An Application to Event Discovery](https://doi.org/10.1145/3132847.3133148)|Antonia Saravanou, Ioannis Katakis, George Valkanas, Vana Kalogeraki, Dimitrios Gunopulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Revealing+the+Hidden+Links+in+Content+Networks:+An+Application+to+Event+Discovery)|3| +|[Learning to Rank with Query-level Semi-supervised Autoencoders](https://doi.org/10.1145/3132847.3133049)|Bo Xu, Hongfei Lin, Yuan Lin, Kan Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Rank+with+Query-level+Semi-supervised+Autoencoders)|3| +|[Attentive Graph-based Recursive Neural Network for Collective Vertex Classification](https://doi.org/10.1145/3132847.3133081)|Qiongkai Xu, Qing Wang, Chenchen Xu, Lizhen Qu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attentive+Graph-based+Recursive+Neural+Network+for+Collective+Vertex+Classification)|3| +|[Bayesian Heteroscedastic Matrix Factorization for Conversion Rate Prediction](https://doi.org/10.1145/3132847.3133076)|Hongxia Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bayesian+Heteroscedastic+Matrix+Factorization+for+Conversion+Rate+Prediction)|3| +|[Cluster-level Emotion Pattern Matching for Cross-Domain Social Emotion Classification](https://doi.org/10.1145/3132847.3133063)|Endong Zhu, Yanghui Rao, Haoran Xie, Yuwei Liu, Jian Yin, Fu Lee Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Cluster-level+Emotion+Pattern+Matching+for+Cross-Domain+Social+Emotion+Classification)|3| +|[Knowledge-based Question Answering by Jointly Generating, Copying and Paraphrasing](https://doi.org/10.1145/3132847.3133064)|Shuguang Zhu, Xiang Cheng, Sen Su, Shuang Lang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge-based+Question+Answering+by+Jointly+Generating,+Copying+and+Paraphrasing)|3| +|[Rapid Analysis of Network Connectivity](https://doi.org/10.1145/3132847.3133170)|Scott Freitas, Hanghang Tong, Nan Cao, Yinglong Xia||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rapid+Analysis+of+Network+Connectivity)|3| +|[Urbanity: A System for Interactive Exploration of Urban Dynamics from Streaming Human Sensing Data](https://doi.org/10.1145/3132847.3133177)|Mengxiong Liu, Zhengchao Liu, Chao Zhang, Keyang Zhang, Quan Yuan, Tim Hanratty, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Urbanity:+A+System+for+Interactive+Exploration+of+Urban+Dynamics+from+Streaming+Human+Sensing+Data)|3| +|[TaCLe: Learning Constraints in Tabular Data](https://doi.org/10.1145/3132847.3133193)|Sergey Paramonov, Samuel Kolb, Tias Guns, Luc De Raedt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TaCLe:+Learning+Constraints+in+Tabular+Data)|3| +|[StreamingCube: A Unified Framework for Stream Processing and OLAP Analysis](https://doi.org/10.1145/3132847.3133165)|Salman Ahmed Shaikh, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=StreamingCube:+A+Unified+Framework+for+Stream+Processing+and+OLAP+Analysis)|3| +|[When Deep Learning Meets Transfer Learning](https://doi.org/10.1145/3132847.3137175)|Qiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Deep+Learning+Meets+Transfer+Learning)|2| +|[A Comparison of Nuggets and Clusters for Evaluating Timeline Summaries](https://doi.org/10.1145/3132847.3133000)|Gaurav Baruah, Richard McCreadie, Jimmy Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Comparison+of+Nuggets+and+Clusters+for+Evaluating+Timeline+Summaries)|2| +|[Extracting Records from the Web Using a Signal Processing Approach](https://doi.org/10.1145/3132847.3132875)|Roberto Panerai Velloso, Carina F. Dorneles||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Records+from+the+Web+Using+a+Signal+Processing+Approach)|2| +|[Learning to Un-Rank: Quantifying Search Exposure for Users in Online Communities](https://doi.org/10.1145/3132847.3133040)|Asia J. Biega, Azin Ghazimatin, Hakan Ferhatosmanoglu, Krishna P. Gummadi, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Un-Rank:+Quantifying+Search+Exposure+for+Users+in+Online+Communities)|2| +|[Regularized and Retrofitted models for Learning Sentence Representation with Context](https://doi.org/10.1145/3132847.3133011)|Tanay Kumar Saha, Shafiq R. Joty, Naeemul Hassan, Mohammad Al Hasan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularized+and+Retrofitted+models+for+Learning+Sentence+Representation+with+Context)|2| +|[Linking News across Multiple Streams for Timeliness Analysis](https://doi.org/10.1145/3132847.3132988)|Ida Mele, Seyed Ali Bahrainian, Fabio Crestani||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Linking+News+across+Multiple+Streams+for+Timeliness+Analysis)|2| +|[Collaborative Filtering as a Case-Study for Model Parallelism on Bulk Synchronous Systems](https://doi.org/10.1145/3132847.3132862)|Ariyam Das, Ishan Upadhyaya, Xiangrui Meng, Ameet Talwalkar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Filtering+as+a+Case-Study+for+Model+Parallelism+on+Bulk+Synchronous+Systems)|2| +|[DiagTree: Diagnostic Tree for Differential Diagnosis](https://doi.org/10.1145/3132847.3132924)|Yejin Kim, Jingyun Choi, Yosep Chong, Xiaoqian Jiang, Hwanjo Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DiagTree:+Diagnostic+Tree+for+Differential+Diagnosis)|2| +|[Latency Reduction via Decision Tree Based Query Construction](https://doi.org/10.1145/3132847.3132865)|Aman Grover, Dhruv Arya, Ganesh Venkataraman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Latency+Reduction+via+Decision+Tree+Based+Query+Construction)|2| +|[Building a Dossier on the Cheap: Integrating Distributed Personal Data Resources Under Cost Constraints](https://doi.org/10.1145/3132847.3132951)|Imrul Chowdhury Anindya, Harichandan Roy, Murat Kantarcioglu, Bradley A. Malin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Building+a+Dossier+on+the+Cheap:+Integrating+Distributed+Personal+Data+Resources+Under+Cost+Constraints)|2| +|[Content Recommendation by Noise Contrastive Transfer Learning of Feature Representation](https://doi.org/10.1145/3132847.3132855)|Yiyang Li, Guanyu Tao, Weinan Zhang, Yong Yu, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Content+Recommendation+by+Noise+Contrastive+Transfer+Learning+of+Feature+Representation)|2| +|[Unsupervised Feature Selection with Joint Clustering Analysis](https://doi.org/10.1145/3132847.3132999)|Shuai An, Jun Wang, Jinmao Wei, Zhenglu Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+with+Joint+Clustering+Analysis)|2| +|[Citation Metadata Extraction via Deep Neural Network-based Segment Sequence Labeling](https://doi.org/10.1145/3132847.3133074)|Dong An, Liangcai Gao, Zhuoren Jiang, Runtao Liu, Zhi Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Citation+Metadata+Extraction+via+Deep+Neural+Network-based+Segment+Sequence+Labeling)|2| +|[Learning Biological Sequence Types Using the Literature](https://doi.org/10.1145/3132847.3133051)|Mohamed Reda Bouadjenek, Karin Verspoor, Justin Zobel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Biological+Sequence+Types+Using+the+Literature)|2| +|[Tracking the Impact of Fact Deletions on Knowledge Graph Queries using Provenance Polynomials](https://doi.org/10.1145/3132847.3133118)|Garima Gaur, Srikanta J. Bedathur, Arnab Bhattacharya||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Tracking+the+Impact+of+Fact+Deletions+on+Knowledge+Graph+Queries+using+Provenance+Polynomials)|2| +|[An Euclidean Distance based on the Weighted Self-information Related Data Transformation for Nominal Data Clustering](https://doi.org/10.1145/3132847.3133062)|Lei Gu, Liying Zhang, Yang Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Euclidean+Distance+based+on+the+Weighted+Self-information+Related+Data+Transformation+for+Nominal+Data+Clustering)|2| +|[KIEM: A Knowledge Graph based Method to Identify Entity Morphs](https://doi.org/10.1145/3132847.3133123)|Longtao Huang, Lin Zhao, Shangwen Lv, Fangzhou Lu, Yue Zhai, Songlin Hu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KIEM:+A+Knowledge+Graph+based+Method+to+Identify+Entity+Morphs)|2| +|[SEQ: Example-based Query for Spatial Objects](https://doi.org/10.1145/3132847.3133073)|Siqiang Luo, Jiafeng Hu, Reynold Cheng, Jing Yan, Ben Kao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SEQ:+Example-based+Query+for+Spatial+Objects)|2| +|[Exploiting User Consuming Behavior for Effective Item Tagging](https://doi.org/10.1145/3132847.3133071)|Shen Liu, Hongyan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+User+Consuming+Behavior+for+Effective+Item+Tagging)|2| +|[SIMD-Based Multiple Sets Intersection with Dual-Scale Search Algorithm](https://doi.org/10.1145/3132847.3133082)|Xingshen Song, Yuexiang Yang, Xiaoyong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SIMD-Based+Multiple+Sets+Intersection+with+Dual-Scale+Search+Algorithm)|2| +|[Soft Seeded SSL Graphs for Unsupervised Semantic Similarity-based Retrieval](https://doi.org/10.1145/3132847.3133162)|Avikalp Srivastava, Madhav Datt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Soft+Seeded+SSL+Graphs+for+Unsupervised+Semantic+Similarity-based+Retrieval)|2| |[Collecting Non-Geotagged Local Tweets via Bandit Algorithms](https://doi.org/10.1145/3132847.3133046)|Saki Ueda, Yuto Yamaguchi, Hiroyuki Kitagawa||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collecting+Non-Geotagged+Local+Tweets+via+Bandit+Algorithms)|2| -|[Machine Learning @ Amazon](https://doi.org/10.1145/3132847.3137173)|Rajeev Rastogi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine+Learning+@+Amazon)|0| -|[When Deep Learning Meets Transfer Learning](https://doi.org/10.1145/3132847.3137175)|Qiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Deep+Learning+Meets+Transfer+Learning)|0| -|[A Hyper-connected World](https://doi.org/10.1145/3132847.3137176)|K. Ananth Krishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Hyper-connected+World)|0| +|[Using Knowledge Graphs to Explain Entity Co-occurrence in Twitter](https://doi.org/10.1145/3132847.3133161)|Yiwei Wang, Mark James Carman, YuanFang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Using+Knowledge+Graphs+to+Explain+Entity+Co-occurrence+in+Twitter)|2| +|[Unsupervised Feature Selection with Heterogeneous Side Information](https://doi.org/10.1145/3132847.3133055)|Xiaokai Wei, Bokai Cao, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Feature+Selection+with+Heterogeneous+Side+Information)|2| +|[Low-Rank Matrix Completion over Finite Abelian Group Algebras for Context-Aware Recommendation](https://doi.org/10.1145/3132847.3133057)|ChiaAn Yu, TakShing Chan, YiHsuan Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Low-Rank+Matrix+Completion+over+Finite+Abelian+Group+Algebras+for+Context-Aware+Recommendation)|2| +|[Local Ensemble across Multiple Sources for Collaborative Filtering](https://doi.org/10.1145/3132847.3133099)|Jing Zheng, Fuzhen Zhuang, Chuan Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Local+Ensemble+across+Multiple+Sources+for+Collaborative+Filtering)|2| +|[Storyfinder: Personalized Knowledge Base Construction and Management by Browsing the Web](https://doi.org/10.1145/3132847.3133186)|Steffen Remus, Manuel Kaufmann, Kathrin Ballweg, Tatiana von Landesberger, Chris Biemann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Storyfinder:+Personalized+Knowledge+Base+Construction+and+Management+by+Browsing+the+Web)|2| +|[Query and Animate Multi-attribute Trajectory Data](https://doi.org/10.1145/3132847.3133178)|Jianqiu Xu, Ralf Hartmut Güting||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+and+Animate+Multi-attribute+Trajectory+Data)|2| +|[POOLSIDE: An Online Probabilistic Knowledge Base for Shopping Decision Support](https://doi.org/10.1145/3132847.3133168)|Ping Zhong, Zhanhuai Li, Qun Chen, Yanyan Wang, Lianping Wang, Murtadha H. M. Ahmed, Fengfeng Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=POOLSIDE:+An+Online+Probabilistic+Knowledge+Base+for+Shopping+Decision+Support)|2| +|[A Hyper-connected World](https://doi.org/10.1145/3132847.3137176)|K. Ananth Krishnan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Hyper-connected+World)|1| +|[Crowd-enabled Pareto-Optimal Objects Finding Employing Multi-Pairwise-Comparison Questions](https://doi.org/10.1145/3132847.3132910)|Chang Liu, Yinan Zhang, Lei Liu, Lizhen Cui, Dong Yuan, Chunyan Miao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Crowd-enabled+Pareto-Optimal+Objects+Finding+Employing+Multi-Pairwise-Comparison+Questions)|1| +|[Similarity-based Distant Supervision for Definition Retrieval](https://doi.org/10.1145/3132847.3133032)|Jiepu Jiang, James Allan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Similarity-based+Distant+Supervision+for+Definition+Retrieval)|1| +|[Fast Word Recognition for Noise channel-based Models in Scenarios with Noise Specific Domain Knowledge](https://doi.org/10.1145/3132847.3133028)|Marco Cristo, Raíza Hanada, André Luiz da Costa Carvalho, Fernando Anglada Lores, Maria da Graça Campos Pimentel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fast+Word+Recognition+for+Noise+channel-based+Models+in+Scenarios+with+Noise+Specific+Domain+Knowledge)|1| +|[Movie Fill in the Blank with Adaptive Temporal Attention and Description Update](https://doi.org/10.1145/3132847.3132922)|Jie Chen, Jie Shao, Fumin Shen, Chengkun He, Lianli Gao, Heng Tao Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Movie+Fill+in+the+Blank+with+Adaptive+Temporal+Attention+and+Description+Update)|1| +|[Volume Ranking and Sequential Selection in Programmatic Display Advertising](https://doi.org/10.1145/3132847.3132853)|Yuxuan Song, Kan Ren, Han Cai, Weinan Zhang, Yong Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Volume+Ranking+and+Sequential+Selection+in+Programmatic+Display+Advertising)|1| +|[Modeling Menu Bundle Designs of Crowdfunding Projects](https://doi.org/10.1145/3132847.3132958)|Yusan Lin, Peifeng Yin, WangChien Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Menu+Bundle+Designs+of+Crowdfunding+Projects)|1| +|[Privacy Aware Temporal Profiling of Emails in Distributed Setup](https://doi.org/10.1145/3132847.3132970)|Sutapa Mondal, Manish Shukla, Sachin Lodha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy+Aware+Temporal+Profiling+of+Emails+in+Distributed+Setup)|1| +|[A Two-step Information Accumulation Strategy for Learning from Highly Imbalanced Data](https://doi.org/10.1145/3132847.3132940)|Bin Liu, Min Zhang, Weizhi Ma, Xin Li, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Two-step+Information+Accumulation+Strategy+for+Learning+from+Highly+Imbalanced+Data)|1| +|[Partitioning Orders in Online Shopping Services](https://doi.org/10.1145/3132847.3132903)|Sreenivas Gollapudi, Ravi Kumar, Debmalya Panigrahi, Rina Panigrahy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Partitioning+Orders+in+Online+Shopping+Services)|1| +|[A Matrix-Vector Recurrent Unit Model for Capturing Compositional Semantics in Phrase Embeddings](https://doi.org/10.1145/3132847.3132984)|Rui Wang, Wei Liu, Chris McDonald||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Matrix-Vector+Recurrent+Unit+Model+for+Capturing+Compositional+Semantics+in+Phrase+Embeddings)|1| +|[Automatic Navbox Generation by Interpretable Clustering over Linked Entities](https://doi.org/10.1145/3132847.3132899)|Chenhao Xie, Lihan Chen, Jiaqing Liang, Kezun Zhang, Yanghua Xiao, Hanghang Tong, Haixun Wang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Navbox+Generation+by+Interpretable+Clustering+over+Linked+Entities)|1| +|[Incorporating the Latent Link Categories in Relational Topic Modeling](https://doi.org/10.1145/3132847.3132881)|Yuan He, Cheng Wang, Changjun Jiang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incorporating+the+Latent+Link+Categories+in+Relational+Topic+Modeling)|1| +|[Extracting Entities of Interest from Comparative Product Reviews](https://doi.org/10.1145/3132847.3133141)|Jatin Arora, Sumit Agrawal, Pawan Goyal, Sayan Pathak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Entities+of+Interest+from+Comparative+Product+Reviews)|1| +|[Compact Multiple-Instance Learning](https://doi.org/10.1145/3132847.3133070)|Jing Chai, Weiwei Liu, Ivor W. Tsang, XiaoBo Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Compact+Multiple-Instance+Learning)|1| +|[Text Embedding for Sub-Entity Ranking from User Reviews](https://doi.org/10.1145/3132847.3133066)|ChihYu Chao, YiFan Chu, HsiuWei Yang, ChuanJu Wang, MingFeng Tsai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Text+Embedding+for+Sub-Entity+Ranking+from+User+Reviews)|1| +|[Modeling Opinion Influence with User Dual Identity](https://doi.org/10.1145/3132847.3133125)|Chengyao Chen, Zhitao Wang, Wenjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Opinion+Influence+with+User+Dual+Identity)|1| +|[Unsupervised Matrix-valued Kernel Learning For One Class Classification](https://doi.org/10.1145/3132847.3133114)|Shaobo Dang, Xiongcai Cai, Yang Wang, Jianjia Zhang, Fang Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unsupervised+Matrix-valued+Kernel+Learning+For+One+Class+Classification)|1| +|[Inferring Appliance Energy Usage from Smart Meters using Fully Convolutional Encoder Decoder Networks](https://doi.org/10.1145/3132847.3133146)|Felan Carlo C. Garcia, Erees Queen B. Macabebe||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Appliance+Energy+Usage+from+Smart+Meters+using+Fully+Convolutional+Encoder+Decoder+Networks)|1| +|[Smart City Analytics: Ensemble-Learned Prediction of Citizen Home Care](https://doi.org/10.1145/3132847.3133101)|Casper Hansen, Christian Hansen, Stephen Alstrup, Christina Lioma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Smart+City+Analytics:+Ensemble-Learned+Prediction+of+Citizen+Home+Care)|1| +|[A Framework for Estimating Execution Times of IO Traces on SSDs](https://doi.org/10.1145/3132847.3133115)|Yoonsuk Kang, YongYeon Jo, Jaehyuk Cha, Wan D. Bae, SangWook Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Framework+for+Estimating+Execution+Times+of+IO+Traces+on+SSDs)|1| +|[Ranking Rich Mobile Verticals based on Clicks and Abandonment](https://doi.org/10.1145/3132847.3133059)|Mami Kawasaki, Inho Kang, Tetsuya Sakai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Ranking+Rich+Mobile+Verticals+based+on+Clicks+and+Abandonment)|1| +|[Machine Learning based Performance Modeling of Flash SSDs](https://doi.org/10.1145/3132847.3133120)|Jaehyung Kim, Jinuk Park, Sanghyun Park||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine+Learning+based+Performance+Modeling+of+Flash+SSDs)|1| +|[A Robust Named-Entity Recognition System Using Syllable Bigram Embedding with Eojeol Prefix Information](https://doi.org/10.1145/3132847.3133105)|Sunjae Kwon, Youngjoong Ko, Jungyun Seo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Robust+Named-Entity+Recognition+System+Using+Syllable+Bigram+Embedding+with+Eojeol+Prefix+Information)|1| +|[Computing Betweenness Centrality in B-hypergraphs](https://doi.org/10.1145/3132847.3133093)|Kwang Hee Lee, MyoungHo Kim||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Computing+Betweenness+Centrality+in+B-hypergraphs)|1| +|[Structural-fitting Word Vectors to Linguistic Ontology for Semantic Relatedness Measurement](https://doi.org/10.1145/3132847.3133152)|YangYin Lee, TingYu Yen, HenHsen Huang, HsinHsi Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Structural-fitting+Word+Vectors+to+Linguistic+Ontology+for+Semantic+Relatedness+Measurement)|1| +|[An Enhanced Topic Modeling Approach to Multiple Stance Identification](https://doi.org/10.1145/3132847.3133145)|Junjie Lin, Wenji Mao, Yuhao Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Enhanced+Topic+Modeling+Approach+to+Multiple+Stance+Identification)|1| +|[TICC: Transparent Inter-Column Compression for Column-Oriented Database Systems](https://doi.org/10.1145/3132847.3133077)|Hao Liu, Yudian Ji, Jiang Xiao, Haoyu Tan, Qiong Luo, Lionel M. Ni||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TICC:+Transparent+Inter-Column+Compression+for+Column-Oriented+Database+Systems)|1| +|[How Safe is Your (Taxi) Driver?](https://doi.org/10.1145/3132847.3133068)|Rade Stanojevic||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=How+Safe+is+Your+(Taxi)+Driver?)|1| +|[Visualizing Deep Neural Networks with Interaction of Super-pixels](https://doi.org/10.1145/3132847.3133108)|Shixin Tian, Ying Cai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Visualizing+Deep+Neural+Networks+with+Interaction+of+Super-pixels)|1| +|[VizQ: A System for Scalable Processing of Visibility Queries in 3D Spatial Databases](https://doi.org/10.1145/3132847.3133190)|Arif Arman, Mohammed Eunus Ali, Farhana Murtaza Choudhury, Kaysar Abdullah||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=VizQ:+A+System+for+Scalable+Processing+of+Visibility+Queries+in+3D+Spatial+Databases)|1| +|[SimMeme: Semantic-Based Meme Search](https://doi.org/10.1145/3132847.3133174)|Maya Ekron, Tova Milo, Brit Youngmann||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SimMeme:+Semantic-Based+Meme+Search)|1| +|[SemVis: Semantic Visualization for Interactive Topical Analysis](https://doi.org/10.1145/3132847.3133181)|Tuan M. V. Le, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SemVis:+Semantic+Visualization+for+Interactive+Topical+Analysis)|1| +|[Exploring the Veracity of Online Claims with BackDrop](https://doi.org/10.1145/3132847.3133179)|Julien Leblay, Weiling Chen, Steven J. Lynden||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+the+Veracity+of+Online+Claims+with+BackDrop)|1| +|[CleanCloud: Cleaning Big Data on Cloud](https://doi.org/10.1145/3132847.3133187)|Hongzhi Wang, Xiaoou Ding, Xiangying Chen, Jianzhong Li, Hong Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CleanCloud:+Cleaning+Big+Data+on+Cloud)|1| |[Deception Detection: When Computers Become Better than Humans](https://doi.org/10.1145/3132847.3137174)|Rada Mihalcea||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deception+Detection:+When+Computers+Become+Better+than+Humans)|0| +|[Machine Learning @ Amazon](https://doi.org/10.1145/3132847.3137173)|Rajeev Rastogi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Machine+Learning+@+Amazon)|0| +|[Intent Based Relevance Estimation from Click Logs](https://doi.org/10.1145/3132847.3132870)|Prakash Mandayam Comar, Srinivasan H. Sengamedu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Intent+Based+Relevance+Estimation+from+Click+Logs)|0| +|[UFeed: Refining Web Data Integration Based on User Feedback](https://doi.org/10.1145/3132847.3132887)|Ahmed ElRoby, Ashraf Aboulnaga||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=UFeed:+Refining+Web+Data+Integration+Based+on+User+Feedback)|0| +|[Covering the Optimal Time Window Over Temporal Data](https://doi.org/10.1145/3132847.3132935)|Bin Cao, Chenyu Hou, Jing Fan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Covering+the+Optimal+Time+Window+Over+Temporal+Data)|0| +|[Sequence Modeling with Hierarchical Deep Generative Models with Dual Memory](https://doi.org/10.1145/3132847.3132952)|Yanan Zheng, Lijie Wen, Jianmin Wang, Jun Yan, Lei Ji||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Sequence+Modeling+with+Hierarchical+Deep+Generative+Models+with+Dual+Memory)|0| +|[Minimizing Dependence between Graphs](https://doi.org/10.1145/3132847.3132931)|Yu Rong, Hong Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Minimizing+Dependence+between+Graphs)|0| +|[PMS: an Effective Approximation Approach for Distributed Large-scale Graph Data Processing and Mining](https://doi.org/10.1145/3132847.3133087)|Yingjie Cao, Yangyang Zhang, Jianxin Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PMS:+an+Effective+Approximation+Approach+for+Distributed+Large-scale+Graph+Data+Processing+and+Mining)|0| +|[IDAE: Imputation-boosted Denoising Autoencoder for Collaborative Filtering](https://doi.org/10.1145/3132847.3133158)|Jaewoong Lee, Jongwuk Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=IDAE:+Imputation-boosted+Denoising+Autoencoder+for+Collaborative+Filtering)|0| +|[Online Expectation-Maximization for Click Models](https://doi.org/10.1145/3132847.3133053)|Ilya Markov, Alexey Borisov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Expectation-Maximization+for+Click+Models)|0| +|[Robust Heterogeneous Discriminative Analysis for Single Sample Per Person Face Recognition](https://doi.org/10.1145/3132847.3133096)|Meng Pang, Yiuming Cheung, Binghui Wang, Risheng Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Robust+Heterogeneous+Discriminative+Analysis+for+Single+Sample+Per+Person+Face+Recognition)|0| +|[Improving the Gain of Visual Perceptual Behaviour on Topic Modeling for Text Recommendation](https://doi.org/10.1145/3132847.3133122)|Cheng Wang, Yujuan Fang, Zheng Tan, Yuan He||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+the+Gain+of+Visual+Perceptual+Behaviour+on+Topic+Modeling+for+Text+Recommendation)|0| +|[Integrating Side Information for Boosting Machine Comprehension](https://doi.org/10.1145/3132847.3133136)|Yutong Wang, Yixin Xu, Min Yang, Zhou Zhao, Jun Xiao, Yueting Zhuang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Integrating+Side+Information+for+Boosting+Machine+Comprehension)|0| +|[An Empirical Study of Community Overlap: Ground-truth, Algorithmic Solutions, and Implications](https://doi.org/10.1145/3132847.3133133)|Joyce Jiyoung Whang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Empirical+Study+of+Community+Overlap:+Ground-truth,+Algorithmic+Solutions,+and+Implications)|0| +|[Simulating Zero-Resource Spoken Term Discovery](https://doi.org/10.1145/3132847.3133160)|Jerome White, Douglas W. Oard||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Simulating+Zero-Resource+Spoken+Term+Discovery)|0| +|[Common-Specific Multimodal Learning for Deep Belief Network](https://doi.org/10.1145/3132847.3133092)|Changsheng Xiang, Xiaoming Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Common-Specific+Multimodal+Learning+for+Deep+Belief+Network)|0| +|[Missing Value Learning](https://doi.org/10.1145/3132847.3133094)|ZhiLin Zhao, ChangDong Wang, KunYu Lin, JianHuang Lai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Missing+Value+Learning)|0| +|[PODIUM: Procuring Opinions from Diverse Users in a Multi-Dimensional World](https://doi.org/10.1145/3132847.3133176)|Yael Amsterdamer, Oded Goldreich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PODIUM:+Procuring+Opinions+from+Diverse+Users+in+a+Multi-Dimensional+World)|0| +|[SummIt: A Tool for Extractive Summarization, Discovery and Analysis](https://doi.org/10.1145/3132847.3133183)|Guy Feigenblat, Odellia Boni, Haggai Roitman, David Konopnicki||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=SummIt:+A+Tool+for+Extractive+Summarization,+Discovery+and+Analysis)|0| +|[Hierarchical Module Classification in Mixed-initiative Conversational Agent System](https://doi.org/10.1145/3132847.3133185)|Sia Xin Yun Suzanna, Anthony Lianjie Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+Module+Classification+in+Mixed-initiative+Conversational+Agent+System)|0| +|[Interactive Analytics System for Exploring Outliers](https://doi.org/10.1145/3132847.3133189)|Mingrui Wei, Lei Cao, Chris Cormier, Hui Zheng, Elke A. Rundensteiner||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactive+Analytics+System+for+Exploring+Outliers)|0| diff --git a/papers/cikm/cikm2018.md b/papers/cikm/cikm2018.md index cb9acb17..deac5f64 100644 --- a/papers/cikm/cikm2018.md +++ b/papers/cikm/cikm2018.md @@ -2,315 +2,315 @@ |论文|作者|摘要|代码|引用数| |---|---|---|---|---| -|[Open-Schema Event Profiling for Massive News Corpora](https://doi.org/10.1145/3269206.3271674)|Quan Yuan, Xiang Ren, Wenqi He, Chao Zhang, Xinhe Geng, Lifu Huang, Heng Ji, ChinYew Lin, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Open-Schema+Event+Profiling+for+Massive+News+Corpora)|70| -|[Knowledge Graph Completion by Context-Aware Convolutional Learning with Multi-Hop Neighborhoods](https://doi.org/10.1145/3269206.3271769)|Byungkook Oh, Seungmin Seo, KyongHo Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Knowledge+Graph+Completion+by+Context-Aware+Convolutional+Learning+with+Multi-Hop+Neighborhoods)|66| -|[Nowcasting the Stance of Social Media Users in a Sudden Vote: The Case of the Greek Referendum](https://doi.org/10.1145/3269206.3271783)|Adam Tsakalidis, Nikolaos Aletras, Alexandra I. Cristea, Maria Liakata||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Nowcasting+the+Stance+of+Social+Media+Users+in+a+Sudden+Vote:+The+Case+of+the+Greek+Referendum)|65| -|[From Neural Re-Ranking to Neural Ranking: Learning a Sparse Representation for Inverted Indexing](https://doi.org/10.1145/3269206.3271800)|Hamed Zamani, Mostafa Dehghani, W. Bruce Croft, Erik G. LearnedMiller, Jaap Kamps||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=From+Neural+Re-Ranking+to+Neural+Ranking:+Learning+a+Sparse+Representation+for+Inverted+Indexing)|60| -|[Explicit State Tracking with Semi-Supervisionfor Neural Dialogue Generation](https://doi.org/10.1145/3269206.3271683)|Xisen Jin, Wenqiang Lei, Zhaochun Ren, Hongshen Chen, Shangsong Liang, Yihong Zhao, Dawei Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Explicit+State+Tracking+with+Semi-Supervisionfor+Neural+Dialogue+Generation)|60| -|[Mix 'n Match: Integrating Text Matching and Product Substitutability within Product Search](https://doi.org/10.1145/3269206.3271668)|Christophe Van Gysel, Maarten de Rijke, Evangelos Kanoulas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mix+'n+Match:+Integrating+Text+Matching+and+Product+Substitutability+within+Product+Search)|58| -|[Probabilistic Causal Analysis of Social Influence](https://doi.org/10.1145/3269206.3271756)|Francesco Bonchi, Francesco Gullo, Bud Mishra, Daniele Ramazzotti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Probabilistic+Causal+Analysis+of+Social+Influence)|55| -|[Measuring User Satisfaction on Smart Speaker Intelligent Assistants Using Intent Sensitive Query Embeddings](https://doi.org/10.1145/3269206.3271802)|Seyyed Hadi Hashemi, Kyle Williams, Ahmed El Kholy, Imed Zitouni, Paul A. Crook||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Measuring+User+Satisfaction+on+Smart+Speaker+Intelligent+Assistants+Using+Intent+Sensitive+Query+Embeddings)|55| -|[RIN: Reformulation Inference Network for Context-Aware Query Suggestion](https://doi.org/10.1145/3269206.3271808)|JyunYu Jiang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RIN:+Reformulation+Inference+Network+for+Context-Aware+Query+Suggestion)|54| -|[Question Headline Generation for News Articles](https://doi.org/10.1145/3269206.3271711)|Ruqing Zhang, Jiafeng Guo, Yixing Fan, Yanyan Lan, Jun Xu, Huanhuan Cao, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Question+Headline+Generation+for+News+Articles)|53| -|[Distribution Distance Minimization for Unsupervised User Identity Linkage](https://doi.org/10.1145/3269206.3271675)|Chaozhuo Li, Senzhang Wang, Philip S. Yu, Lei Zheng, Xiaoming Zhang, Zhoujun Li, Yanbo Liang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distribution+Distance+Minimization+for+Unsupervised+User+Identity+Linkage)|52| -|[Retrieve-and-Read: Multi-task Learning of Information Retrieval and Reading Comprehension](https://doi.org/10.1145/3269206.3271702)|Kyosuke Nishida, Itsumi Saito, Atsushi Otsuka, Hisako Asano, Junji Tomita||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Retrieve-and-Read:+Multi-task+Learning+of+Information+Retrieval+and+Reading+Comprehension)|52| -|[Deep Semantic Hashing with Multi-Adversarial Training](https://doi.org/10.1145/3269206.3271735)|Bingning Wang, Kang Liu, Jun Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Semantic+Hashing+with+Multi-Adversarial+Training)|52| -|[Deep Autoencoder-like Nonnegative Matrix Factorization for Community Detection](https://doi.org/10.1145/3269206.3271697)|Fanghua Ye, Chuan Chen, Zibin Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Autoencoder-like+Nonnegative+Matrix+Factorization+for+Community+Detection)|51| -|[Multi-Source Pointer Network for Product Title Summarization](https://doi.org/10.1145/3269206.3271722)|Fei Sun, Peng Jiang, Hanxiao Sun, Changhua Pei, Wenwu Ou, Xiaobo Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Source+Pointer+Network+for+Product+Title+Summarization)|49| -|[CoNet: Collaborative Cross Networks for Cross-Domain Recommendation](https://doi.org/10.1145/3269206.3271684)|Guangneng Hu, Yu Zhang, Qiang Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CoNet:+Collaborative+Cross+Networks+for+Cross-Domain+Recommendation)|49| -|[Attention-based Adaptive Model to Unify Warm and Cold Starts Recommendation](https://doi.org/10.1145/3269206.3271710)|Shaoyun Shi, Min Zhang, Yiqun Liu, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attention-based+Adaptive+Model+to+Unify+Warm+and+Cold+Starts+Recommendation)|48| -|[When Rank Order Isn't Enough: New Statistical-Significance-Aware Correlation Measures](https://doi.org/10.1145/3269206.3271751)|Mücahid Kutlu, Tamer Elsayed, Maram Hasanain, Matthew Lease||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Rank+Order+Isn't+Enough:+New+Statistical-Significance-Aware+Correlation+Measures)|48| -|[Presentation Ordering Effects On Assessor Agreement](https://doi.org/10.1145/3269206.3271750)|Tadele Tedla Damessie, J. Shane Culpepper, Jaewon Kim, Falk Scholer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Presentation+Ordering+Effects+On+Assessor+Agreement)|48| -|[Recommendation Through Mixtures of Heterogeneous Item Relationships](https://doi.org/10.1145/3269206.3271792)|WangCheng Kang, Mengting Wan, Julian J. McAuley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recommendation+Through+Mixtures+of+Heterogeneous+Item+Relationships)|48| -|[Contrasting Search as a Learning Activity with Instructor-designed Learning](https://doi.org/10.1145/3269206.3271676)|Felipe Moraes, Sindunuraga Rikarno Putra, Claudia Hauff||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Contrasting+Search+as+a+Learning+Activity+with+Instructor-designed+Learning)|47| -|[Personalizing Search Results Using Hierarchical RNN with Query-aware Attention](https://doi.org/10.1145/3269206.3271728)|Songwei Ge, Zhicheng Dou, Zhengbao Jiang, JianYun Nie, JiRong Wen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Personalizing+Search+Results+Using+Hierarchical+RNN+with+Query-aware+Attention)|47| -|[RippleNet: Propagating User Preferences on the Knowledge Graph for Recommender Systems](https://doi.org/10.1145/3269206.3271739)|Hongwei Wang, Fuzheng Zhang, Jialin Wang, Miao Zhao, Wenjie Li, Xing Xie, Minyi Guo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RippleNet:+Propagating+User+Preferences+on+the+Knowledge+Graph+for+Recommender+Systems)|47| -|[Finding a Dense Subgraph with Sparse Cut](https://doi.org/10.1145/3269206.3271720)|Atsushi Miyauchi, Naonori Kakimura||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Finding+a+Dense+Subgraph+with+Sparse+Cut)|47| -|[Distinguishing Trajectories from Different Drivers using Incompletely Labeled Trajectories](https://doi.org/10.1145/3269206.3271762)|Tung Kieu, Bin Yang, Chenjuan Guo, Christian S. Jensen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Distinguishing+Trajectories+from+Different+Drivers+using+Incompletely+Labeled+Trajectories)|47| -|[CFGAN: A Generic Collaborative Filtering Framework based on Generative Adversarial Networks](https://doi.org/10.1145/3269206.3271743)|DongKyu Chae, JinSoo Kang, SangWook Kim, JungTae Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CFGAN:+A+Generic+Collaborative+Filtering+Framework+based+on+Generative+Adversarial+Networks)|46| -|[Adaptive Implicit Friends Identification over Heterogeneous Network for Social Recommendation](https://doi.org/10.1145/3269206.3271725)|Junliang Yu, Min Gao, Jundong Li, Hongzhi Yin, Huan Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adaptive+Implicit+Friends+Identification+over+Heterogeneous+Network+for+Social+Recommendation)|46| -|[Relevance Estimation with Multiple Information Sources on Search Engine Result Pages](https://doi.org/10.1145/3269206.3271673)|Junqi Zhang, Yiqun Liu, Shaoping Ma, Qi Tian||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Relevance+Estimation+with+Multiple+Information+Sources+on+Search+Engine+Result+Pages)|46| -|[RESTFul: Resolution-Aware Forecasting of Behavioral Time Series Data](https://doi.org/10.1145/3269206.3271794)|Xian Wu, Baoxu Shi, Yuxiao Dong, Chao Huang, Louis Faust, Nitesh V. Chawla||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=RESTFul:+Resolution-Aware+Forecasting+of+Behavioral+Time+Series+Data)|46| -|[Towards Conversational Search and Recommendation: System Ask, User Respond](https://doi.org/10.1145/3269206.3271776)|Yongfeng Zhang, Xu Chen, Qingyao Ai, Liu Yang, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Conversational+Search+and+Recommendation:+System+Ask,+User+Respond)|45| -|[Attentive Neural Architecture for Ad-hoc Structured Document Retrieval](https://doi.org/10.1145/3269206.3271801)|Saeid Balaneshinkordan, Alexander Kotov, Fedor Nikolaev||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Attentive+Neural+Architecture+for+Ad-hoc+Structured+Document+Retrieval)|45| -|[In Situ and Context-Aware Target Apps Selection for Unified Mobile Search](https://doi.org/10.1145/3269206.3271679)|Mohammad Aliannejadi, Hamed Zamani, Fabio Crestani, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=In+Situ+and+Context-Aware+Target+Apps+Selection+for+Unified+Mobile+Search)|45| -|[ANR: Aspect-based Neural Recommender](https://doi.org/10.1145/3269206.3271810)|Jin Yao Chin, Kaiqi Zhao, Shafiq R. Joty, Gao Cong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ANR:+Aspect-based+Neural+Recommender)|44| -|[A Content-Based Approach for Modeling Analytics Operators](https://doi.org/10.1145/3269206.3271731)|Ioannis Giannakopoulos, Dimitrios Tsoumakos, Nectarios Koziris||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Content-Based+Approach+for+Modeling+Analytics+Operators)|44| -|[Understanding Reading Attention Distribution during Relevance Judgement](https://doi.org/10.1145/3269206.3271764)|Xiangsheng Li, Yiqun Liu, Jiaxin Mao, Zexue He, Min Zhang, Shaoping Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Understanding+Reading+Attention+Distribution+during+Relevance+Judgement)|44| -|[PRRE: Personalized Relation Ranking Embedding for Attributed Networks](https://doi.org/10.1145/3269206.3271741)|Sheng Zhou, Hongxia Yang, Xin Wang, Jiajun Bu, Martin Ester, Pinggang Yu, Jianwei Zhang, Can Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PRRE:+Personalized+Relation+Ranking+Embedding+for+Attributed+Networks)|44| -|[Practical Diversified Recommendations on YouTube with Determinantal Point Processes](https://doi.org/10.1145/3269206.3272018)|Mark Wilhelm, Ajith Ramanathan, Alexander Bonomo, Sagar Jain, Ed H. Chi, Jennifer Gillenwater||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Practical+Diversified+Recommendations+on+YouTube+with+Determinantal+Point+Processes)|44| -|[Towards Effective Extraction and Linking of Software Mentions from User-Generated Support Tickets](https://doi.org/10.1145/3269206.3272026)|Jianglei Han, Ka Hian Goh, Aixin Sun, Mohammad Akbari||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Effective+Extraction+and+Linking+of+Software+Mentions+from+User-Generated+Support+Tickets)|44| -|[Mining (maximal) Span-cores from Temporal Networks](https://doi.org/10.1145/3269206.3271767)|Edoardo Galimberti, Alain Barrat, Francesco Bonchi, Ciro Cattuto, Francesco Gullo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+(maximal)+Span-cores+from+Temporal+Networks)|43| -|[REGAL: Representation Learning-based Graph Alignment](https://doi.org/10.1145/3269206.3271788)|Mark Heimann, Haoming Shen, Tara Safavi, Danai Koutra||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=REGAL:+Representation+Learning-based+Graph+Alignment)|43| -|[An Attentive Interaction Network for Context-aware Recommendations](https://doi.org/10.1145/3269206.3271813)|Lei Mei, Pengjie Ren, Zhumin Chen, Liqiang Nie, Jun Ma, JianYun Nie||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=An+Attentive+Interaction+Network+for+Context-aware+Recommendations)|43| -|[Effective User Interaction for High-Recall Retrieval: Less is More](https://doi.org/10.1145/3269206.3271796)|Haotian Zhang, Mustafa Abualsaud, Nimesh Ghelani, Mark D. Smucker, Gordon V. Cormack, Maura R. Grossman||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Effective+User+Interaction+for+High-Recall+Retrieval:+Less+is+More)|43| -|[Adversarial Training Model Unifying Feature Driven and Point Process Perspectives for Event Popularity Prediction](https://doi.org/10.1145/3269206.3271714)|Qitian Wu, Chaoqi Yang, Hengrui Zhang, Xiaofeng Gao, Paul Weng, Guihai Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adversarial+Training+Model+Unifying+Feature+Driven+and+Point+Process+Perspectives+for+Event+Popularity+Prediction)|43| -|[On Rich Clubs of Path-Based Centralities in Networks](https://doi.org/10.1145/3269206.3271763)|Soumya Sarkar, Sanjukta Bhowmick, Animesh Mukherjee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Rich+Clubs+of+Path-Based+Centralities+in+Networks)|43| -|[KAME: Knowledge-based Attention Model for Diagnosis Prediction in Healthcare](https://doi.org/10.1145/3269206.3271701)|Fenglong Ma, Quanzeng You, Houping Xiao, Radha Chitta, Jing Zhou, Jing Gao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=KAME:+Knowledge-based+Attention+Model+for+Diagnosis+Prediction+in+Healthcare)|43| -|["Let Me Tell You About Your Mental Health!": Contextualized Classification of Reddit Posts to DSM-5 for Web-based Intervention](https://doi.org/10.1145/3269206.3271732)|Manas Gaur, Ugur Kursuncu, Amanuel Alambo, Amit P. Sheth, Raminta Daniulaityte, Krishnaprasad Thirunarayan, Jyotishman Pathak||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Let+Me+Tell+You+About+Your+Mental+Health!":+Contextualized+Classification+of+Reddit+Posts+to+DSM-5+for+Web-based+Intervention)|43| -|[Zoom-SVD: Fast and Memory Efficient Method for Extracting Key Patterns in an Arbitrary Time Range](https://doi.org/10.1145/3269206.3271682)|JunGi Jang, Dongjin Choi, Jinhong Jung, U Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Zoom-SVD:+Fast+and+Memory+Efficient+Method+for+Extracting+Key+Patterns+in+an+Arbitrary+Time+Range)|43| -|[DeepCrime: Attentive Hierarchical Recurrent Networks for Crime Prediction](https://doi.org/10.1145/3269206.3271793)|Chao Huang, Junbo Zhang, Yu Zheng, Nitesh V. Chawla||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepCrime:+Attentive+Hierarchical+Recurrent+Networks+for+Crime+Prediction)|43| -|[Neural Relational Topic Models for Scientific Article Analysis](https://doi.org/10.1145/3269206.3271696)|Haoli Bai, Zhuangbin Chen, Michael R. Lyu, Irwin King, Zenglin Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Neural+Relational+Topic+Models+for+Scientific+Article+Analysis)|42| -|[Short Text Entity Linking with Fine-grained Topics](https://doi.org/10.1145/3269206.3271809)|Lihan Chen, Jiaqing Liang, Chenhao Xie, Yanghua Xiao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Short+Text+Entity+Linking+with+Fine-grained+Topics)|42| -|[Point-of-Interest Recommendation: Exploiting Self-Attentive Autoencoders with Neighbor-Aware Influence](https://doi.org/10.1145/3269206.3271733)|Chen Ma, Yingxue Zhang, Qinglong Wang, Xue Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Point-of-Interest+Recommendation:+Exploiting+Self-Attentive+Autoencoders+with+Neighbor-Aware+Influence)|42| -|[Semi-supervised Learning on Graphs with Generative Adversarial Nets](https://doi.org/10.1145/3269206.3271768)|Ming Ding, Jie Tang, Jie Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-supervised+Learning+on+Graphs+with+Generative+Adversarial+Nets)|42| -|[Modeling Users' Exposure with Social Knowledge Influence and Consumption Influence for Recommendation](https://doi.org/10.1145/3269206.3271742)|Jiawei Chen, Yan Feng, Martin Ester, Sheng Zhou, Chun Chen, Can Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Users'+Exposure+with+Social+Knowledge+Influence+and+Consumption+Influence+for+Recommendation)|42| -|[A Quantum Many-body Wave Function Inspired Language Modeling Approach](https://doi.org/10.1145/3269206.3271723)|Peng Zhang, Zhan Su, Lipeng Zhang, Benyou Wang, Dawei Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Quantum+Many-body+Wave+Function+Inspired+Language+Modeling+Approach)|42| -|[Multi-Task Learning for Email Search Ranking with Auxiliary Query Clustering](https://doi.org/10.1145/3269206.3272019)|Jiaming Shen, Maryam Karimzadehgan, Michael Bendersky, Zhen Qin, Donald Metzler||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-Task+Learning+for+Email+Search+Ranking+with+Auxiliary+Query+Clustering)|42| -|[Bug Localization by Learning to Rank and Represent Bug Inducing Changes](https://doi.org/10.1145/3269206.3271811)|Pablo Loyola, Kugamoorthy Gajananan, Fumiko Satoh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Bug+Localization+by+Learning+to+Rank+and+Represent+Bug+Inducing+Changes)|41| -|[TGNet: Learning to Rank Nodes in Temporal Graphs](https://doi.org/10.1145/3269206.3271698)|Qi Song, Bo Zong, Yinghui Wu, LuAn Tang, Hui Zhang, Guofei Jiang, Haifeng Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TGNet:+Learning+to+Rank+Nodes+in+Temporal+Graphs)|40| -|[ChangeDAR: Online Localized Change Detection for Sensor Data on a Graph](https://doi.org/10.1145/3269206.3271669)|Bryan Hooi, Leman Akoglu, Dhivya Eswaran, Amritanshu Pandey, Marko Jereminov, Larry T. Pileggi, Christos Faloutsos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ChangeDAR:+Online+Localized+Change+Detection+for+Sensor+Data+on+a+Graph)|40| -|[Mining Frequent Patterns in Evolving Graphs](https://doi.org/10.1145/3269206.3271772)|Çigdem Aslay, Muhammad Anis Uddin Nasir, Gianmarco De Francisci Morales, Aristides Gionis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mining+Frequent+Patterns+in+Evolving+Graphs)|40| -|[Differentiable Unbiased Online Learning to Rank](https://doi.org/10.1145/3269206.3271686)|Harrie Oosterhuis, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Differentiable+Unbiased+Online+Learning+to+Rank)|40| -|[The LambdaLoss Framework for Ranking Metric Optimization](https://doi.org/10.1145/3269206.3271784)|Xuanhui Wang, Cheng Li, Nadav Golbandi, Michael Bendersky, Marc Najork||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+LambdaLoss+Framework+for+Ranking+Metric+Optimization)|40| -|[Collaborative Multi-objective Ranking](https://doi.org/10.1145/3269206.3271785)|Jun Hu, Ping Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Multi-objective+Ranking)|40| -|[Automatic Conversational Helpdesk Solution using Seq2Seq and Slot-filling Models](https://doi.org/10.1145/3269206.3272029)|Mayur Patidar, Puneet Agarwal, Lovekesh Vig, Gautam Shroff||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Automatic+Conversational+Helpdesk+Solution+using+Seq2Seq+and+Slot-filling+Models)|40| -|[FastInput: Improving Input Efficiency on Mobile Devices](https://doi.org/10.1145/3269206.3272006)|Jingyuan Zhang, Xin Wang, Yue Feng, Mingming Sun, Ping Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FastInput:+Improving+Input+Efficiency+on+Mobile+Devices)|40| -|[Regularizing Matrix Factorization with User and Item Embeddings for Recommendation](https://doi.org/10.1145/3269206.3271730)|Thanh Tran, Kyumin Lee, Yiming Liao, Dongwon Lee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Regularizing+Matrix+Factorization+with+User+and+Item+Embeddings+for+Recommendation)|39| -|[Multiresolution Graph Attention Networks for Relevance Matching](https://doi.org/10.1145/3269206.3271806)|Ting Zhang, Bang Liu, Di Niu, Kunfeng Lai, Yu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiresolution+Graph+Attention+Networks+for+Relevance+Matching)|39| -|[Shared Embedding Based Neural Networks for Knowledge Graph Completion](https://doi.org/10.1145/3269206.3271704)|Saiping Guan, Xiaolong Jin, Yuanzhuo Wang, Xueqi Cheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Shared+Embedding+Based+Neural+Networks+for+Knowledge+Graph+Completion)|38| -|[Exploiting Structural and Temporal Evolution in Dynamic Link Prediction](https://doi.org/10.1145/3269206.3271740)|Huiyuan Chen, Jing Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploiting+Structural+and+Temporal+Evolution+in+Dynamic+Link+Prediction)|38| -|[Signed Network Modeling Based on Structural Balance Theory](https://doi.org/10.1145/3269206.3271746)|Tyler Derr, Charu C. Aggarwal, Jiliang Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Signed+Network+Modeling+Based+on+Structural+Balance+Theory)|38| -|[Newsfeed Filtering and Dissemination for Behavioral Therapy on Social Network Addictions](https://doi.org/10.1145/3269206.3271689)|HongHan Shuai, YenChieh Lien, DeNian Yang, YiFeng Lan, WangChien Lee, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Newsfeed+Filtering+and+Dissemination+for+Behavioral+Therapy+on+Social+Network+Addictions)|38| -|[Impact of Domain and User's Learning Phase on Task and Session Identification in Smart Speaker Intelligent Assistants](https://doi.org/10.1145/3269206.3271803)|Seyyed Hadi Hashemi, Kyle Williams, Ahmed El Kholy, Imed Zitouni, Paul A. Crook||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Impact+of+Domain+and+User's+Learning+Phase+on+Task+and+Session+Identification+in+Smart+Speaker+Intelligent+Assistants)|38| -|[Coarse-to-Fine Annotation Enrichment for Semantic Segmentation Learning](https://doi.org/10.1145/3269206.3271672)|Yadan Luo, Ziwei Wang, Zi Huang, Yang Yang, Cong Zhao||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Coarse-to-Fine+Annotation+Enrichment+for+Semantic+Segmentation+Learning)|37| -|[Detecting Outliers in Data with Correlated Measures](https://doi.org/10.1145/3269206.3271798)|YuHsuan Kuo, Zhenhui Li, Daniel Kifer||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Detecting+Outliers+in+Data+with+Correlated+Measures)|37| -|[PARL: Let Strangers Speak Out What You Like](https://doi.org/10.1145/3269206.3271695)|Libing Wu, Cong Quan, Chenliang Li, Donghong Ji||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PARL:+Let+Strangers+Speak+Out+What+You+Like)|37| -|[Modeling Sequential Online Interactive Behaviors with Temporal Point Process](https://doi.org/10.1145/3269206.3271782)|Renqin Cai, Xueying Bai, Zhenrui Wang, Yuling Shi, Parikshit Sondhi, Hongning Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Modeling+Sequential+Online+Interactive+Behaviors+with+Temporal+Point+Process)|37| -|[Communication-Efficient Distributed Deep Metric Learning with Hybrid Synchronization](https://doi.org/10.1145/3269206.3271807)|Yuxin Su, Michael R. Lyu, Irwin King||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Communication-Efficient+Distributed+Deep+Metric+Learning+with+Hybrid+Synchronization)|37| -|[Device-Aware Rule Recommendation for the Internet of Things](https://doi.org/10.1145/3269206.3272009)|Beidou Wang, Xin Guo, Martin Ester, Ziyu Guan, Bandeep Singh, Yu Zhu, Jiajun Bu, Deng Cai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Device-Aware+Rule+Recommendation+for+the+Internet+of+Things)|37| -|[The Title Says It All: A Title Term Weighting Strategy For eCommerce Ranking](https://doi.org/10.1145/3269206.3272033)|Anthony Bell, Prathyusha Senthil Kumar, Daniel Miranda||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Title+Says+It+All:+A+Title+Term+Weighting+Strategy+For+eCommerce+Ranking)|37| -|[Semi-Supervised Multi-Label Feature Selection by Preserving Feature-Label Space Consistency](https://doi.org/10.1145/3269206.3271760)|Yuanyuan Xu, Jun Wang, Shuai An, Jinmao Wei, Jianhua Ruan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semi-Supervised+Multi-Label+Feature+Selection+by+Preserving+Feature-Label+Space+Consistency)|36| -|[Weakly-Supervised Neural Text Classification](https://doi.org/10.1145/3269206.3271737)|Yu Meng, Jiaming Shen, Chao Zhang, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weakly-Supervised+Neural+Text+Classification)|36| -|[A Novel Online Stacked Ensemble for Multi-Label Stream Classification](https://doi.org/10.1145/3269206.3271774)|Alican Büyükçakir, Hamed R. Bonab, Fazli Can||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Novel+Online+Stacked+Ensemble+for+Multi-Label+Stream+Classification)|36| -|[Generating Keyword Queries for Natural Language Queries to Alleviate Lexical Chasm Problem](https://doi.org/10.1145/3269206.3271727)|Xiaoyu Liu, Shunda Pan, Qi Zhang, YuGang Jiang, Xuanjing Huang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Generating+Keyword+Queries+for+Natural+Language+Queries+to+Alleviate+Lexical+Chasm+Problem)|36| -|[Learning Multi-touch Conversion Attribution with Dual-attention Mechanisms for Online Advertising](https://doi.org/10.1145/3269206.3271677)|Kan Ren, Yuchen Fang, Weinan Zhang, Shuhao Liu, Jiajun Li, Ya Zhang, Yong Yu, Jun Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+Multi-touch+Conversion+Attribution+with+Dual-attention+Mechanisms+for+Online+Advertising)|36| -|[Behavior-based Community Detection: Application to Host Assessment In Enterprise Information Networks](https://doi.org/10.1145/3269206.3272022)|Cheng Cao, Zhengzhang Chen, James Caverlee, LuAn Tang, Chen Luo, Zhichun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Behavior-based+Community+Detection:+Application+to+Host+Assessment+In+Enterprise+Information+Networks)|36| -|[Collaborative Alert Ranking for Anomaly Detection](https://doi.org/10.1145/3269206.3272013)|Ying Lin, Zhengzhang Chen, Cheng Cao, LuAn Tang, Kai Zhang, Wei Cheng, Zhichun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Collaborative+Alert+Ranking+for+Anomaly+Detection)|36| -|[Optimizing Boiler Control in Real-Time with Machine Learning for Sustainability](https://doi.org/10.1145/3269206.3272024)|Yukun Ding, Jinglan Liu, Jinjun Xiong, Meng Jiang, Yiyu Shi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Boiler+Control+in+Real-Time+with+Machine+Learning+for+Sustainability)|36| -|[Predictive Analysis by Leveraging Temporal User Behavior and User Embeddings](https://doi.org/10.1145/3269206.3272032)|Charles Chen, Sungchul Kim, Hung Bui, Ryan A. Rossi, Eunyee Koh, Branislav Kveton, Razvan C. Bunescu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Predictive+Analysis+by+Leveraging+Temporal+User+Behavior+and+User+Embeddings)|36| -|[Mathematics Content Understanding for Cyberlearning via Formula Evolution Map](https://doi.org/10.1145/3269206.3271694)|Zhuoren Jiang, Liangcai Gao, Ke Yuan, Zheng Gao, Zhi Tang, Xiaozhong Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Mathematics+Content+Understanding+for+Cyberlearning+via+Formula+Evolution+Map)|35| -|[Inductive Framework for Multi-Aspect Streaming Tensor Completion with Side Information](https://doi.org/10.1145/3269206.3271713)|Madhav Nimishakavi, Bamdev Mishra, Manish Gupta, Partha Pratim Talukdar||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inductive+Framework+for+Multi-Aspect+Streaming+Tensor+Completion+with+Side+Information)|35| -|[JIM: Joint Influence Modeling for Collective Search Behavior](https://doi.org/10.1145/3269206.3271681)|Shubhra Kanti Karmaker Santu, Liangda Li, Yi Chang, ChengXiang Zhai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=JIM:+Joint+Influence+Modeling+for+Collective+Search+Behavior)|35| -|[HeteroMed: Heterogeneous Information Network for Medical Diagnosis](https://doi.org/10.1145/3269206.3271805)|Anahita Hosseini, Ting Chen, Wenjun Wu, Yizhou Sun, Majid Sarrafzadeh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HeteroMed:+Heterogeneous+Information+Network+for+Medical+Diagnosis)|35| -|[Creating Scoring Rubric from Representative Student Answers for Improved Short Answer Grading](https://doi.org/10.1145/3269206.3271755)|Smit Marvaniya, Swarnadeep Saha, Tejas I. Dhamecha, Peter Foltz, Renuka Sindhgatta, Bikram Sengupta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Creating+Scoring+Rubric+from+Representative+Student+Answers+for+Improved+Short+Answer+Grading)|35| -|[Adversarial Learning of Answer-Related Representation for Visual Question Answering](https://doi.org/10.1145/3269206.3271765)|Yun Liu, Xiaoming Zhang, Feiran Huang, Zhoujun Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Adversarial+Learning+of+Answer-Related+Representation+for+Visual+Question+Answering)|35| -|[Studying Topical Relevance with Evidence-based Crowdsourcing](https://doi.org/10.1145/3269206.3271779)|Oana Inel, Giannis Haralabopoulos, Dan Li, Christophe Van Gysel, Zoltán Szlávik, Elena Simperl, Evangelos Kanoulas, Lora Aroyo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Studying+Topical+Relevance+with+Evidence-based+Crowdsourcing)|35| -|["Deep" Learning for Missing Value Imputationin Tables with Non-Numerical Data](https://doi.org/10.1145/3269206.3272005)|Felix Bießmann, David Salinas, Sebastian Schelter, Philipp Schmidt, Dustin Lange||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Deep"+Learning+for+Missing+Value+Imputationin+Tables+with+Non-Numerical+Data)|35| -|[In-Session Personalization for Talent Search](https://doi.org/10.1145/3269206.3272012)|Sahin Cem Geyik, Vijay Dialani, Meng Meng, Ryan Smith||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=In-Session+Personalization+for+Talent+Search)|35| -|[FALCON: A Fast Drop-In Replacement of Citation KNN for Multiple Instance Learning](https://doi.org/10.1145/3269206.3271787)|Shuai Yang, Xipeng Shen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=FALCON:+A+Fast+Drop-In+Replacement+of+Citation+KNN+for+Multiple+Instance+Learning)|34| -|[Learning User Preferences and Understanding Calendar Contexts for Event Scheduling](https://doi.org/10.1145/3269206.3271712)|Donghyeon Kim, Jinhyuk Lee, Donghee Choi, Jaehoon Choi, Jaewoo Kang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+User+Preferences+and+Understanding+Calendar+Contexts+for+Event+Scheduling)|34| -|[Exploring People's Attitudes and Behaviors Toward Careful Information Seeking in Web Search](https://doi.org/10.1145/3269206.3271799)|Takehiro Yamamoto, Yusuke Yamamoto, Sumio Fujita||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+People's+Attitudes+and+Behaviors+Toward+Careful+Information+Seeking+in+Web+Search)|34| -|[Representing and Recommending Shopping Baskets with Complementarity, Compatibility and Loyalty](https://doi.org/10.1145/3269206.3271786)|Mengting Wan, Di Wang, Jie Liu, Paul Bennett, Julian J. McAuley||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Representing+and+Recommending+Shopping+Baskets+with+Complementarity,+Compatibility+and+Loyalty)|34| -|[Privacy Protection for Flexible Parametric Survival Models](https://doi.org/10.1145/3269206.3271716)|Thông T. Nguyên, Siu Cheung Hui||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy+Protection+for+Flexible+Parametric+Survival+Models)|34| -|[Deep Graph Embedding for Ranking Optimization in E-commerce](https://doi.org/10.1145/3269206.3272028)|Chen Chu, Zhao Li, Beibei Xin, Fengchao Peng, Chuanren Liu, Remo Rohs, Qiong Luo, Jingren Zhou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Deep+Graph+Embedding+for+Ranking+Optimization+in+E-commerce)|34| -|[Rumor Detection with Hierarchical Social Attention Network](https://doi.org/10.1145/3269206.3271709)|Han Guo, Juan Cao, Yazi Zhang, Junbo Guo, Jintao Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Rumor+Detection+with+Hierarchical+Social+Attention+Network)|33| -|[Budget Constrained Bidding by Model-free Reinforcement Learning in Display Advertising](https://doi.org/10.1145/3269206.3271748)|Di Wu, Xiujun Chen, Xun Yang, Hao Wang, Qing Tan, Xiaoxun Zhang, Jian Xu, Kun Gai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Budget+Constrained+Bidding+by+Model-free+Reinforcement+Learning+in+Display+Advertising)|33| -|[Image Matters: Visually Modeling User Behaviors Using Advanced Model Server](https://doi.org/10.1145/3269206.3272007)|Tiezheng Ge, Liqin Zhao, Guorui Zhou, Keyu Chen, Shuying Liu, Huiming Yi, Zelin Hu, Bochao Liu, Peng Sun, Haoyu Liu, Pengtao Yi, Sui Huang, Zhiqiang Zhang, Xiaoqiang Zhu, Yu Zhang, Kun Gai||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Image+Matters:+Visually+Modeling+User+Behaviors+Using+Advanced+Model+Server)|33| -|[Real-Time Bidding with Multi-Agent Reinforcement Learning in Display Advertising](https://doi.org/10.1145/3269206.3272021)|Junqi Jin, Chengru Song, Han Li, Kun Gai, Jun Wang, Weinan Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Real-Time+Bidding+with+Multi-Agent+Reinforcement+Learning+in+Display+Advertising)|33| -|[Scalable Entity Resolution Using Probabilistic Signatures on Parallel Databases](https://doi.org/10.1145/3269206.3272016)|Yuhang Zhang, Kee Siong Ng, Tania Churchill, Peter Christen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Scalable+Entity+Resolution+Using+Probabilistic+Signatures+on+Parallel+Databases)|33| -|[GYANI: An Indexing Infrastructure for Knowledge-Centric Tasks](https://doi.org/10.1145/3269206.3271745)|Dhruv Gupta, Klaus Berberich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GYANI:+An+Indexing+Infrastructure+for+Knowledge-Centric+Tasks)|32| -|[Learning under Feature Drifts in Textual Streams](https://doi.org/10.1145/3269206.3271717)|Damianos P. Melidis, Myra Spiliopoulou, Eirini Ntoutsi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+under+Feature+Drifts+in+Textual+Streams)|32| -|[Heterogeneous Neural Attentive Factorization Machine for Rating Prediction](https://doi.org/10.1145/3269206.3271759)|Liang Chen, Yang Liu, Zibin Zheng, Philip S. Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Heterogeneous+Neural+Attentive+Factorization+Machine+for+Rating+Prediction)|32| -|[CUSNTF: A Scalable Sparse Non-negative Tensor Factorization Model for Large-scale Industrial Applications on Multi-GPU](https://doi.org/10.1145/3269206.3271749)|Hao Li, Kenli Li, Jiyao An, Keqin Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CUSNTF:+A+Scalable+Sparse+Non-negative+Tensor+Factorization+Model+for+Large-scale+Industrial+Applications+on+Multi-GPU)|32| -|[Web-based Startup Success Prediction](https://doi.org/10.1145/3269206.3272011)|Boris Sharchilev, Michael Roizner, Andrey Yu. Rumyantsev, Denis Ozornin, Pavel Serdyukov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web-based+Startup+Success+Prediction)|32| -|[Inferring Probabilistic Contagion Models Over Networks Using Active Queries](https://doi.org/10.1145/3269206.3271790)|Abhijin Adiga, Vanessa CedenoMieles, Chris J. Kuhlman, Madhav V. Marathe, S. S. Ravi, Daniel J. Rosenkrantz, Richard Edwin Stearns||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Probabilistic+Contagion+Models+Over+Networks+Using+Active+Queries)|31| -|[Are Meta-Paths Necessary?: Revisiting Heterogeneous Graph Embeddings](https://doi.org/10.1145/3269206.3271777)|Rana Hussein, Dingqi Yang, Philippe CudréMauroux||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Are+Meta-Paths+Necessary?:+Revisiting+Heterogeneous+Graph+Embeddings)|31| -|[METIC: Multi-Instance Entity Typing from Corpus](https://doi.org/10.1145/3269206.3271804)|Bo Xu, Zheng Luo, Luyang Huang, Bin Liang, Yanghua Xiao, Deqing Yang, Wei Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=METIC:+Multi-Instance+Entity+Typing+from+Corpus)|31| -|[Fairness-Aware Tensor-Based Recommendation](https://doi.org/10.1145/3269206.3271795)|Ziwei Zhu, Xia Hu, James Caverlee||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Fairness-Aware+Tensor-Based+Recommendation)|31| -|[Network-wide Crowd Flow Prediction of Sydney Trains via Customized Online Non-negative Matrix Factorization](https://doi.org/10.1145/3269206.3271757)|Yongshun Gong, Zhibin Li, Jian Zhang, Wei Liu, Yu Zheng, Christina Kirsch||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Network-wide+Crowd+Flow+Prediction+of+Sydney+Trains+via+Customized+Online+Non-negative+Matrix+Factorization)|31| -|[A Globalization-Semantic Matching Neural Network for Paraphrase Identification](https://doi.org/10.1145/3269206.3272004)|Miao Fan, Wutao Lin, Yue Feng, Mingming Sun, Ping Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Globalization-Semantic+Matching+Neural+Network+for+Paraphrase+Identification)|31| -|[PriPeARL: A Framework for Privacy-Preserving Analytics and Reporting at LinkedIn](https://doi.org/10.1145/3269206.3272031)|Krishnaram Kenthapadi, Thanh T. L. Tran||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PriPeARL:+A+Framework+for+Privacy-Preserving+Analytics+and+Reporting+at+LinkedIn)|31| -|[Towards a Fair Marketplace: Counterfactual Evaluation of the trade-off between Relevance, Fairness & Satisfaction in Recommendation Systems](https://doi.org/10.1145/3269206.3272027)|Rishabh Mehrotra, James McInerney, Hugues Bouchard, Mounia Lalmas, Fernando Diaz||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+a+Fair+Marketplace:+Counterfactual+Evaluation+of+the+trade-off+between+Relevance,+Fairness+&+Satisfaction+in+Recommendation+Systems)|31| -|[Smooth q-Gram, and Its Applications to Detection of Overlaps among Long, Error-Prone Sequencing Reads](https://doi.org/10.1145/3269206.3271688)|Haoyu Zhang, Qin Zhang, Haixu Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Smooth+q-Gram,+and+Its+Applications+to+Detection+of+Overlaps+among+Long,+Error-Prone+Sequencing+Reads)|30| -|[Multi-View Group Anomaly Detection](https://doi.org/10.1145/3269206.3271770)|Hongtao Wang, Pan Su, Miao Zhao, Hongmei Wang, Gang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multi-View+Group+Anomaly+Detection)|30| -|[MEgo2Vec: Embedding Matched Ego Networks for User Alignment Across Social Networks](https://doi.org/10.1145/3269206.3271705)|Jing Zhang, Bo Chen, Xianming Wang, Hong Chen, Cuiping Li, Fengmei Jin, Guojie Song, Yutao Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MEgo2Vec:+Embedding+Matched+Ego+Networks+for+User+Alignment+Across+Social+Networks)|30| -|[CRPP: Competing Recurrent Point Process for Modeling Visibility Dynamics in Information Diffusion](https://doi.org/10.1145/3269206.3271726)|Avirup Saha, Bidisha Samanta, Niloy Ganguly, Abir De||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=CRPP:+Competing+Recurrent+Point+Process+for+Modeling+Visibility+Dynamics+in+Information+Diffusion)|30| -|[Explicit Preference Elicitation for Task Completion Time](https://doi.org/10.1145/3269206.3271667)|Mohammadreza Esfandiari, Senjuti Basu Roy, Sihem AmerYahia||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Explicit+Preference+Elicitation+for+Task+Completion+Time)|30| -|[Privacy-Preserving Triangle Counting in Large Graphs](https://doi.org/10.1145/3269206.3271736)|Xiaofeng Ding, Xiaodong Zhang, Zhifeng Bao, Hai Jin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Privacy-Preserving+Triangle+Counting+in+Large+Graphs)|30| -|[Construction of Efficient V-Gram Dictionary for Sequential Data Analysis](https://doi.org/10.1145/3269206.3271789)|Igor Kuralenok, Natalia Starikova, Aleksandr Khvorov, Julian Serdyuk||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Construction+of+Efficient+V-Gram+Dictionary+for+Sequential+Data+Analysis)|30| -|[Towards Deep and Representation Learning for Talent Search at LinkedIn](https://doi.org/10.1145/3269206.3272030)|Rohan Ramanath, Hakan Inan, Gungor Polatkan, Bo Hu, Qi Guo, Cagri Ozcaglar, Xianren Wu, Krishnaram Kenthapadi, Sahin Cem Geyik||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Deep+and+Representation+Learning+for+Talent+Search+at+LinkedIn)|30| -|[Insights from the Long-Tail: Learning Latent Representations of Online User Behavior in the Presence of Skew and Sparsity](https://doi.org/10.1145/3269206.3271706)|Adit Krishnan, Ashish Sharma, Hari Sundaram||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Insights+from+the+Long-Tail:+Learning+Latent+Representations+of+Online+User+Behavior+in+the+Presence+of+Skew+and+Sparsity)|29| -|[Investigating Rumor News Using Agreement-Aware Search](https://doi.org/10.1145/3269206.3272020)|Jingbo Shang, Jiaming Shen, Tianhang Sun, Xingbang Liu, Anja Gruenheid, Flip Korn, Ádám D. Lelkes, Cong Yu, Jiawei Han||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Investigating+Rumor+News+Using+Agreement-Aware+Search)|29| -|[A Quest for Structure: Jointly Learning the Graph Structure and Semi-Supervised Classification](https://doi.org/10.1145/3269206.3271692)|Xuan Wu, Lingxiao Zhao, Leman Akoglu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Quest+for+Structure:+Jointly+Learning+the+Graph+Structure+and+Semi-Supervised+Classification)|28| -|["Bridge": Enhanced Signed Directed Network Embedding](https://doi.org/10.1145/3269206.3271738)|Yiqi Chen, Tieyun Qian, Huan Liu, Ke Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q="Bridge":+Enhanced+Signed+Directed+Network+Embedding)|28| -|[COPA: Constrained PARAFAC2 for Sparse & Large Datasets](https://doi.org/10.1145/3269206.3271775)|Ardavan Afshar, Ioakeim Perros, Evangelos E. Papalexakis, Elizabeth Searles, Joyce C. Ho, Jimeng Sun||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=COPA:+Constrained+PARAFAC2+for+Sparse+&+Large+Datasets)|28| -|[PolyHJ: A Polymorphic Main-Memory Hash Join Paradigm for Multi-Core Machines](https://doi.org/10.1145/3269206.3271680)|Omar Khattab, Mohammad Hammoud, Omar Shekfeh||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PolyHJ:+A+Polymorphic+Main-Memory+Hash+Join+Paradigm+for+Multi-Core+Machines)|28| -|[When Optimizer Chooses Table Scans: How to Make Them More Responsive](https://doi.org/10.1145/3269206.3271773)|Lijian Wan, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=When+Optimizer+Chooses+Table+Scans:+How+to+Make+Them+More+Responsive)|28| -|[TEQUILA: Temporal Question Answering over Knowledge Bases](https://doi.org/10.1145/3269206.3269247)|Zhen Jia, Abdalghani Abujabal, Rishiraj Saha Roy, Jannik Strötgen, Gerhard Weikum||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=TEQUILA:+Temporal+Question+Answering+over+Knowledge+Bases)|28| -|[Optimizing Generalized Linear Models with Billions of Variables](https://doi.org/10.1145/3269206.3272014)|Yanbo Liang, Yongyang Yu, MingJie Tang, Chaozhuo Li, Weiqing Yang, Weichen Xu, Ruifeng Zheng||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Optimizing+Generalized+Linear+Models+with+Billions+of+Variables)|28| -|[Online Learning for Non-Stationary A/B Tests](https://doi.org/10.1145/3269206.3271718)|Andrés Muñoz Medina, Sergei Vassilvitskii, Dong Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Online+Learning+for+Non-Stationary+A/B+Tests)|27| -|[StuffIE: Semantic Tagging of Unlabeled Facets Using Fine-Grained Information Extraction](https://doi.org/10.1145/3269206.3271812)|Radityo Eko Prasojo, Mouna Kacimi, Werner Nutt||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=StuffIE:+Semantic+Tagging+of+Unlabeled+Facets+Using+Fine-Grained+Information+Extraction)|27| -|[DiVE: Diversifying View Recommendation for Visual Data Exploration](https://doi.org/10.1145/3269206.3271744)|Rischan Mafrur, Mohamed A. Sharaf, Hina A. Khan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DiVE:+Diversifying+View+Recommendation+for+Visual+Data+Exploration)|27| -|[Neural Collaborative Ranking](https://doi.org/10.1145/3269206.3271715)|Bo Song, Xin Yang, Yi Cao, Congfu Xu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Neural+Collaborative+Ranking)|27| -|[tHoops: A Multi-Aspect Analytical Framework for Spatio-Temporal Basketball Data](https://doi.org/10.1145/3269206.3272002)|Evangelos E. Papalexakis, Konstantinos Pelechrinis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=tHoops:+A+Multi-Aspect+Analytical+Framework+for+Spatio-Temporal+Basketball+Data)|27| -|[Unbiased Learning to Rank: Theory and Practice](https://doi.org/10.1145/3269206.3274274)|Qingyao Ai, Jiaxin Mao, Yiqun Liu, W. Bruce Croft||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Unbiased+Learning+to+Rank:+Theory+and+Practice)|27| -|[Web Table Understanding by Collective Inference](https://doi.org/10.1145/3269206.3271729)|San Kim, Guoliang Li, Jianhua Feng, Kaiyu Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Web+Table+Understanding+by+Collective+Inference)|26| -|[Towards Practical Open Knowledge Base Canonicalization](https://doi.org/10.1145/3269206.3271707)|TienHsuan Wu, Zhiyong Wu, Ben Kao, Pengcheng Yin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Towards+Practical+Open+Knowledge+Base+Canonicalization)|26| -|[A Scalable Algorithm for Higher-order Features Generation using MinHash](https://doi.org/10.1145/3269206.3271752)|Pooja A, Naveen Nair, Rajeev Rastogi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Scalable+Algorithm+for+Higher-order+Features+Generation+using+MinHash)|26| -|[Randomized Bit Vector: Privacy-Preserving Encoding Mechanism](https://doi.org/10.1145/3269206.3271703)|Lin Sun, Lan Zhang, Xiaojun Ye||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Randomized+Bit+Vector:+Privacy-Preserving+Encoding+Mechanism)|26| -|[On Prediction of User Destination by Sub-Trajectory Understanding: A Deep Learning based Approach](https://doi.org/10.1145/3269206.3271708)|Jing Zhao, Jiajie Xu, Rui Zhou, Pengpeng Zhao, Chengfei Liu, Feng Zhu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Prediction+of+User+Destination+by+Sub-Trajectory+Understanding:+A+Deep+Learning+based+Approach)|26| -|[Recurrent Spatio-Temporal Point Process for Check-in Time Prediction](https://doi.org/10.1145/3269206.3272003)|Guolei Yang, Ying Cai, Chandan K. Reddy||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recurrent+Spatio-Temporal+Point+Process+for+Check-in+Time+Prediction)|26| -|[Exploring a High-quality Outlying Feature Value Set for Noise-Resilient Outlier Detection in Categorical Data](https://doi.org/10.1145/3269206.3271721)|Hongzuo Xu, Yongjun Wang, Li Cheng, Yijie Wang, Xingkong Ma||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Exploring+a+High-quality+Outlying+Feature+Value+Set+for+Noise-Resilient+Outlier+Detection+in+Categorical+Data)|25| -|[VTeller: Telling the Values Somewhere, Sometime in a Dynamic Network of Urban Systems](https://doi.org/10.1145/3269206.3271778)|Yan Li, Tingjian Ge, Cindy X. Chen||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=VTeller:+Telling+the+Values+Somewhere,+Sometime+in+a+Dynamic+Network+of+Urban+Systems)|25| -|[Meta-Analysis for Retrieval Experiments Involving Multiple Test Collections](https://doi.org/10.1145/3269206.3271719)|Ian Soboroff||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Meta-Analysis+for+Retrieval+Experiments+Involving+Multiple+Test+Collections)|25| -|[The Impact of Name-Matching and Blocking on Author Disambiguation](https://doi.org/10.1145/3269206.3271699)|Tobias Backes||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Impact+of+Name-Matching+and+Blocking+on+Author+Disambiguation)|25| -|[Parallel Hashing Using Representative Points in Hyperoctants](https://doi.org/10.1145/3269206.3271780)|Chaomin Shen, Mixue Yu, Chenxiao Zhao, Yaxin Peng, Guixu Zhang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Parallel+Hashing+Using+Representative+Points+in+Hyperoctants)|25| -|[Semantically-Enhanced Topic Modeling](https://doi.org/10.1145/3269206.3271797)|Felipe Viegas, Washington Luiz, Christian Gomes, Amir Khatibi, Sérgio D. Canuto, Fernando Mourão, Thiago Salles, Leonardo Rocha, Marcos André Gonçalves||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Semantically-Enhanced+Topic+Modeling)|25| -|[ASTRO: A Datalog System for Advanced Stream Reasoning](https://doi.org/10.1145/3269206.3269223)|Ariyam Das, Sahil M. Gandhi, Carlo Zaniolo||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=ASTRO:+A+Datalog+System+for+Advanced+Stream+Reasoning)|25| -|[Inferring Trip Occupancies in the Rise of Ride-Hailing Services](https://doi.org/10.1145/3269206.3272025)|MengFen Chiang, EePeng Lim, WangChien Lee, TuanAnh Hoang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Inferring+Trip+Occupancies+in+the+Rise+of+Ride-Hailing+Services)|25| -|[Incremental Techniques for Large-Scale Dynamic Query Processing](https://doi.org/10.1145/3269206.3274271)|Iman Elghandour, Ahmet Kara, Dan Olteanu, Stijn Vansummeren||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Incremental+Techniques+for+Large-Scale+Dynamic+Query+Processing)|25| -|[The Range Skyline Query](https://doi.org/10.1145/3269206.3271693)|Theodoros Tzouramanis, Eleftherios Tiakas, Apostolos N. Papadopoulos, Yannis Manolopoulos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=The+Range+Skyline+Query)|24| -|[A Network-embedding Based Method for Author Disambiguation](https://doi.org/10.1145/3269206.3269272)|Jun Xu, Siqi Shen, Dongsheng Li, Yongquan Fu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Network-embedding+Based+Method+for+Author+Disambiguation)|24| -|[vec2Link: Unifying Heterogeneous Data for Social Link Prediction](https://doi.org/10.1145/3269206.3269244)|Fan Zhou, Bangying Wu, Yi Yang, Goce Trajcevski, Kunpeng Zhang, Ting Zhong||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=vec2Link:+Unifying+Heterogeneous+Data+for+Social+Link+Prediction)|24| -|[DeepAuth: A Framework for Continuous User Re-authentication in Mobile Apps](https://doi.org/10.1145/3269206.3272034)|Sara Amini, Vahid Noroozi, Amit Pande, Satyajit Gupte, Philip S. Yu, Chris Kanich||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=DeepAuth:+A+Framework+for+Continuous+User+Re-authentication+in+Mobile+Apps)|24| -|[Trustworthy Experimentation Under Telemetry Loss](https://doi.org/10.1145/3269206.3271747)|Jayant Gupchup, Yasaman Hosseinkashi, Pavel A. Dmitriev, Daniel Schneider, Ross Cutler, Andrei Jefremov, Martin Ellis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Trustworthy+Experimentation+Under+Telemetry+Loss)|23| -|[Hierarchical Modeling and Shrinkage for User Session LengthPrediction in Media Streaming](https://doi.org/10.1145/3269206.3271700)|Antoine Dedieu, Rahul Mazumder, Zhen Zhu, Hossein Vahabi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Hierarchical+Modeling+and+Shrinkage+for+User+Session+LengthPrediction+in+Media+Streaming)|23| -|[Type Prediction Combining Linked Open Data and Social Media](https://doi.org/10.1145/3269206.3271781)|Yaroslav Nechaev, Francesco Corcoglioniti, Claudio Giuliano||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Type+Prediction+Combining+Linked+Open+Data+and+Social+Media)|23| -|[On Real-time Detecting Passenger Flow Anomalies](https://doi.org/10.1145/3269206.3271754)|Bo Tang, Hongyin Tang, Xinzhou Dong, Beihong Jin, Tingjian Ge||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Real-time+Detecting+Passenger+Flow+Anomalies)|23| -|[Disk-based Matrix Completion for Memory Limited Devices](https://doi.org/10.1145/3269206.3271685)|Dongha Lee, Jinoh Oh, Christos Faloutsos, Byungju Kim, Hwanjo Yu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Disk-based+Matrix+Completion+for+Memory+Limited+Devices)|23| -|[Heterogeneous Graph Neural Networks for Malicious Account Detection](https://doi.org/10.1145/3269206.3272010)|Ziqi Liu, Chaochao Chen, Xinxing Yang, Jun Zhou, Xiaolong Li, Le Song||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Heterogeneous+Graph+Neural+Networks+for+Malicious+Account+Detection)|23| -|[Secure Top-k Inner Product Retrieval](https://doi.org/10.1145/3269206.3271791)|Zhilin Zhang, Ke Wang, Chen Lin, Weipeng Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Secure+Top-k+Inner+Product+Retrieval)|22| -|[PSLSH: An Index Structure for Efficient Execution of Set Queries in High-Dimensional Spaces](https://doi.org/10.1145/3269206.3271691)|Parth Nagarkar, K. Selçuk Candan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=PSLSH:+An+Index+Structure+for+Efficient+Execution+of+Set+Queries+in+High-Dimensional+Spaces)|22| -|[Stochastic Coupon Probing in Social Networks](https://doi.org/10.1145/3269206.3271771)|Shaojie Tang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Stochastic+Coupon+Probing+in+Social+Networks)|22| -|[Naive Parallelization of Coordinate Descent Methods and an Application on Multi-core L1-regularized Classification](https://doi.org/10.1145/3269206.3271687)|Yong Zhuang, YuChin Juan, GuoXun Yuan, ChihJen Lin||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Naive+Parallelization+of+Coordinate+Descent+Methods+and+an+Application+on+Multi-core+L1-regularized+Classification)|22| -|[Multiperspective Graph-Theoretic Similarity Measure](https://doi.org/10.1145/3269206.3271758)|Dung D. Le, Hady W. Lauw||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Multiperspective+Graph-Theoretic+Similarity+Measure)|22| -|[MIaS: Math-Aware Retrieval in Digital Mathematical Libraries](https://doi.org/10.1145/3269206.3269233)|Petr Sojka, Michal Ruzicka, Vít Novotný||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=MIaS:+Math-Aware+Retrieval+in+Digital+Mathematical+Libraries)|22| -|[Improving the Efficiency of Inclusion Dependency Detection](https://doi.org/10.1145/3269206.3271724)|Nuhad Shaabani, Christoph Meinel||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+the+Efficiency+of+Inclusion+Dependency+Detection)|21| -|[Interactions Modeling in Multi-Task Multi-View Learning with Consistent Task Diversity](https://doi.org/10.1145/3269206.3271670)|Xiaoli Li, Jun Huan||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Interactions+Modeling+in+Multi-Task+Multi-View+Learning+with+Consistent+Task+Diversity)|21| -|[Calibration: A Simple Way to Improve Click Models](https://doi.org/10.1145/3269206.3269260)|Alexey Borisov, Julia Kiseleva, Ilya Markov, Maarten de Rijke||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Calibration:+A+Simple+Way+to+Improve+Click+Models)|21| -|[HRAM: A Hybrid Recurrent Attention Machine for News Recommendation](https://doi.org/10.1145/3269206.3269311)|Dhruv Khattar, Vaibhav Kumar, Vasudeva Varma, Manish Gupta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=HRAM:+A+Hybrid+Recurrent+Attention+Machine+for+News+Recommendation)|21| -|[Impact of Document Representation on Neural Ad hoc Retrieval](https://doi.org/10.1145/3269206.3269314)|Ebrahim Bagheri, Faezeh Ensan, Feras N. AlObeidat||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Impact+of+Document+Representation+on+Neural+Ad+hoc+Retrieval)|21| -|[A Fast Linear Computational Framework for User Action Prediction in Tencent MyApp](https://doi.org/10.1145/3269206.3272015)|Yaochen Hu, Di Niu, Jianming Yang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Fast+Linear+Computational+Framework+for+User+Action+Prediction+in+Tencent+MyApp)|21| -|[GraphRep: Boosting Text Mining, NLP and Information Retrieval with Graphs](https://doi.org/10.1145/3269206.3274273)|Michalis Vazirgiannis, Fragkiskos D. Malliaros, Giannis Nikolentzos||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=GraphRep:+Boosting+Text+Mining,+NLP+and+Information+Retrieval+with+Graphs)|21| -|[Recurrent Neural Networks with Top-k Gains for Session-based Recommendations](https://doi.org/10.1145/3269206.3271761)|Balázs Hidasi, Alexandros Karatzoglou||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Recurrent+Neural+Networks+with+Top-k+Gains+for+Session-based+Recommendations)|20| -|[Dataless Text Classification: A Topic Modeling Approach with Document Manifold](https://doi.org/10.1145/3269206.3271671)|Ximing Li, Changchun Li, Jinjin Chi, Jihong Ouyang, Chenliang Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Dataless+Text+Classification:+A+Topic+Modeling+Approach+with+Document+Manifold)|20| -|[Engineering a Simplified 0-Bit Consistent Weighted Sampling](https://doi.org/10.1145/3269206.3271690)|Edward Raff, Jared Sylvester, Charles Nicholas||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Engineering+a+Simplified+0-Bit+Consistent+Weighted+Sampling)|20| -|[A Combined Representation Learning Approach for Better Job and Skill Recommendation](https://doi.org/10.1145/3269206.3272023)|Vachik S. Dave, Baichuan Zhang, Mohammad Al Hasan, Khalifeh AlJadda, Mohammed Korayem||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=A+Combined+Representation+Learning+Approach+for+Better+Job+and+Skill+Recommendation)|20| -|[AceKG: A Large-scale Knowledge Graph for Academic Data Mining](https://doi.org/10.1145/3269206.3269252)|Ruijie Wang, Yuchen Yan, Jialu Wang, Yuting Jia, Ye Zhang, Weinan Zhang, Xinbing Wang||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=AceKG:+A+Large-scale+Knowledge+Graph+for+Academic+Data+Mining)|19| -|[Efficient and Effective Query Expansion for Web Search](https://doi.org/10.1145/3269206.3269305)|Claudio Lucchese, Franco Maria Nardini, Raffaele Perego, Roberto Trani, Rossano Venturini||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Efficient+and+Effective+Query+Expansion+for+Web+Search)|19| -|[Extracting Figures and Captions from Scientific Publications](https://doi.org/10.1145/3269206.3269265)|Pengyuan Li, Xiangying Jiang, Hagit Shatkay||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Extracting+Figures+and+Captions+from+Scientific+Publications)|19| -|[Improving Low-Rank Matrix Completion with Self-Expressiveness](https://doi.org/10.1145/3269206.3269293)|Minsu Kwon, HanGyu Kim, HoJin Choi||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Improving+Low-Rank+Matrix+Completion+with+Self-Expressiveness)|19| -|[Learning to Geolocalise Tweets at a Fine-Grained Level](https://doi.org/10.1145/3269206.3269291)|Jorge David Gonzalez Paule, Yashar Moshfeghi, Craig Macdonald, Iadh Ounis||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Learning+to+Geolocalise+Tweets+at+a+Fine-Grained+Level)|19| -|[Neural Retrieval with Partially Shared Embedding Spaces](https://doi.org/10.1145/3269206.3269306)|Bo Li, Le Jia||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Neural+Retrieval+with+Partially+Shared+Embedding+Spaces)|19| -|[On Building Fair and Reusable Test Collections using Bandit Techniques](https://doi.org/10.1145/3269206.3271766)|Ellen M. Voorhees||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=On+Building+Fair+and+Reusable+Test+Collections+using+Bandit+Techniques)|18| -|[Embedding Fuzzy K-Means with Nonnegative Spectral Clustering via Incorporating Side Information](https://doi.org/10.1145/3269206.3269237)|Muhan Guo, Rui Zhang, Feiping Nie, Xuelong Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Embedding+Fuzzy+K-Means+with+Nonnegative+Spectral+Clustering+via+Incorporating+Side+Information)|18| -|[Enhanced Network Embeddings via Exploiting Edge Labels](https://doi.org/10.1145/3269206.3269270)|Haochen Chen, Xiaofei Sun, Yingtao Tian, Bryan Perozzi, Muhao Chen, Steven Skiena||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Enhanced+Network+Embeddings+via+Exploiting+Edge+Labels)|18| -|[Imbalanced Sentiment Classification with Multi-Task Learning](https://doi.org/10.1145/3269206.3269325)|Fangzhao Wu, Chuhan Wu, Junxin Liu||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Imbalanced+Sentiment+Classification+with+Multi-Task+Learning)|18| -|[Label Propagation with Neural Networks](https://doi.org/10.1145/3269206.3269322)|Aditya Pal, Deepayan Chakrabarti||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Label+Propagation+with+Neural+Networks)|18| -|[Query Understanding via Entity Attribute Identification](https://doi.org/10.1145/3269206.3269245)|Arash Dargahi Nobari, Arian Askari, Faegheh Hasibi, Mahmood Neshati||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Query+Understanding+via+Entity+Attribute+Identification)|18| -|[Re-evaluating Embedding-Based Knowledge Graph Completion Methods](https://doi.org/10.1145/3269206.3269266)|Farahnaz Akrami, Lingbing Guo, Wei Hu, Chengkai Li||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Re-evaluating+Embedding-Based+Knowledge+Graph+Completion+Methods)|18| -|[Weave&Rec: A Word Embedding based 3-D Convolutional Network for News Recommendation](https://doi.org/10.1145/3269206.3269307)|Dhruv Khattar, Vaibhav Kumar, Vasudeva Varma, Manish Gupta||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Weave&Rec:+A+Word+Embedding+based+3-D+Convolutional+Network+for+News+Recommendation)|18| -|[Spark-parSketch: A Massively Distributed Indexing of Time Series Datasets](https://doi.org/10.1145/3269206.3269226)|Oleksandra Levchenko, Djamel Edine Yagoubi, Reza Akbarinia, Florent Masseglia, Boyan Kolev, Dennis E. Shasha||[code](https://paperswithcode.com/search?q_meta=&q_type=&q=Spark-parSketch:+A+Massively+Distributed+Indexing+of+Time+Series+Datasets)|18| -|[FA + TA