Goto

Collaborating Authors

 Personal Assistant Systems


In the Eye of the Beholder: Robust Prediction with Causal User Modeling

arXiv.org Artificial Intelligence

Accurately predicting the relevance of items to users is crucial to the success of many social platforms. Conventional approaches train models on logged historical data; but recommendation systems, media services, and online marketplaces all exhibit a constant influx of new content -- making relevancy a moving target, to which standard predictive models are not robust. In this paper, we propose a learning framework for relevance prediction that is robust to changes in the data distribution. Our key observation is that robustness can be obtained by accounting for how users causally perceive the environment. We model users as boundedly-rational decision makers whose causal beliefs are encoded by a causal graph, and show how minimal information regarding the graph can be used to contend with distributional changes. Experiments in multiple settings demonstrate the effectiveness of our approach.


The White House unveils a "Bill of Rights" for artificial intelligence

#artificialintelligence

As artificial intelligence continues to develop and become a bigger part of our lives, many people believe AI should have regulations or guidelines in place. The White House agrees with those citizens, releasing a "bill of rights" dedicated solely to artificial intelligence. It would be a massive understatement to say artificial intelligence has affected our lives. Whether that's a positive or negative is entirely up to you. Virtual assistants like Alexa and Siri are integrated into many devices that people interact with everyday.


GBA: A Tuning-free Approach to Switch between Synchronous and Asynchronous Training for Recommendation Model

arXiv.org Artificial Intelligence

High-concurrency asynchronous training upon parameter server (PS) architecture and high-performance synchronous training upon all-reduce (AR) architecture are the most commonly deployed distributed training modes for recommendation models. Although synchronous AR training is designed to have higher training efficiency, asynchronous PS training would be a better choice for training speed when there are stragglers (slow workers) in the shared cluster, especially under limited computing resources. An ideal way to take full advantage of these two training modes is to switch between them upon the cluster status. However, switching training modes often requires tuning hyper-parameters, which is extremely time- and resource-consuming. We find two obstacles to a tuning-free approach: the different distribution of the gradient values and the stale gradients from the stragglers. This paper proposes Global Batch gradients Aggregation (GBA) over PS, which aggregates and applies gradients with the same global batch size as the synchronous training. A token-control process is implemented to assemble the gradients and decay the gradients with severe staleness. We provide the convergence analysis to reveal that GBA has comparable convergence properties with the synchronous training, and demonstrate the robustness of GBA the recommendation models against the gradient staleness. Experiments on three industrial-scale recommendation tasks show that GBA is an effective tuning-free approach for switching. Compared to the state-of-the-art derived asynchronous training, GBA achieves up to 0.2% improvement on the AUC metric, which is significant for the recommendation models. Meanwhile, under the strained hardware resource, GBA speeds up at least 2.4x compared to synchronous training.


Artificial Intelligence: How It Will Change The Way You Live – Digital Time News

#artificialintelligence

Artificial Intelligence will have a long and lasting impact on our lives. It is already at work in many of the devices we use and it will only become more indispensable as time goes on. And it's not just about machines doing things that we would otherwise do ourselves, like driving cars or organizing our lives. AI will also make all sorts of things cheaper, more convenient, and safer–from medical diagnoses to movie recommendations to home security. In the past few years, artificial intelligence (AI) has made incredible strides. We've seen AI beat humans in complex games like Go and chess, and it is now being used in a variety of applications such as autonomous vehicles, facial recognition, and fraud detection.


Who's Who in Data Science and Machine Learning? - Onalytica

#artificialintelligence

Data Science combines statistical and computational skills together with Machine Learning for data-driven problem solving. This rapidly growing area includes large-scale data analysis, DevOps and deep learning, and has applications in many tech and finance related areas, amongst others. Data Science and Machine Learning distinguishes itself from other computer guided decision methods by creating prediction algorithms using data. Well known examples of these applications include spam detectors, movie and music recommendation systems as well as speech recognition tools. Data Science and Machine Learning platforms provide a variety of basic building blocks that aid in creating different types of data science solutions.


Michelle Obama's voting initiative partners with dating app that made 'No Voting No Vucking' video

FOX News

