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
23268f44
Commit
23268f44
authored
8 years ago
by
Bas Nijholt
Browse files
Options
Downloads
Patches
Plain Diff
Script from Anton
parent
03236d4a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
learner1D.py
+156
-0
156 additions, 0 deletions
learner1D.py
with
156 additions
and
0 deletions
learner1D.py
0 → 100644
+
156
−
0
View file @
23268f44
#-------------------------------------------------------------------------------
# Filename: learner1D.py
# Description: Contains 'Learner1D' object, a learner for 1D data.
# TODO:
#-------------------------------------------------------------------------------
from
__future__
import
division
import
numpy
as
np
from
math
import
sqrt
from
itertools
import
izip
import
heapq
class
Learner1D
(
object
):
"""
Learns and predicts a 1D function.
Description
-----------
Answers questions like:
*
"
How much data do you need to get 2% accuracy?
"
*
"
What is the current status?
"
*
"
If I give you n data points, which ones would you like?
"
(initialise/request/promise/put/describe current state)
"""
def
__init__
(
self
,
xdata
=
None
,
ydata
=
None
):
"""
Initialize the learner.
Parameters
----------
data :
Possibly empty list of float-like tuples, describing the initial
data.
"""
# Set internal variables
# A dict storing the loss function for each interval x_n.
self
.
_losses
=
{}
# A dict {x_n: [x_{n-1}, x_{n+1}]} for quick checking of local
# properties.
self
.
_neighbors
=
{}
# A dict {x_n: y_n} for quick checking of local
# properties.
self
.
_ydata
=
{}
# Bounding box [[minx, maxx], [miny, maxy]].
self
.
_bbox
=
[[
np
.
inf
,
-
np
.
inf
],
[
np
.
inf
,
-
np
.
inf
]]
# Data scale (maxx - minx), (maxy - miny)
self
.
_scale
=
[
0
,
0
]
self
.
_oldscale
=
[
0
,
0
]
# Add initial data if provided
if
xdata
is
not
None
:
self
.
add_data
(
xdata
,
ydata
)
def
loss
(
self
,
x_i
,
x_f
):
"""
Calculate loss in the interval x_i, x_f.
Currently returns the rescaled length of the interval. If one of the
y-values is missing, returns 0 (so the intervals with missing data are
never touched. This behavior should be improved later.
"""
assert
x_i
<
x_f
and
self
.
_neighbors
[
x_i
][
1
]
==
x_f
try
:
return
sqrt
(((
x_f
-
x_i
)
/
self
.
_scale
[
0
])
**
2
+
((
self
.
_ydata
[
x_f
]
-
self
.
_ydata
[
x_i
])
/
self
.
_scale
[
1
])
**
2
)
except
TypeError
:
# One of y-values is None.
return
0
def
add_data
(
self
,
xvalues
,
yvalues
):
"""
Add data to the intervals.
Parameters
----------
xvalues : iterable of numbers
Values of the x coordinate.
yvalues : iterable of numbers and None
Values of the y coordinate. `None` means that the value will be
provided later.
"""
for
x
,
y
in
izip
(
xvalues
,
yvalues
):
self
.
add_point
(
x
,
y
)
def
add_point
(
self
,
x
,
y
):
# Update the data
self
.
_ydata
[
x
]
=
y
# Update the neighbors.
if
x
not
in
self
.
_neighbors
:
# The point is new
xvals
=
np
.
sort
(
self
.
_neighbors
.
keys
())
pos
=
np
.
searchsorted
(
xvals
,
x
)
self
.
_neighbors
[
None
]
=
[
None
,
None
]
# To reduce the number of
# condititons.
x_lower
=
xvals
[
pos
-
1
]
if
pos
!=
0
else
None
x_upper
=
xvals
[
pos
]
if
pos
!=
len
(
xvals
)
else
None
# print x_lower, x_upper, x
self
.
_neighbors
[
x
]
=
[
x_lower
,
x_upper
]
self
.
_neighbors
[
x_lower
][
1
]
=
x
self
.
_neighbors
[
x_upper
][
0
]
=
x
del
self
.
_neighbors
[
None
]
# Update the scale.
self
.
_bbox
[
0
][
0
]
=
min
(
self
.
_bbox
[
0
][
0
],
x
)
self
.
_bbox
[
0
][
1
]
=
max
(
self
.
_bbox
[
0
][
1
],
x
)
if
y
is
not
None
:
self
.
_bbox
[
1
][
0
]
=
min
(
self
.
_bbox
[
1
][
0
],
y
)
self
.
_bbox
[
1
][
1
]
=
max
(
self
.
_bbox
[
1
][
1
],
y
)
self
.
_scale
=
[
self
.
_bbox
[
0
][
1
]
-
self
.
_bbox
[
0
][
0
],
self
.
_bbox
[
1
][
1
]
-
self
.
_bbox
[
1
][
0
]]
# Update the losses.
x_lower
,
x_upper
=
self
.
_neighbors
[
x
]
if
x_lower
is
not
None
:
self
.
_losses
[
x_lower
,
x
]
=
self
.
loss
(
x_lower
,
x
)
if
x_upper
is
not
None
:
self
.
_losses
[
x
,
x_upper
]
=
self
.
loss
(
x
,
x_upper
)
try
:
del
self
.
_losses
[
x_lower
,
x_upper
]
except
KeyError
:
pass
# If the scale has doubled, recompute all losses.
if
self
.
_scale
>
self
.
_oldscale
*
2
:
self
.
_losses
=
{
key
:
self
.
loss
(
*
key
)
for
key
in
self
.
_losses
}
self
.
_oldscale
=
self
.
_scale
def
choose_points
(
self
,
n
=
10
):
"""
Return n points that are expected to maximally reduce the loss.
"""
# Find out how to divide the n points over the intervals
# by finding positive integer n_i that minimize max(L_i / n_i) subject
# to a constraint that sum(n_i) = n + N, with N the total number of
# intervals.
# Return equally spaced points within each interval to which points
# will be added.
points
=
lambda
x
,
n
:
list
(
np
.
linspace
(
x
[
0
],
x
[
1
],
n
,
endpoint
=
False
)[
1
:])
# Calculate how many points belong to each interval.
quals
=
[(
-
loss
,
x_i
,
1
)
for
(
x_i
,
loss
)
in
self
.
_losses
.
iteritems
()]
heapq
.
heapify
(
quals
)
for
point_number
in
xrange
(
n
):
quality
,
x
,
n
=
quals
[
0
]
heapq
.
heapreplace
(
quals
,
(
quality
*
n
/
(
n
+
1
),
x
,
n
+
1
))
return
sum
((
points
(
x
,
n
)
for
quality
,
x
,
n
in
quals
),
[])
def
get_status
(
self
):
"""
Report current status.
So far just returns some internal variables [losses, intervals and
data]
"""
return
self
.
_losses
,
self
.
_neighbors
,
self
.
_ydata
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