Daniel L.
Daniel L.
If you want to use it in tensorflow 2, I suggest changing in_channels = inputs.shape[-1].value to in_channels = inputs.shape.as_list()[-1] https://github.com/tensorflow/tensorflow/pull/28461
> ``` > diff --git a/optuna/integration/_lightgbm_tuner/optimize.py b/optuna/integration/_lightgbm_tuner/optimize.py > index 7466f3055..1c263f794 100644 > --- a/optuna/integration/_lightgbm_tuner/optimize.py > +++ b/optuna/integration/_lightgbm_tuner/optimize.py > @@ -307,7 +307,7 @@ class _OptunaObjectiveCV(_OptunaObjective): > def _get_cv_scores(self, cv_results: Dict[str, List[float]])...
Aeon-Assign bot assign @Datadote
Yep, I don't have access to manually assign myself (Tried on other issues). I started a draft pull request with type hints, and some styling questions in #1926 . Thank...
Are multiple people allowed on this? I was looking into it already, and didn't know about the aeon-assign bot. If preferred not, that's fine.
> Hey @Datadote, it is considered good practice to assign yourself the issue or use the bot to avoid people working on the same stuff. If you want I could...
I agree with Matthew's comment, and updated all "Union[int, float]" to "float". Sorry to hadifawaz1999 and chrisholder, I wasn't trying to add you all as reviewers. My guess is updating...
I've implemented "Simple Moving Average" in PR #1927 . It is waiting for a review Now, I'm starting on "Exponential Smoothing", and will add a draft PR.