-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Batch vs single #150
WIP: Batch vs single #150
Changes from 7 commits
05d65e0
24ce31d
fea0352
5cf57ac
964008d
6cef690
1d9c8c1
b58cc30
b627001
52f28d1
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,7 @@ | |
], | ||
"source": [ | ||
"def score(coordinates, verbose = True):\n", | ||
" \"\"\" Modified Branin-Hoo function. It has three minima with f(x*) = 0.397887 \n", | ||
" \"\"\" Modified Branin-Hoo function. It has three local minima.\n", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have simplified the score function from the standard Branin-Hoo, so it doesn't have as nice analytical properties anymore. We don't need the optima to have exactly identical scores, so I value the simplicity of the function higher. |
||
" More details: <http://www.sfu.ca/~ssurjano/branin.html>\n", | ||
" \"\"\"\n", | ||
" x = 10-coordinates[0]\n", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think explore vs. exploit is the natural next place to go, since we have just talked about strategies.