Ecosyste.ms: Timeline
Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.
Deathn0t created a comment on a pull request on deephyper/deephyper
@wigging apparently - adding the token as secret resolved the upload. - using `pip install -e .` resolved the empty report (so that both pytest and coverage point to the same files). https://a...
Deathn0t pushed 1 commit to cleanup-tests deephyper/deephyper
- making pip install with -e ditable flag in tests 7b2daf5
Deathn0t pushed 1 commit to cleanup-tests deephyper/deephyper
- adding CODECOV_TOKEN to github action checks 8556dbd
Deathn0t created a review comment on a pull request on deephyper/deephyper
@wigging is there a reason to remove the condition that uploads the coverage for a single Python version? ``` - name: Upload coverage report if: ${{ matrix.python-version == 3.12...
Deathn0t created a comment on an issue on deephyper/deephyper
We will need to update the follow documentation for tests to match our updates: https://github.com/deephyper/deephyper/blob/develop/tests/README.rst
Deathn0t pushed 23 commits to master deephyper/deephyper
- filtering ResourceWarning when Ray is started by evaluator d976f65
- adding test for SearchEarlyStopping, adding use of hypervolume for multi-objective optimization with SearchEarlyStopping 36b8cda
- adding test of tqdm callback, now using hvi for multi-objective case a7019b6
- removing unused evaluator callback ProfilingCallback cd50763
- adding test for logger callback ff41c22
- removing unused import d5277b3
- using tmp variable for f-string 6eef408
- adding test for decorator for memory limit, working for sync and async functions 7ede024
- making a special test marker for memory profiling 65f1a44
- adding documentation for the output of the search 35cb27e
- adding tests for mixed normal aggregator 60fea8f
- fix E501 b8aec56
- adding tests for ensemble predictor 162d589
- adding tests cbo.fit_surrogate and making it work with failures 82e678c
- removing unused legacy research code 475d7a8
- adding test for decentralized search fb85a50
- the run function can now return a Job/HPOJob to adapt to the producer/consumer model bfb47b9
- removing plot from test 684a290
- fix in cbo where multi_point_strategy argument was not forwarded to ask f7f2438
- fix in search where time_left was queried twice b2872d3
- and 3 more ...
Deathn0t pushed 5 commits to develop deephyper/deephyper
- fix in cbo where multi_point_strategy argument was not forwarded to ask f7f2438
- fix in search where time_left was queried twice b2872d3
- updating kwargs in plot_search_trajectory_single_objective_hpo 3c807dc
- updating example for better demonstration of parallelism gain 2b5d5db
- updated example sequential versus parallel hyperparameter optimization fe8eace
Deathn0t created a comment on a pull request on deephyper/deephyper
Hi @wigging the changes look good to me. Is it still a "draft" PR or can we merge?
Deathn0t pushed 2 commits to cleanup-tests deephyper/deephyper
Deathn0t pushed 1 commit to cleanup-tests deephyper/deephyper
- collecting tests only in `tests/` folder for pytest 94d0e23
Deathn0t pushed 1 commit to cleanup-tests deephyper/deephyper
- update tests step in github workflow to use --run-marks-subset fd7abae
Deathn0t pushed 1 commit to develop deephyper/deephyper
- the run function can now return a Job/HPOJob to adapt to the producer/consumer model bfb47b9
Deathn0t pushed 1 commit to develop deephyper/deephyper
- adding test for decentralized search fb85a50
Deathn0t created a comment on an issue on deephyper/deephyper
The issue was resolved by now providing a new `SharedStorage` for `"process"` evaluator. See https://github.com/deephyper/deephyper/blob/develop/src/deephyper/evaluator/_process_pool.py#L41
Deathn0t closed an issue on deephyper/deephyper
[BUG] Adding warning or exception when Evaluator and Storage types are incompatible
**Describe the bug** Following the [documentation](https://deephyper.readthedocs.io/en/latest/_autosummary/deephyper.stopper.html), I use the following expression in my training loop: `deephyper_...Deathn0t created a comment on an issue on deephyper/deephyper
Resolved in 82e678cbedba6d164d78900185fc94bcb6ad727c
Deathn0t closed an issue on deephyper/deephyper
[BUG] Failures not filtered from data frame when calling fit_surrogate
**Describe the bug** Failures should be filtered otherwise the call fails. The same idea can be followed as done in `fit_generative_model`: ```pyton # check single or multiple objectives ...Deathn0t closed a pull request on deephyper/deephyper
Fix: fit_surrogate CSV handling issues in DeepHyper
This pull request addresses issues described in bug #186 related to the `fit_surrogate` method in DeepHyper. The specific issues addressed include: 1. Categorical hyperparameters, represented as...Deathn0t closed an issue on deephyper/deephyper
[BUG] Inaccurate Reading of CSV Files by fit_surrogate in Certain Conditions
**Describe the bug** The fit_surrogate method in DeepHyper isn't handling CSV files appropriately under certain conditions. Specifically, the following issues were encountered: 1. Categorical...Deathn0t created a comment on an issue on deephyper/deephyper
resolved in 82e678cbedba6d164d78900185fc94bcb6ad727c
Deathn0t closed an issue on deephyper/deephyper
[FEATURE] Checkpoint/Restart with fit_surrogate for MOO
Checkpointing/Restart with `fit_surrogate` should work similarly to single-objective optimization.Deathn0t created a comment on an issue on deephyper/deephyper
Resolved in 82e678cbedba6d164d78900185fc94bcb6ad727c
Deathn0t closed an issue on deephyper/deephyper
[BUG] fit_surrogate does not handle objective values with failures "F"
**Describe the bug** The `CBO.fit_surrogate` method does not treat failed objectives "F" but it should!Deathn0t pushed 1 commit to develop deephyper/deephyper
- adding tests cbo.fit_surrogate and making it work with failures 82e678c