Skip to content

Commit

Permalink
Updated CHANGELOG (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrapin authored Apr 11, 2019
1 parent 87d326a commit 0512595
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,29 @@

## master

- updated `bayesion-optimization` version to 1.0.1.
- removed `BaseFunction` in favor of `InstrumentedFunction` and use instrumentation instead of
defining specific transforms (breaking change for benchmark function implementation).
N/A

## v0.2.0

### Breaking changes

- first parameter of optimizers is now `instrumentation` instead of `dimension`. This allows the optimizer
to have information on the underlying structure. `int`s are still allowed as before and will set the instrumentation
to the `Instrumentation(var.Array(n))` (which is basically the identity).
- removed `BaseFunction` in favor of `InstrumentedFunction` and use instrumentation instead of
defining specific transforms (breaking change for benchmark function implementation).
- `ask()` and `provide_recommendation()` now return a `Candidate` with attributes `args`, `kwargs` (depending on the instrumentation)
and `data` (the array which was formerly returned). `tell` must now receive this candidate as well instead of
the array.
- removed `tell_not_asked` in favor of `tell`. A new `num_tell_not_asked` attribute is added to check the number of `tell` calls with non-asked points.

### Other changes

- updated `bayesion-optimization` version to 1.0.1.
- from now on, optimizers should preferably implement `_internal_ask_candidate` and `_internal_tell_candidate` instead of `_internal_ask`
and `_internal_tell`. This should take at most one more line: `x = candidate.data`.
- added an `_asked` private attribute to register uuid of particuels that were asked for.
- removed `tell_not_asked` in favor of `tell`. A new `num_tell_not_asked` attribute is added to check the number of `tell` calls with non-asked points.
- solved `ArtificialFunction` delay bug.

## v0.1.6

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def _replace_relative_links(regex: Match[str]) -> str:
name = regex.group("name")
if not link.startswith("http") and Path(link).exists():
string = f"[{name}](https://github.com/facebookresearch/nevergrad/blob/master/{link})"
print(string)
return string


Expand Down

0 comments on commit 0512595

Please sign in to comment.