Fox News Flash top headlines are here. Check out what's clicking on Foxnews.com. Editor's note: This story contains graphic language. Former first lady Michelle Obama's voting initiative is partnering with a dating app that made a video titled "No Voting No Vucking." The voting initiative, When We All Vote announced that it would be working with the BLK dating app on Oct. 4 and doing "voter registration activations" with the company.


7 default settings tech companies don't ever want you to change

FOX News

Fox News Flash top headlines are here. Check out what's clicking on Foxnews.com. Our devices are packed full of settings that keep us safe and secure. You just need to know which ones to adjust. Tap or click for Windows and Mac security settings to check now.


SUPER-Rec: SUrrounding Position-Enhanced Representation for Recommendation

arXiv.org Artificial Intelligence

Collaborative filtering problems are commonly solved based on matrix completion techniques which recover the missing values of user-item interaction matrices. In a matrix, the rating position specifically represents the user given and the item rated. Previous matrix completion techniques tend to neglect the position of each element (user, item and ratings) in the matrix but mainly focus on semantic similarity between users and items to predict the missing value in a matrix. This paper proposes a novel position-enhanced user/item representation training model for recommendation, SUPER-Rec. We first capture the rating position in the matrix using the relative positional rating encoding and store the position-enhanced rating information and its user-item relationship to the fixed dimension of embedding that is not affected by the matrix size. Then, we apply the trained position-enhanced user and item representations to the simplest traditional machine learning models to highlight the pure novelty of our representation learning model. We contribute the first formal introduction and quantitative analysis of position-enhanced item representation in the recommendation domain and produce a principled discussion about our SUPER-Rec to the outperformed performance of typical collaborative filtering recommendation tasks with both explicit and implicit feedback.


Augmentations in Hypergraph Contrastive Learning: Fabricated and Generative

arXiv.org Artificial Intelligence

This paper targets at improving the generalizability of hypergraph neural networks in the low-label regime, through applying the contrastive learning approach from images/graphs (we refer to it as HyperGCL). We focus on the following question: How to construct contrastive views for hypergraphs via augmentations? We provide the solutions in two folds. First, guided by domain knowledge, we fabricate two schemes to augment hyperedges with higher-order relations encoded, and adopt three vertex augmentation strategies from graph-structured data. Second, in search of more effective views in a data-driven manner, we for the first time propose a hypergraph generative model to generate augmented views, and then an end-to-end differentiable pipeline to jointly learn hypergraph augmentations and model parameters. Our technical innovations are reflected in designing both fabricated and generative augmentations of hypergraphs. The experimental findings include: (i) Among fabricated augmentations in HyperGCL, augmenting hyperedges provides the most numerical gains, implying that higher-order information in structures is usually more downstream-relevant; (ii) Generative augmentations do better in preserving higher-order information to further benefit generalizability; (iii) HyperGCL also boosts robustness and fairness in hypergraph representation learning.


RecInDial: A Unified Framework for Conversational Recommendation with Pretrained Language Models

arXiv.org Artificial Intelligence

Conversational Recommender System (CRS), which aims to recommend high-quality items to users through interactive conversations, has gained great research interest recently. A CRS is usually composed of a recommendation module and a generation module. In the previous work, these two modules are loosely connected in the model training and are shallowly integrated during inference, where a simple switching or copy mechanism is adopted to incorporate recommended items into generated responses. Moreover, the current end-to-end neural models trained on small crowd-sourcing datasets (e.g., 10K dialogs in the ReDial dataset) tend to overfit and have poor chit-chat ability. In this work, we propose a novel unified framework that integrates recommendation into the dialog (RecInDial) generation by introducing a vocabulary pointer. To tackle the low-resource issue in CRS, we finetune the large-scale pretrained language models to generate fluent and diverse responses, and introduce a knowledge-aware bias learned from an entity-oriented knowledge graph to enhance the recommendation performance. Furthermore, we propose to evaluate the CRS models in an end-to-end manner, which can reflect the overall performance of the entire system rather than the performance of individual modules, compared to the separate evaluations of the two modules used in previous work. Experiments on the benchmark dataset ReDial show our RecInDial model significantly surpasses the state-of-the-art methods. More extensive analyses show the effectiveness of our model.