frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

Google's 200M-parameter time-series foundation model with 16k context

https://github.com/google-research/timesfm
71•codepawl•2h ago

Comments

Foobar8568•1h ago
Somehow I missed that one. Are there any competition on this?

I always had difficulties with ML and time series, I'll need to try that out.

rockwotj•1h ago
https://www.datadoghq.com/blog/datadog-time-series-foundatio...

https://moment-timeseries-foundation-model.github.io/

https://arxiv.org/abs/2403.07815

A friend at work used one to predict when our CEO would post in Slack, which is verry entertaining to see if correct.

EmilStenstrom•1h ago
Here is the link to the blogpost, that actually describe what this is: https://github.com/google-research/timesfm?tab=readme-ov-fil...
refulgentis•1h ago
That takes me to the same content as the submission, a GitHub repo (Chrome on iOS)
rockwotj•1h ago
Probably the better link: https://research.google/blog/a-decoder-only-foundation-model...
akshayshah•1h ago
And https://arxiv.org/pdf/2310.10688 if you want the full paper.
Cyuonut•1h ago
I suppose they tried to link this: https://research.google/blog/a-decoder-only-foundation-model...
nels•1h ago
I think you meant to link this page: https://research.google/blog/a-decoder-only-foundation-model...
OliverGuy•10m ago
Wish they gave some numbers for total GPU hours to train this model, seems comparatively tiny when compared to LLMs so interested to know how close this is to something trainable by your average hobbyist/university/small lab
EmilStenstrom•1h ago
I somehow find the concept of a general time series model strange. How can the same model predict egg prices in Italy, and global inflation in a reliable way?

And how would you even use this model, given that there are no explanations that help you trust where the prediction comes from…

teruakohatu•1h ago
What is not generally understood is that these models don’t predict egg prices or inflation in Italy.

They decompose a time series into trends, seasonality and residuals. That’s what they are actually modelling.

They cannot predict wars in the Middle East influencing inflation unless there is a seasonal pattern(s).

visarga•1h ago
ARIMA and ARMA models
d--b•1h ago
The main issue is that people do use them to predict bitcoin prices intraday and that sort of things.
nico•55m ago
Is it an issue because it works, or because it doesn’t? Or because it’s bitcoin?

I genuinely want to know. Thank you

cybrox•1h ago
Wars in the middle east seem to have increasingly regular patterns tied to stock market opening hours, unfortunately.
rubyn00bie•32m ago
I totally agree with the sentiment but from what I can tell, I’d say they tend happen immediately before or after markets open and close. Essentially, and to their maximum, screwing absolutely everyone who isn’t in the clique from participating in the trade.

FWIW— the only sure fire way to win the trade is to buy time and assume both gross incompetence and negligence when it comes action. The only caveat is if the markets tank enough, this administration will signal capitulation before hand, e.g. Trump mildly capitulating on tariffs last April after the markets proceed to relentlessly defecate themselves.

0-DTE options are typically, and for good reason, stupid gambles. But, right now they can’t even be considered gambling, because there’s zero chance of winning. Not just bad odds, but no odds. Again just signaling how truly malicious this admin is and its disdain for anyone and everyone not close to them.

jofzar•4m ago
I mean it's super obvious, it's directly tied to scrubs popularity.

New season of scrubs = new war in the middle east.

perks_12•1m ago
I am not familiar with time series models, but judging from your answer, it would be necessary to feed long time series into this model for it to detect trends. What is a token here? Can it, for the lack of a better example, take in all intraday movements of a stock for a day, a week, a month, etc?
benob•1h ago
I would say:

- decomposition: discover a more general form of Fourrier transform to untangle the underlying factors

- memorization: some patterns are recurrent in many domains such as power low

- multitask: exploit cross-domain connections such as weather vs electricity

lovelearning•1h ago
My understanding is that the synthetic training data helps capture abstract time-series patterns that are common in all domains.

