ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

(1/2) Google released a new foundation model for time series forecasting 🚀

The TimeFM (Time Series Foundation Model) is a foundation model for time series forecasting applications. This pre-trained model was developed by the Google Research team. It joins the recent trend of leveraging foundation models for time series forecasting, which includes Salesforce's Moirai and Amazon's Chronos.

image/png

ramikrispin, to machinelearning
@ramikrispin@mstdn.social avatar

(1/2) New release for skforecast 🎉

Version 0.12.0 of the skforecast Python library for time series forecasting with regression models was released this week. The release includes new features, updates for existing ones, and bug fixes. 🧵👇🏼

image/png
image/png

ramikrispin, to python
@ramikrispin@mstdn.social avatar

(1/3) New Release to NeuralForecast 🚀

Version 1.7.1 of the NeuralForecast library was released last month by Nixtla. The NeuralForecast library, as the name implies, provides a neural network framework for time series forecasting. 🧵👇🏼

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

Forecasting Time Series with Gradient Boosting ❤️

The skforecast Python 🐍 library provides ML applications for time series forecasting using different regression models from the scikit-learn library. Here is a tutorial by Joaquín Amat Rodrigo and Javier Escobar Ortiz for time series forecasting with the skforecast using XGBoost, LightGBM, Scikit-learn, and CatBoost models 🚀.

📖🔗: https://cienciadedatos.net/documentos/py39-forecasting-time-series-with-skforecast-xgboost-lightgbm-catboost

image/png
image/png

ramikrispin, to python
@ramikrispin@mstdn.social avatar

Introduction to forecasting with ARIMA and seasonal ARIMA with Python 🚀👇🏼

This short tutorial by Joaquín Amat Rodrigo and Javier Escobar Ortiz provides an introduction to forecasting with ARIMA models using Python 🐍. This includes using different flavors of ARIMA methods from the statsmodels, pmdarima, skforecast, and statsForecast libraries.

📖🔗: https://cienciadedatos.net/documentos/py51-arima-sarimax-models-python.html

image/png
image/png

ramikrispin, to python
@ramikrispin@mstdn.social avatar

(1/2) Moirai - Salesforce's Foundation Forecasting Model 🚀

Salesforce recently released Moirari - a new #Python 🐍 library with a foundation model for time series forecasting applications. According to the release blog - the model comes with universal forecasting capabilities and can handle multiple scenarios and different frequencies.

#data #DataScience #llm #timeseries #forecasting #machinelearning #deeplearning

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

(1/4) Chronos - Amazon LLM for Forecasting 🚀👇🏼

Yesterday, Amazon released a new open-source project, Chronos - a family of pre-trained time series forecasting models based on language model architectures.

🧶🧵👇🏼

Image credit: Blog post

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

(1/2) Applied Time Series Analysis Course ❤️

If you are looking to learn the foundation of time series analysis and forecasting, I recommend checking the Applied Time Series Analysis course from the University of Washington. The course by Prof Eli Holmes, Prof. Eric Ward, and Prof. Mark Scheuerell focuses on the foundation of time series analysis with applications for environmental science.

ramikrispin,
@ramikrispin@mstdn.social avatar

(2/2) The course covers the following topics:
✅ Time series decomposition
✅ Covariance and correlation
✅ Autoregressive (AR) models
✅ Moving average (MA) models
✅ Forecasting with ARIMA models
✅ Univariate state-space models
✅ Dynamic linear models
✅ Hidden Markov models

The course code examples are in R.

Lectures 📽️: https://www.youtube.com/playlist?list=PLA5yNsxyt7sC3B4qhj_sMgGWqWWaSerq-
Course info 📖: https://atsa-es.github.io/atsa/lectures.html

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

(1/2) Microsoft Forecasting Framework for Finance Time Series 🚀

The finnts is an R package from Microsoft for automated forecasting for financial forecast. This includes the following features:
✅ Automated feature engineering and feature selection
✅ Training models with backtesting, scoring, and ranking
✅ Supports more than 25 models for univariate and multivariate time series
✅ Supports daily, weekly, monthly, quarterly, and yearly frequency

ramikrispin, (edited )
@ramikrispin@mstdn.social avatar

Installation: install.packages("finnts")

(2/2) License 🪪: MIT 🦄

Code 🔗: https://github.com/microsoft/finnts/
Documentation 📖: https://microsoft.github.io/finnts/

Thanks to the authors - Mike Tokic and Aadharsh Kannan! 🙏🏼

nrennie, to random
@nrennie@fosstodon.org avatar

Thanks to Forecasting for Social Good for inviting me to deliver a workshop on "Forecasting with Generalised Additive Models (GAMs) in R" today! We talked about:

❓ What are GAMs?
❓ How do we fit GAMs in R?
❓ Model evaluation and forecasting
❓ When GAMs go wrong!

Slides: https://nrennie.github.io/f4sg-gams

GitHub: https://github.com/nrennie/f4sg-gams

Posit Cloud: https://posit.cloud/content/7637971

nrennie,
@nrennie@fosstodon.org avatar

And a blog post answering some of the questions that we ran out of time for!

https://nrennie.rbind.io/blog/forecasting-gams-r-questions/

ramikrispin, to python
@ramikrispin@mstdn.social avatar

(1/3)Modeling Short Time Series with Prior Knowledge in PyMC 🚀

Yesterday, I shared an article by Tim Radtke about forecasting insufficient time series data with a Bayesian approach using R. Here is the Python version 🧵👇🏼

ramikrispin,
@ramikrispin@mstdn.social avatar

(2/3) The TLDR is when you need to model a short time series (less than one seasonal cycle) and have some knowledge or assumption about the expected behavior of the series - either from a similar series (i.e., similar products or geos) you can translate those assumptions to the model's prior distributions and use it to build a forecasting model.

ramikrispin,
@ramikrispin@mstdn.social avatar

(3/3) Here is the Python version of this approach by Juan Camilo Orduz using Python 🐍 with PyMC:
https://juanitorduz.github.io/short_time_series_pymc/

ramikrispin, to datascience
@ramikrispin@mstdn.social avatar

(1/2) Modeling Short Time Series with Prior Knowledge

When modeling time series data, you may find yourself with insufficient data. Insufficient data in time series would typically be defined as less than one seasonal cycle. This would challenge us to understand whether some events are driven by seasonality or other reasons, such as one-time events, outliers, etc.

ramikrispin,
@ramikrispin@mstdn.social avatar

(2/2) If you have some prior knowledge about the series (e.g., learning from similar products or goes, etc.), you should consider using the Bayesian approach.

The article below by Tim Radtke provides an example of how to incorporate prior assumptions into a time series forecasting model when having insufficient data.

https://minimizeregret.com/short-time-series-prior-knowledge

JoshuaHolland, to Weather
@JoshuaHolland@mastodon.social avatar

Weird day. We were expected to get 6-10 inches of snow starting at 2 am and lasting through this afternoon. Schools closed. City declared a snow emergency. But it just started snowing at 8:30 and it looks like it'll only be a dusting.

Hudson Valley : “This is one of the more severe changes [to a forecast] we’ve seen in recent memory. For the data to be unanimous in the result… and then to all begin shifting dramatically SE in about 12 to 18 hours, is a rare event.”

spaceflight, to worldwithoutus
@spaceflight@spacey.space avatar

The ☢️ reached in just over eight minutes and ionized the upper layer of Earth's atmosphere — the — triggering shortwave blackouts on the sun-lit portion of Earth at the time including , and the . https://www.space.com/first-x-class-solar-flare-of-2024-seen-erupting-from-sun-video

spaceflight,
@spaceflight@spacey.space avatar

📆 20 February 2024 can create significant disruption to human technology both in 🌌 and on 🌍, including loss of 🛰️, damage to ⚡ grids and 📶 blackouts. The majority of severe storms at Earth are driven by coronal mass ejections. The current 🔮 models have large uncertainties in arrival time ⌚, and struggle to predict the of the event. https://agupubs.onlinelibrary.wiley.com/doi/full/10.1029/2023SW003628

nrennie, to random
@nrennie@fosstodon.org avatar

Join me on February 21st for a Forecasting for Social Good (F4SG) workshop about forecasting using GAMs in R! 📈

Register here: https://cardiff.zoom.us/meeting/register/tZEqduGsqjwqGNWoG7FSA6U51ohnswp74Ww-#/registration

ramikrispin, to machinelearning
@ramikrispin@mstdn.social avatar

(1/3) My talk from the Øredev 2023 conference about forecasting at scale is now available 👇🏼

📽️: https://www.youtube.com/watch?v=pUvVfO0_Kmc

ramikrispin,
@ramikrispin@mstdn.social avatar

(2/3) The talk focuses on methods to identify patterns in time series using cluster analysis inspired by Prof Rob Hyndman's paper about Feature-based time series analysis 👇🏼
Seminar 🔗: https://robjhyndman.com/seminars/fbtsa-ssc/

ramikrispin,
@ramikrispin@mstdn.social avatar

(3/3) Resources 📚
Slides: https://github.com/RamiKrispin/talks/tree/main/oredev%202023-%20Forecasting%20at%20Scale
Code (⚠️not documented yet⚠️): https://github.com/RamiKrispin/forecasting-at-scale

Thank you to the conference organizers for the invite! 🙏🏼

ai6yr, (edited ) to LosAngeles

Radar at 12/21 1804 currently shows the storm is parked offshore from Los Angeles (dumping quite a bit there). Still raining in Oxnard.

ai6yr,

So, the ghost in the HRRR machine puts totals near Santa Barbara (on 12/22/23 at 9am) at less than an Inch. But at 12/22/23 at 10am then says it thinks total accumulation will be 5 inches. It's likely a glitch (the HRRR accumulation algorithm), but I do wonder what's going to be correct.

image/png

  • All
  • Subscribed
  • Moderated
  • Favorites
  • normalnudes
  • tsrsr
  • DreamBathrooms
  • thenastyranch
  • magazineikmin
  • hgfsjryuu7
  • Youngstown
  • InstantRegret
  • slotface
  • khanakhh
  • rosin
  • ngwrru68w68
  • kavyap
  • PowerRangers
  • Leos
  • tacticalgear
  • cisconetworking
  • everett
  • vwfavf
  • GTA5RPClips
  • osvaldo12
  • Durango
  • mdbf
  • modclub
  • tester
  • cubers
  • ethstaker
  • anitta
  • All magazines