Publications by Vadim Sokolov (GMU), Joshua Auld (ANL) and Natalia Zuniga (ANL)

Gen Bayes Code Examples: COBAL-EBEB, 2024

04.12.2024

Gen Bayes Code Examples: COBAL-EBEB, 2024 Nick Polson and Vadim Sokolov Quantile Neural Network for Synthetic Data Code import numpy as np import torch import matplotlib.pyplot as plt import scipy.stats # Sin n = 10000 # x = np.linspace(-1,1, n) np.random.seed(8) x = np.random.uniform(-1,1,(n)) x = np.sort(x) eps = np.random.normal(0,np.exp(1-...

2128 sym Python (9607 sym/32 pcs) 7 img

Deep Learning Tutorial

03.12.2024

Deep Learning Tutorial: COBAL-EBEB, 2024 Introduction Review of deep learning methods which provide insight into structured high-dimensional data. Deep learning uses layers of semi-affine input transformations to provide a predictive rule. Applying these layers of transformations leads to a set of attributes (or, features) To which probabilistic ...

12543 sym Python (6768 sym/31 pcs) 9 img 6 tbl

Austin Sensitivity

02.07.2024

Austin Sensitivity Analysis Author Vadim Sokolov Published July 2, 2024 Exploratory analysis X = load_json_training_data_x('data/timedep_training_data.json'); n = nrow(X); p = ncol(X) X = cbind(X,1:n) colnames(X)[p+1]="run_id" Y = read_csv('data/vmt_vht.csv') %>% select(million_VMT,million_VHT,speed_mph,count,run_id) X = as_tibble(X) d = i...

632 sym 13 img 1 tbl

Forecasting: From Structural Models to Tranformers

21.11.2023

Forecasting: From Structural Models to Tranformers Author Vadim Sokolov Published November 19, 2023 This is rmarkdown version (with some aditoins) of the blog post by Steven L. Scott (2017), available at https://www.unofficialgoogledatascience.com/2017/07/fitting-bayesian-structural-time-series.html Introduction Time series data are everywhe...

42073 sym Python (4314 sym/23 pcs) 25 img 1 tbl

Forecasting: From Structural Models to Transformers

20.11.2023

This is rmarkdown version (with some aditoins) of the blog post by Steven L. Scott (2017), available at https://www.unofficialgoogledatascience.com/2017/07/fitting-bayesian-structural-time-series.html Introduction Time series data are everywhere, but time series modeling is a fairly specialized area within statistics and data science. This post de...

42373 sym R (4496 sym/27 pcs) 21 img 2 tbl

Hockey Shots

26.10.2023

NHL Shots Oilers forward Zach Hyman had the most shots on goal (179) from the high-danger area, and Edmonton had the most shots on goal (932) and goals (178) from there as a team. Tampa Bay Lightning center Brayden Point scored the most goals (36). Anaheim Ducks goalie John Gibson faced the most shots on goal (641) and made the most saves (527) fro...

1888 sym R (1715 sym/11 pcs) 4 img 1 tbl

Hockey Shots

25.10.2023

NHL Shots Oilers forward Zach Hyman had the most shots on goal (179) from the high-danger area, and Edmonton had the most shots on goal (932) and goals (178) from there as a team. Tampa Bay Lightning center Brayden Point scored the most goals (36). Anaheim Ducks goalie John Gibson faced the most shots on goal (641) and made the most saves (527) fro...

1869 sym R (2435 sym/10 pcs) 3 img 1 tbl

Austin Transit Sensitivity

10.10.2023

2023-10-10 Overview Previous calibraiton efforts relied on updating values of constant parameters Model outputs are most sensitive to the constant parameters We were able to achieve good calibration metrics with this strategy Downside: only updating constants leads to overfitting. In this study: analyse sensitivity of transit-related behavioral p...

3967 sym 9 img 1 tbl

Deep Learning Examples 2022

08.11.2022

Simple Circle Example numSamples = 200 # total number of observations radius = 10 # radius of the outer curcle noise = 0.0001 # amount of noise to be added to the data d = matrix(0,ncol = 3, nrow = numSamples) # matrix to store our generated data # Generate positive points inside the circle. for (i in 1:(numSamples/2) ) { r = runif(1,0, radius...

1253 sym Python (14258 sym/71 pcs) 9 img 2 tbl

TNC Analysis for Chicago

21.04.2021

Introduction We develop regression models for analyzing impact of the ride sharing services on transit demand. Our analysis is motivated by the problem of the loss of transit ridership over the past several years. Those losses overlap with the introduction of Transportation Network Companies (TNCs). There is a seeming correlation between the two,...

12482 sym R (86 sym/2 pcs) 7 img 4 tbl