Goto

Collaborating Authors

 Personal Assistant Systems


NFTs to MARS: Multi-Attention Recommender System for NFTs

arXiv.org Artificial Intelligence

Recommender systems have become essential tools for enhancing user experiences across various domains. While extensive research has been conducted on recommender systems for movies, music, and e-commerce, the rapidly growing and economically significant Non-Fungible Token (NFT) market remains underexplored. The unique characteristics and increasing prominence of the NFT market highlight the importance of developing tailored recommender systems to cater to its specific needs and unlock its full potential. In this paper, we examine the distinctive characteristics of NFTs and propose the first recommender system specifically designed to address NFT market challenges. In specific, we develop a Multi-Attention Recommender System for NFTs (NFT-MARS) with three key characteristics: (1) graph attention to handle sparse user-item interactions, (2) multi-modal attention to incorporate feature preference of users, and (3) multi-task learning to consider the dual nature of NFTs as both artwork and financial assets. We demonstrate the effectiveness of NFT-MARS compared to various baseline models using the actual transaction data of NFTs collected directly from blockchain for four of the most popular NFT collections. The source code and data are available at https://anonymous.4open.science/r/RecSys2023-93ED.


Better Generalization with Semantic IDs: A case study in Ranking for Recommendations

arXiv.org Artificial Intelligence

Training good representations for items is critical in recommender models. Typically, an item is assigned a unique randomly generated ID, and is commonly represented by learning an embedding corresponding to the value of the random ID. Although widely used, this approach have limitations when the number of items are large and items are power-law distributed -- typical characteristics of real-world recommendation systems. This leads to the item cold-start problem, where the model is unable to make reliable inferences for tail and previously unseen items. Removing these ID features and their learned embeddings altogether to combat cold-start issue severely degrades the recommendation quality. Content-based item embeddings are more reliable, but they are expensive to store and use, particularly for users' past item interaction sequence. In this paper, we use Semantic IDs, a compact discrete item representations learned from content embeddings using RQ-VAE that captures hierarchy of concepts in items. We showcase how we use them as a replacement of item IDs in a resource-constrained ranking model used in an industrial-scale video sharing platform. Moreover, we show how Semantic IDs improves the generalization ability of our system, without sacrificing top-level metrics.


How to make Siri listen to you longer on iPhone and iPad

FOX News

Siri is known to cut people off midsentence, but there's away to make Siri listen longer. CyberGuy shows you how to customize the wait time. I have a love /hate relationship with Siri. It shouldn't be so complicated and sure shouldn't sound like we need couples counseling. Unfortunately, this dysfunctional relationship I share with my iPhone's virtual assistant is systematic and widespread.


Enhancing Topic Extraction in Recommender Systems with Entropy Regularization

arXiv.org Artificial Intelligence

Linking latent features with their semantic meanings can improve the interpretability of recommender systems [16]. In recent years, many recommender systems have Typically, topic modeling techniques are utilized to extract utilized textual data for topic extraction to enhance topics from textual data and align extracted topics to latent interpretability. However, our findings reveal a noticeable features. For example, [13] introduces an approach that combines deficiency in the coherence of keywords the traditional latent factor model with Latent Dirichlet within topics, resulting in low explainability of the Allocation (LDA) [3] to uncover topics correlated with the model. This paper introduces a novel approach latent factors of both products and users. On the other hand, called entropy regularization to address the issue, [12] adopts a convolutional neural network (CNN) to encode leading to more interpretable topics extracted from textual reviews into item embeddings. The convolutional kernels recommender systems, while ensuring that the performance are then utilized to extract topics that correspond to the of the primary task stays competitively latent factors of items.


Video-to-Music Recommendation using Temporal Alignment of Segments

arXiv.org Artificial Intelligence

We study cross-modal recommendation of music tracks to be used as soundtracks for videos. This problem is known as the music supervision task. We build on a self-supervised system that learns a content association between music and video. In addition to the adequacy of content, adequacy of structure is crucial in music supervision to obtain relevant recommendations. We propose a novel approach to significantly improve the system's performance using structure-aware recommendation. The core idea is to consider not only the full audio-video clips, but rather shorter segments for training and inference. We find that using semantic segments and ranking the tracks according to sequence alignment costs significantly improves the results. We investigate the impact of different ranking metrics and segmentation methods.


Game-changing Alexa skills to supercharge your daily routine

FOX News

If you've got an Amazon Echo speaker, you already know how much fun having Alexa at your fingertips can be despite the risk to your privacy and security. Whether playing music, answering random questions, or venting your frustrations, Alexa has become a part of your daily routine. Did you know, however, that it can do so much more? There are some seriously cool Alexa skills out there that can elevate your Echo speaker to a whole new level of intelligence. CLICK TO GET KURT'S FREE CYBERGUY NEWSLETTER WITH SECURITY ALERTS, QUICK TIPS, TECH REVIEWS AND EASY HOW-TO'S TO MAKE YOU SMARTER First, we have the "Ask My Buddy" skill, perfect for those who live alone or need assistance. With this skill, you can easily ask Alexa to notify a designated contact during an emergency, such as a fall or medical issue.


Securing Visually-Aware Recommender Systems: An Adversarial Image Reconstruction and Detection Framework

arXiv.org Artificial Intelligence

With rich visual data, such as images, becoming readily associated with items, visually-aware recommendation systems (VARS) have been widely used in different applications. Recent studies have shown that VARS are vulnerable to item-image adversarial attacks, which add human-imperceptible perturbations to the clean images associated with those items. Attacks on VARS pose new security challenges to a wide range of applications such as e-Commerce and social networks where VARS are widely used. How to secure VARS from such adversarial attacks becomes a critical problem. Currently, there is still a lack of systematic study on how to design secure defense strategies against visual attacks on VARS. In this paper, we attempt to fill this gap by proposing an adversarial image reconstruction and detection framework to secure VARS. Our proposed method can simultaneously (1) secure VARS from adversarial attacks characterized by local perturbations by image reconstruction based on global vision transformers; and (2) accurately detect adversarial examples using a novel contrastive learning approach. Meanwhile, our framework is designed to be used as both a filter and a detector so that they can be jointly trained to improve the flexibility of our defense strategy to a variety of attacks and VARS models. We have conducted extensive experimental studies with two popular attack methods (FGSM and PGD). Our experimental results on two real-world datasets show that our defense strategy against visual attacks is effective and outperforms existing methods on different attacks. Moreover, our method can detect adversarial examples with high accuracy.


ARIST: An Effective API Argument Recommendation Approach

arXiv.org Artificial Intelligence

Learning and remembering to use APIs are difficult. Several techniques have been proposed to assist developers in using APIs. Most existing techniques focus on recommending the right API methods to call, but very few techniques focus on recommending API arguments. In this paper, we propose ARIST, a novel automated argument recommendation approach which suggests arguments by predicting developers' expectations when they define and use API methods. To implement this idea in the recommendation process, ARIST combines program analysis (PA), language models (LMs), and several features specialized for the recommendation task which consider the functionality of formal parameters and the positional information of code elements (e.g., variables or method calls) in the given context. In ARIST, the LMs and the recommending features are used to suggest the promising candidates identified by PA. Meanwhile, PA navigates the LMs and the features working on the set of the valid candidates which satisfy syntax, accessibility, and type-compatibility constraints defined by the programming language in use. Our evaluation on a large dataset of real-world projects shows that ARIST improves the state-of-the-art approach by 19% and 18% in top-1 precision and recall for recommending arguments of frequently-used libraries. For general argument recommendation task, i.e., recommending arguments for every method call, ARIST outperforms the baseline approaches by up to 125% top-1 accuracy. Moreover, for newly-encountered projects, ARIST achieves more than 60% top-3 accuracy when evaluating on a larger dataset. For working/maintaining projects, with a personalized LM to capture developers' coding practice, ARIST can productively rank the expected arguments at the top-1 position in 7/10 requests.


Integrating Item Relevance in Training Loss for Sequential Recommender Systems

arXiv.org Artificial Intelligence

Sequential Recommender Systems (SRSs) are a popular type of recommender system that learns from a user's history to predict the next item they are likely to interact with. However, user interactions can be affected by noise stemming from account sharing, inconsistent preferences, or accidental clicks. To address this issue, we (i) propose a new evaluation protocol that takes multiple future items into account and (ii) introduce a novel relevance-aware loss function to train a SRS with multiple future items to make it more robust to noise. Our relevance-aware models obtain an improvement of ~1.2% of NDCG@10 and 0.88% in the traditional evaluation protocol, while in the new evaluation protocol, the improvement is ~1.63% of NDCG@10 and ~1.5% of HR w.r.t the best performing models.


The chat-up lines to AVOID if you want to bag a date, according to scientists

Daily Mail - Science & tech

Women seeking a relationship have revealed which messages a prospective partner should definitely not send on dating apps. Researchers led by Purdue University, Indiana, found that among 275 participants -- mostly female -- starting a conversation with a sexually explicit message was the biggest turn-off, especially for people looking for a long-term relationship. Conversely, someone whose initial message included a greeting and a question was more likely to get a positive response. It comes as a separate group of scientists also revealed that tall men would prioritize tall women for relationships, but see short ones as just a fling. Women seeking a long-term relationship on dating apps find a sexually explicit opening line surprising and a violation, according to new research.