As they say in appendix 8:

> We create the synthetic data to reflect common time-series patterns using traditional statistical models. We start with four simple times series patterns:

> • Piece-wise linear trends (I), where the number of the piece-wise linear components is randomly chosen between 2 and 8.

> • ARMA(p, q) (II), where 1 ≤ p, q ≤ 8 and the corresponding coefficients are generated from either a multivariate Gaussian or a uniform, then normalized.

> • Seasonal patterns. In particular we create the sine (III) and the cosine (IV) waves of different random periods between 4 and max context length / 2 time-points and time delays.

If there were no such underlying patterns in the class of all time-series data, then even the idea of traditional time-series models would be fundamentally misplaced.

And since this is a transformer model, it also looks for patterns in the problem-specific input data at inference time, just like how the input context to an LLM influences its output's relevance.

eru•33m ago
> How can the same model predict egg prices in Italy, and global inflation in a reliable way?

How can the same lossy compression algorithm (eg JPG) compress pictures of everything in a reliable way?

cenamus•31m ago
It can't compress pictures of everything in a reliable way.

Text and anything with lots of high frequency components looks terrible

at_compile_time•16m ago
Reliably terrible.
wiradikusuma•1h ago
Also: https://github.com/Nixtla/nixtla and https://facebook.github.io/prophet/
ra•58m ago
This has been around a few months now, has anyone built anything on it?
jdthedisciple•58m ago
Let me be blunt: Shannon would tell us that time forecasting is bullshit:

There is infinitely more entropy in the real world out there than any model can even remotely capture.

The world is not minecraft.

mikkom•46m ago
Yeah all weather forecasts are just magic
eru•33m ago
And JPG doesn't work either..
kgwgk•16m ago
Whether forecasting is simple: it either rains or it doesn’t. 50/50 probability!
tgv•11m ago
Weather forecasts are notoriously iffy, and accuracy drops with time, but we understand the physics behind it (to a large extent). There's also a lot of fine-grained data available. For some arbitrary time series, there's only one data sequence, and the model is unknown. Extrapolation then becomes a lot more magical.
dash2•57m ago
So the time series are provided with no context? It's just trained on lots of sets of numbers? Then you give it a new set of numbers and it guesses the rest, again with no context?

My guess as to how this would work: the machine will first guess from the data alone if this is one of the categories it has already seen/inferred (share prices, google trend cat searches etc.) Then it'll output a plausible completion for the category.

That doesn't seem as if it will work well for any categories outside the training data. I would rather just use either a simple model (ARIMA or whatever) or a theoretically-informed model. But what do I know.

Tarq0n•2m ago
If it works for predicting the next token in a very long stream of tokens, why not. The question is what architecture and training regimen it needs to generalize.
raghavMultilipi•14m ago
This has been around a few months now, has anyone built anything on it?
emsign•4m ago
Can this finally break the stock markets?

Axios compromised on NPM – Malicious versions drop remote access trojan

https://www.stepsecurity.io/blog/axios-compromised-on-npm-malicious-versions-drop-remote-access-t...
550•mtud•4h ago•169 comments

Ollama is now powered by MLX on Apple Silicon in preview

https://ollama.com/blog/mlx
167•redundantly•3h ago•63 comments

Artemis II is not safe to fly

https://idlewords.com/2026/03/artemis_ii_is_not_safe_to_fly.htm
224•idlewords•5h ago•136 comments

Google's 200M-parameter time-series foundation model with 16k context

https://github.com/google-research/timesfm
72•codepawl•2h ago•35 comments

Universal Claude.md – cut Claude output tokens

https://github.com/drona23/claude-token-efficient
257•killme2008•6h ago•95 comments

Fedware: Government apps that spy harder than the apps they ban

https://www.sambent.com/the-white-house-app-has-huawei-spyware-and-an-ice-tip-line/
535•speckx•13h ago•171 comments

RamAIn (YC W26) Is Hiring

