Papers › AR-Net: A simple Auto-Regressive Neural Network for time-series

AR-Net: A simple Auto-Regressive Neural Network for time-series

27 Nov 2019arXiv:1911.12436archive 2025-07-28

Oskar Triebe, Nikolay Laptev, Ram Rajagopal

In this paper we present a new framework for time-series modeling that combines the best of traditional statistical models and neural networks. We focus on time-series with long-range dependencies, needed for monitoring fine granularity data (e.g. minutes, seconds, milliseconds), prevalent in operational use-cases. Traditional models, such as auto-regression fitted with least squares (Classic-AR) can model time-series with a concise and interpretable model. When dealing with long-range dependencies, Classic-AR models can become intractably slow to fit for large data. Recently, sequence-to-sequence models, such as Recurrent Neural Networks, which were originally intended for natural language processing, have become popular for time-series. However, they can be overly complex for typical time-series data and lack interpretability. A scalable and interpretable model is needed to bridge the statistical and deep learning-based approaches. As a first step towards this goal, we propose modelling AR-process dynamics using a feed-forward neural network approach, termed AR-Net. We show that AR-Net is as interpretable as Classic-AR but also scales to long-range dependencies. Our results lead to three major conclusions: First, AR-Net learns identical AR-coefficients as Classic-AR, thus being equally interpretable. Second, the computational complexity with respect to the order of the AR process, is linear for AR-Net as compared to a quadratic for Classic-AR. This makes it possible to model long-range dependencies within fine granularity data. Third, by introducing regularization, AR-Net automatically selects and learns sparse AR-coefficients. This eliminates the need to know the exact order of the AR-process and allows to learn sparse weights for a model with long-range dependencies.

PaperPDFCodeCode Syntology ran

In Syntology Open this paper in Syntology's Atlas, the map of the papers in Syntology's graph and their citations.

For agents, Syntology's MCP tool lists every function and class Syntology harvested from this paper and whether it ran (how to connect): get_harvested_code_for_paper(arxiv_id="1911.12436")

Code

Syntology Ran 0 of 18 code samples harvested from 1 repository linked to this paper; 18 have no recorded run.

By repository: official repository: 18 samples from 1 repository, 0 ran. The run record, sample by sample. “Ran” means executed on a synthesized input, not that the code is correct or reproduces the paper.

ourownstory/AR-Net officialmentioned on GitHubpytorchMIT report
ourownstory/neural_prophet mentioned on GitHubpytorchMIT report

Repository list and official/mentioned flags are the archive's, frozen 2025-07-28. Reachability, where shown, is from one Syntology probe window (2026-09-16 to 2026-09-18); repositories not probed show nothing. GitHub stars are not tracked.

Code Syntology ran Syntology

18 samples harvested; 0 ran; 0 honoured the contract we drafted; 18 have no recorded run. Read from Syntology's graph 2026-09-24; that is when this build read the record, not when the samples ran.

18unverified

Licence: 0 of the 18 samples are pointer only, meaning Syntology does not serve that copy's text. This page shows no code text for any sample; each one links to its file in the repository.

Harvested from ourownstory/AR-Net. “Ran” means the sample executed on a synthesized input. It does not mean the output is correct, and nothing here reproduces the paper's results. “Honoured” and “violated” refer to a contract Syntology drafted from the code itself; “our draft was wrong” and “fixture could not drive it” are failures of Syntology's instrument, not of the code.

Each sample ends with its code_sha256, Syntology's identity for that exact code. An agent fetches the stored sample with Syntology's MCP tool get_code(code_sha256="…") (how to connect); click an identity to copy that call.

Repository labels, per sample. official repository: The archive marks this repository official for the paper. named in the paper: The archive records that the paper mentions this repository; it is not marked official. community (archive-listed): In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper. found in paper text by Syntology: Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted. community: Not in the archive's code links for this paper; a community repository Syntology harvested. Samples from a repository marked official are listed first. Licence labels name the repository's licence as recorded at harvest. “Pointer only” means Syntology does not serve that copy's text, for one of four reasons: no licence file was found; the licence was not identified; the licence is recorded as permissive but that copy's record is not marked cleared; or the licence is outside the permissive list Syntology serves text under (MIT, Apache-2.0, BSD and similar). Some licences outside that list permit redistribution, such as WTFPL, and GPL-3.0 under its conditions; they are simply not on the list. Hover a licence label for the reason. File links open the file on GitHub at the default branch, which may have changed since the harvest.

compute_sTPE ourownstory/AR-Net/arnet/utils.py official repository unverified MIT (permissive) · 527c7a9c2c4390e8 · report
compute_stats_ar ourownstory/AR-Net/v0_1/utils.py official repository unverified MIT (permissive) · d2af38682f6a1872 · report
create_dataset ourownstory/AR-Net/v0_1/data_loader.py official repository unverified MIT (permissive) · 89aadc6713c1f998 · report
estimate_noise ourownstory/AR-Net/arnet/utils_data.py official repository unverified MIT (permissive) · c5efe350961d5eec · report
generate_armaprocess_data ourownstory/AR-Net/arnet/create_ar_data.py official repository unverified MIT (permissive) · dedbe9f211d8a475 · report
generate_armaprocess_data ourownstory/AR-Net/v0_1/data_loader.py official repository unverified MIT (permissive) · 0fc28d6ea3be0c4e · report
jsonize ourownstory/AR-Net/v0_1/utils.py official repository unverified MIT (permissive) · 991728b9f349a958 · report
list_of_dicts_2_dict_of_lists ourownstory/AR-Net/v0_1/utils.py official repository unverified MIT (permissive) · f0883fc3148edfe1 · report
load_config ourownstory/AR-Net/v0_1/example.py official repository unverified MIT (permissive) · e3506f6fa263adee · report
load_from_file ourownstory/AR-Net/arnet/create_ar_data.py official repository unverified MIT (permissive) · 1bec0033bd0ae665 · report
nice_print_list ourownstory/AR-Net/arnet/utils.py official repository unverified MIT (permissive) · 786d91b066124aab · report
pad_ar_params ourownstory/AR-Net/arnet/utils.py official repository unverified MIT (permissive) · d10ec2aad3023ee6 · report
sample ourownstory/AR-Net/v0_1/data_loader.py official repository unverified MIT (permissive) · 638404fea1331535 · report
save_to_file ourownstory/AR-Net/arnet/create_ar_data.py official repository unverified MIT (permissive) · 06ac13db47706965 · report
split_by_p_valid ourownstory/AR-Net/arnet/utils_data.py official repository unverified MIT (permissive) · a6349579c34e4496 · report
tabularize_univariate ourownstory/AR-Net/arnet/utils_data.py official repository unverified MIT (permissive) · b0ff57b3010828b6 · report
test_batch ourownstory/AR-Net/v0_1/training.py official repository unverified MIT (permissive) · 5c858795ca664e3c · report
train_batch ourownstory/AR-Net/v0_1/training.py official repository unverified MIT (permissive) · b90b111ca6a0d319 · report

Tasks

Time SeriesTime Series Analysis

Results from the paper archive 2025-07-28

No leaderboard rows for this paper in the archive.

Report a problem or propose a change · a person checks every report against the paper or source before anything changes; decisions are listed on /corrections