• bitcoinBitcoin(BTC)$87,291.007.63%
  • ethereumEthereum(ETH)$2,802.816.45%
  • tetherTether(USDT)$1.000.01%
  • binancecoinBNB(BNB)$805.785.05%
  • rippleXRP(XRP)$1.528.07%
  • usd-coinUSDC(USDC)$1.000.02%
  • solanaSolana(SOL)$119.188.03%
  • tronTRON(TRX)$0.3444280.43%
  • zcashZcash(ZEC)$1,479.77-3.09%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.010.00%
  • HyperliquidHyperliquid(HYPE)$93.751.01%
  • dogecoinDogecoin(DOGE)$0.10009114.46%
  • moneroMonero(XMR)$587.674.92%
  • whitebitWhiteBIT Coin(WBT)$87.826.14%
  • RainRain(RAIN)$0.014043-0.41%
  • chainlinkChainlink(LINK)$13.265.94%
  • USDSUSDS(USDS)$1.000.00%
  • cardanoCardano(ADA)$0.2469188.48%
  • leo-tokenLEO Token(LEO)$8.93-0.11%
  • stellarStellar(XLM)$0.2142719.37%
  • uniswapUniswap(UNI)$8.871.56%
  • bitcoin-cashBitcoin Cash(BCH)$268.356.74%
  • nearNEAR Protocol(NEAR)$4.12-1.13%
  • Ethena USDeEthena USDe(USDE)$1.000.00%
  • avalanche-2Avalanche(AVAX)$11.06-2.03%
  • litecoinLitecoin(LTC)$62.776.76%
  • CantonCanton(CC)$0.1179328.95%
  • daiDai(DAI)$1.000.02%
  • USD1USD1(USD1)$1.000.00%
  • suiSui(SUI)$1.0316.27%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.465.99%
  • hedera-hashgraphHedera(HBAR)$0.0921757.51%
  • BittensorBittensor(TAO)$313.9918.77%
  • shiba-inuShiba Inu(SHIB)$0.0000069.02%
  • MemeCoreMemeCore(M)$1.491.68%
  • crypto-com-chainCronos(CRO)$0.06562511.07%
  • Global DollarGlobal Dollar(USDG)$1.000.01%
  • paypal-usdPayPal USD(PYUSD)$1.000.01%
  • tether-goldTether Gold(XAUT)$4,344.33-0.63%
  • BitwayBitway(BTW)$0.9727.57%
  • okbOKB(OKB)$123.874.85%
  • Circle USYCCircle USYC(USYC)$1.140.01%
  • Ripple USDRipple USD(RLUSD)$1.000.01%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • aaveAave(AAVE)$148.027.93%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.140.02%
  • OndoOndo(ONDO)$0.4507364.57%
  • EthenaEthena(ENA)$0.213993-1.77%
  • mantleMantle(MNT)$0.657.14%
  • pepePepe(PEPE)$0.00000523.69%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Google AI Research Introduce a Novel Machine Learning Approach that Transforms TimesFM into a Few-Shot Learner

September 24, 2025
in AI & Technology
Reading Time: 5 mins read
A A
Google AI Research Introduce a Novel Machine Learning Approach that Transforms TimesFM into a Few-Shot Learner
ShareShareShareShareShare

Table of contents

  • What pain point in forecasting is being eliminated?
  • How does in-context fine-tuning work under the hood?
  • What exactly is “few-shot” here?
  • Does it actually match supervised fine-tuning?
  • How is this different from Chronos-style approaches?
  • What are the architectural specifics to watch?
  • Summary
  • FAQs

Google Research introduces in-context fine-tuning (ICF) for time-series forecasting named as ‘TimesFM-ICF): a continued-pretraining recipe that teaches TimesFM to exploit multiple related series provided directly in the prompt at inference time. The result is a few-shot forecaster that matches supervised fine-tuning while delivering +6.8% accuracy over the base TimesFM across an OOD benchmark—no per-dataset training loop required.

What pain point in forecasting is being eliminated?

Most production workflows still trade off between (a) one model per dataset via supervised fine-tuning (accuracy, but heavy MLOps) and (b) zero-shot foundation models (simple, but not domain-adapted). Google’s new approach keeps a single pre-trained TimesFM checkpoint but lets it adapt on the fly using a handful of in-context examples from related series during inference, avoiding per-tenant training pipelines.

YOU MAY ALSO LIKE

Here’s Why Apple’s Mac Studio Has Become So Expensive

Tesla Will Soon Roll Out FSD Supervised In The Czech Republic

How does in-context fine-tuning work under the hood?

Start with TimesFM—a patched, decoder-only transformer that tokenizes 32-point input patches and de-tokenizes 128-point outputs via a shared MLP—and continue pre-training it on sequences that interleave the target history with multiple “support” series. Now the key change introduced is a learnable common separator token, so cross-example causal attention can mine structure across examples without conflating trends. The training objective remains next-token prediction; what’s new is the context construction that teaches the model to reason across multiple related series at inference time.

https://research.google/blog/time-series-foundation-models-can-be-few-shot-learners/

What exactly is “few-shot” here?

At inference, the user concatenates the target history with kk additional time-series snippets (e.g., similar SKUs, adjacent sensors), each delimited by the separator token. The model’s attention layers are now explicitly trained to leverage those in-context examples, analogous to LLM few-shot prompting—but for numeric sequences rather than text tokens. This shifts adaptation from parameter updates to prompt engineering over structured series.

Does it actually match supervised fine-tuning?

On a 23-dataset out-of-domain suite, TimesFM-ICF equals the performance of per-dataset TimesFM-FT while being 6.8% more accurate than TimesFM-Base (geometric mean of scaled MASE). The blog also shows the expected accuracy–latency trade-off: more in-context examples yield better forecasts at the cost of longer inference. A “just make the context longer” ablation indicates that structured in-context examples beat naive long-context alone.

How is this different from Chronos-style approaches?

Chronos tokenizes values into a discrete vocabulary and demonstrated strong zero-shot accuracy and fast variants (e.g., Chronos-Bolt). Google’s contribution here is not another tokenizer or headroom on zero-shot; it’s making a time-series FM behave like an LLM few-shot learner—learning from cross-series context at inference. That capability closes the gap between “train-time adaptation” and “prompt-time adaptation” for numeric forecasting.

What are the architectural specifics to watch?

The research team highlights: (1) separator tokens to mark boundaries, (2) causal self-attention over mixed histories and examples, (3) persisted patching and shared MLP heads, and (4) continued pre-training to instill cross-example behavior. Collectively, these enable the model to treat support series as informative exemplars rather than background noise.

Summary

Google’s in-context fine-tuning turns TimesFM into a practical few-shot forecaster: a single pretrained checkpoint that adapts at inference via curated support series, delivering fine-tuning-level accuracy without per-dataset training overhead—useful for multi-tenant, latency-bounded deployments where selection of support sets becomes the main control surface


FAQs

1) What is Google’s “in-context fine-tuning” (ICF) for time series?
ICF is continued pre-training that conditions TimesFM to use multiple related series placed in the prompt at inference, enabling few-shot adaptation without per-dataset gradient updates.

2) How does ICF differ from standard fine-tuning and zero-shot use?
Standard fine-tuning updates weights per dataset; zero-shot uses a fixed model with only the target history. ICF keeps weights fixed at deployment but learns during pre-training how to leverage extra in-context examples, matching per-dataset fine-tuning on reported benchmarks.

3) What architectural or training changes were introduced?
TimesFM is continued-pretrained with sequences that interleave target history and support series, separated by special boundary tokens so causal attention can exploit cross-series structure; the rest of the decoder-only TimesFM stack stays intact.

4) What do the results show relative to baselines?
On out-of-domain suites, ICF improves over TimesFM base and reaches parity with supervised fine-tuning; it is evaluated against strong TS baselines (e.g., PatchTST) and prior FMs (e.g., Chronos).


Check out the Paper and Technical details. Feel free to check out our GitHub Page for Tutorials, Codes and Notebooks. Also, feel free to follow us on Twitter and don’t forget to join our 100k+ ML SubReddit and Subscribe to our Newsletter.

For content partnership/promotions on marktechpost.com, please TALK to us

The post Google AI Research Introduce a Novel Machine Learning Approach that Transforms TimesFM into a Few-Shot Learner appeared first on MarkTechPost.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Here’s Why Apple’s Mac Studio Has Become So Expensive
AI & Technology

Here’s Why Apple’s Mac Studio Has Become So Expensive

September 21, 2026
Tesla Will Soon Roll Out FSD Supervised In The Czech Republic
AI & Technology

Tesla Will Soon Roll Out FSD Supervised In The Czech Republic

September 21, 2026
Alibaba Qwen Releases Qwen-Image-2.1: A 7B Open-Weight Model for Image Generation and Editing
AI & Technology

Alibaba Qwen Releases Qwen-Image-2.1: A 7B Open-Weight Model for Image Generation and Editing

September 21, 2026
Collaboration Must Sit At the Heart of Manufacturing’s Multi-Agentic AI Approach. Here’s How. – Unite.AI
AI & Technology

Collaboration Must Sit At the Heart of Manufacturing’s Multi-Agentic AI Approach. Here’s How. – Unite.AI

September 21, 2026
Next Post
New video statement from au pair connected to double-murder case

New video statement from au pair connected to double-murder case

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
LIVE: Steve Kornacki analyzes New Hampshire primary election results | Kornacki Cam | NBC News

LIVE: Steve Kornacki analyzes New Hampshire primary election results | Kornacki Cam | NBC News

September 15, 2026
Lindsay Clancy’s defense attorney blames single juror for deadlock

Lindsay Clancy’s defense attorney blames single juror for deadlock

September 18, 2026
Wall St set to open higher as easing oil prices boost Fed hike relief – reuters.com

Wall St set to open higher as easing oil prices boost Fed hike relief – reuters.com

September 17, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!