https://www.ycombinator.com/companies/ramain/jobs/jezgwo5-ai-ml-research-engineer
1•svee•23m ago

Do your own writing

https://alexhwoods.com/dont-let-ai-write-for-you/
483•karimf•18h ago•179 comments

Clojure: The Documentary, official trailer [video]

https://www.youtube.com/watch?v=JJEyffSdBsk
148•fogus•4d ago•11 comments

GitHub backs down, kills Copilot pull-request ads after backlash

https://www.theregister.com/2026/03/30/github_copilot_ads_pull_requests/
95•_____k•2h ago•45 comments

Android Developer Verification

https://android-developers.googleblog.com/2026/03/android-developer-verification-rolling-out-to-a...
225•ingve•9h ago•218 comments

Turning a MacBook into a touchscreen with $1 of hardware (2018)

https://anishathalye.com/macbook-touchscreen/
289•HughParry•12h ago•134 comments

How to turn anything into a router

https://nbailey.ca/post/router/
656•yabones•17h ago•229 comments

Mr. Chatterbox is a Victorian-era ethically trained model

https://simonwillison.net/2026/Mar/30/mr-chatterbox/
30•y1n0•4h ago•14 comments

Incident March 30th, 2026 – Accidental CDN Caching

https://blog.railway.com/p/incident-report-march-30-2026-accidental-cdn-caching
46•cebert•5h ago•16 comments

Bird brains (2023)

https://www.dhanishsemar.com/writing/bird-brains
314•DiffTheEnder•18h ago•195 comments

One of the largest salt mines in the world exists under Lake Erie

https://apnews.com/article/cleveland-salt-mine-winter-road-0daf091e3d56f65766bcf6a597683893
11•1659447091•2d ago•6 comments

OpenGridWorks: The Electricity Infrasctructure, Mapped

https://www.opengridworks.com
95•jonbraun•10h ago•11 comments

Good CTE, Bad CTE

https://boringsql.com/posts/good-cte-bad-cte/
7•radimm•1d ago•0 comments

Sony halts memory card shipments due to NAND shortage

https://www.techzine.eu/news/devices/140058/sony-halts-memory-card-shipments-due-to-nand-shortage/
31•methuselah_in•2h ago•8 comments

Agents of Chaos

https://agentsofchaos.baulab.info/report.html
96•luu•3d ago•12 comments

Unit: A self-replicating Forth mesh agent running in a browser tab

https://davidcanhelp.github.io/unit/
27•DavidCanHelp•4d ago•1 comments

CodingFont: A game to help you pick a coding font

https://www.codingfont.com/
391•nvahalik•16h ago•197 comments

Rock Star: Reading the Rosetta Stone

https://www.historytoday.com/archive/feature/original-rock-star
9•samizdis•2d ago•0 comments

Cherri – programming language that compiles to an Apple Shortuct

https://github.com/electrikmilk/cherri
294•mihau•3d ago•58 comments

Oscar Reutersvärd (2021)

https://escherinhetpaleis.nl/en/about-escher/escher-today/oscar-reutersvard
19•layer8•1d ago•0 comments

Show HN: I turned a sketch into a 3D-print pegboard for my kid with an AI agent

https://github.com/virpo/pegboard
33•virpo•8h ago•6 comments

Researchers find 3,500-year-old loom that reveals textile revolution

https://web.ua.es/en/actualidad-universitaria/2026/marzo2026/23-31/ua-researchers-find-3-500-year...
103•geox•3d ago•12 comments

Vulnerability research is cooked

https://sockpuppet.org/blog/2026/03/30/vulnerability-research-is-cooked/
158•pedro84•12h ago•108 comments

Safeguarding cryptocurrency by disclosing quantum vulnerabilities responsibly

https://research.google/blog/safeguarding-cryptocurrency-by-disclosing-quantum-vulnerabilities-re...
43•madars•3h ago•8 comments