Skip to content

Uncertainty on Asynchronous Time Event Prediction (Spotlight, Neurips 2019)

License

Notifications You must be signed in to change notification settings

sharpenb/Uncertainty-Event-Prediction

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uncertainty on Asynchronous Time Event Prediction

This repository presents the experiments of the paper:

Uncertainty on Asynchronous Time Event Prediction
Marin Bilos, Bertrand Charpentier, Stephan Günnemann
Conference on Neural Information Processing Systems (NeurIPS), 2019. Spotlight talk

[Paper|Publisher]

Model Diagram

Requirements

numpy=1.17.2
tensorflow=1.14.0

Usage

In order to train the models described in the paper:

python src/train.py

Parameters can be changed in src/train.py. Default parameters are:

## General config
model_name = 'dirichlet'      # ['gp', 'dirichlet', 'dpp']
dataset_name = 'random_graph' # ['mooc', 'random_graph', 'smart-home-A', 'stack_overflow']
max_epochs = 1000             # Maximum number of epochs
patience = 10                 # After how many iterations to stop the training
batch_size = 32               # How many sequences in each batch during training
rnn_hidden_dim = 64           # Size of RNN hidden state
mark_emb_dim = 64             # Size of input mark embedding vector
layer_hidden_dim = 64         # Size of a hidden layer that generates pseude points from RNN hidden state
n_layers = 2                  # Number of layers that generate points (for GP)
n_points = 20                 # Number of points to generate
n_samples = 10                # Number of samples to use in Monte Carlo estimations (if used)
alpha = 1e-3                  # Alpha regularization param (eq. 7)
beta = 1e-3                   # Beta regularization param (eq. 7)
lr = 1e-3                     # Learning rate of Adam optimizer
regularization = 1e-3         # L2 regularization

Cite

Please cite our paper if you use the model or this code in your own work:

@incollection{NIPS2019_9445,
title = {Uncertainty on Asynchronous Time Event Prediction},
author = {Bilo\v{s}, Marin and Charpentier, Bertrand and G\"{u}nnemann, Stephan},
booktitle = {Advances in Neural Information Processing Systems 32},
editor = {H. Wallach and H. Larochelle and A. Beygelzimer and F. d\textquotesingle Alch\'{e}-Buc and E. Fox and R. Garnett},
pages = {12851--12860},
year = {2019},
publisher = {Curran Associates, Inc.},
url = {http://papers.nips.cc/paper/9445-uncertainty-on-asynchronous-time-event-prediction.pdf}
}

About

Uncertainty on Asynchronous Time Event Prediction (Spotlight, Neurips 2019)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages