Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
adaptive
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Quantum Tinkerer
adaptive
Commits
fdc31b7b
Commit
fdc31b7b
authored
7 years ago
by
Bas Nijholt
Browse files
Options
Downloads
Patches
Plain Diff
1D: swap xs <--> points as variable names to be more consistent
parent
3286d4b7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!7
implement 2D learner
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
adaptive/learner.py
+9
-9
9 additions, 9 deletions
adaptive/learner.py
with
9 additions
and
9 deletions
adaptive/learner.py
+
9
−
9
View file @
fdc31b7b
...
...
@@ -326,19 +326,19 @@ class Learner1D(BaseLearner):
return
[]
# If the bounds have not been chosen yet, we choose them first.
x
s
=
[]
point
s
=
[]
for
bound
in
self
.
bounds
:
if
bound
not
in
self
.
data
and
bound
not
in
self
.
data_interp
:
x
s
.
append
(
bound
)
point
s
.
append
(
bound
)
# Ensure we return exactly 'n' points.
if
x
s
:
if
point
s
:
loss_improvements
=
[
float
(
'
inf
'
)]
*
n
if
n
<=
2
:
return
x
s
[:
n
],
loss_improvements
return
point
s
[:
n
],
loss_improvements
else
:
return
np
.
linspace
(
*
self
.
bounds
,
n
),
loss_improvements
def
point
s
(
x
,
n
):
def
x
s
(
x
,
n
):
if
n
==
1
:
return
[]
else
:
...
...
@@ -355,8 +355,8 @@ class Learner1D(BaseLearner):
quality
,
x
,
n
=
quals
[
0
]
heapq
.
heapreplace
(
quals
,
(
quality
*
n
/
(
n
+
1
),
x
,
n
+
1
))
x
s
=
list
(
itertools
.
chain
.
from_iterable
(
point
s
(
x
,
n
)
for
quality
,
x
,
n
in
quals
))
point
s
=
list
(
itertools
.
chain
.
from_iterable
(
x
s
(
x
,
n
)
for
quality
,
x
,
n
in
quals
))
loss_improvements
=
list
(
itertools
.
chain
.
from_iterable
(
itertools
.
repeat
(
-
quality
,
n
)
...
...
@@ -365,7 +365,7 @@ class Learner1D(BaseLearner):
if
add_data
:
self
.
add_data
(
points
,
itertools
.
repeat
(
None
))
return
x
s
,
loss_improvements
return
point
s
,
loss_improvements
def
interpolate
(
self
,
extra_points
=
None
):
xs
=
list
(
self
.
data
.
keys
())
...
...
@@ -472,7 +472,7 @@ class BalancingLearner(BaseLearner):
def
_max_disagreement_location_in_simplex
(
points
,
values
,
grad
,
transform
):
"""
Find the point of maximum disagreement between linear and quadratic model
"""
Find the point of maximum disagreement between linear and quadratic model
.
Parameters
----------
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment