HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hrzn

no profile record

Submissions

Isomorphic Labs, the secretive AI startup spun off from Google DeepMind

cnbc.com
3 points·by hrzn·작년·0 comments

Isomorphic Labs, Google's A.I. Drug Business, Raises $600M

nytimes.com
1 points·by hrzn·작년·0 comments

Nano Prot GPT: Nano GPT on Protein Sequences

github.com
1 points·by hrzn·3년 전·0 comments

Darts: User-Friendly Modern Machine Learning for Time Series

jmlr.org
1 points·by hrzn·4년 전·0 comments

comments

hrzn
·2년 전·discuss
A few years back I made a modest attempt at writing a concise yet readable sudoku solver in Python - in about 29 lines: https://github.com/hrzn/sudoku/blob/master/sudoku.py

Could have been made shorter at the price of readability.
hrzn
·2년 전·discuss
We likely overestimate AI's short-term impact, and there might even be a financial bubble about to pop. But I also think we underestimate the long-term impact. We're building absolutely amazing capabilities faster than many would have thought possible only a few years ago - I especially think applications to science and engineering will be huge and transformative.
hrzn
·4년 전·discuss
> Python had nothing comparable

This is in part why we built Darts. Now I think we can say the situation is quite different. Darts offers many things offered by the R forecast package, and then some (for instance the ability to train ML models on large datasets made of multiple potentially high-dimensional series).
hrzn
·4년 전·discuss
I would recommend Darts in Python [1]. It's easy to use (think fit()/predict()) and includes

* Statistical models (ETS, (V)ARIMA(X), etc)

* ML models (sklearn models, LGBM, etc)

* Many recent deep learning models (N-BEATS, TFT, etc)

* Seamlessly works on multi-dimensional series

* Models can be trained on multiple series

* Several models support taking in external data (covariates), known either in the past only, or also in the future

* Many models offer rich support for probabilistic forecasts

* Model evaluation is easy: Darts has many metrics, offers backtest etc

* Deep learning scales to large datasets, using GPUs, TPUs, etc

* You can do reconciliation of forecasts at different hierarchical levels

* There's even now an explainability module for some of the models - showing you what matters for computing the forecasts

* (coming soon): an anomaly detection module :)

* (also, it even include FB Prophet if you really want to use it)

Warning: I'm probably biased because I'm Darts creator.

[1] https://github.com/unit8co/darts