Samuele Fiorini

Results 14 comments of Samuele Fiorini

Hi, I am experiencing the same issue. Any news on that?

Thanks @mechealww2, which implementation of yolov2 are you using?

@Kuifje02 ops, I'm sorry. I noticed the following error `FileNotFoundError: [Errno 2] No such file or directory: 'README.rst'` when I tried to install the library directly from GitHub with `$...

Hello, I am experiencing the same issue, but I don't have any `WindowSummarizer`.

Thanks, I did some experiments ([here](https://github.com/samuelefiorini/greykite)) and I've been able to make it run (it's far from being a PR though). In my case (hourly forecast with 2+ years of...

This is related to #73. Long story short, the Silverkite template is tricky to serialize, due to the internal use of `patsy`. On the other hand, Prophet is pickable. To...

Hi, any update on this feature? I tried the solution proposed in #44 but, I couldn't figure out a way to include external regressors as well.

The `KeyError` above is raised only at the **first** prediction attempt. See for instance the following snippet for an ugly workaround. ```python import warnings import pandas as pd from greykite.framework.benchmark.data_loader_ts...

In order to reproduce the error above, see the following minimal script. ```python import warnings warnings.filterwarnings('ignore') import numpy as np import pandas as pd from greykite.common.data_loader import DataLoader from greykite.framework.templates.autogen.forecast_config...

I have discovered a solution to address the issue. With the help of @andreaschiappacasse and his insightful intuition, we have successfully implemented a slightly modified version of the model dump...