Freddy Boulton
Freddy Boulton
Hello, The paper mentions the lidar being a 200x200x2 matrix:  However, the `overhead_features` in the public dataset is a matrix of shape 200x200x4. How do I compute the 2-bin...
POC for adding a non-stan backend to Prophet, based on [numpyro](https://github.com/pyro-ppl/numpyro). The benefits of using a non-stan backend are that users can avoid installing pystan2 and introducing a GNU-licensed dependency...
Repro ```python import prophet import pandas as pd import pytest df = pd.read_csv("/Users/freddy.boulton/Downloads/frequency_A.csv") df = df.rename(columns={"Date": 'ds', 'Target': 'y'}) df['ds'] = pd.to_datetime(df['ds']).dt.tz_localize(None) regressor = prophet.Prophet() df_train, df_test = df.iloc[:240], df.iloc[240:]...
# Description Fixes #1934 Once a new version is uploaded to pypi, we'll automatically upload the kitchen sink to the [gradio-test-deploys-organization](https://huggingface.co/gradio-test-deploys) Eventually I want to do this on every PR...
### Describe the bug When running an app with a `TimeSeries` example, the time series data is not displayed in the examples dataset and when you click on the example,...
### Describe the bug If you have a live interface, the predict function sometimes is not run for every update of the component - especially if the predict function has...
In the discussion of #1892, @FarukOzderim and @pngwn think it would be a good idea to augment one of our guides with a matrix that shows the valid component/event combinations....
Right now we determine which classes to document and which demos to run in two separate places. With `generate_documentation` we collect all classes tagged with `@document` and in `map_demos` we...
As a gradio user, I wish the types used in the `preprocessing`, `postprocessing` and `examples` sections of the docstrings were rendered differently than the surrounding text to make them stand...
- [x] I have searched to see if a similar issue already exists. **Is your feature request related to a problem? Please describe.** As a gradio user, I wish the...