More efficient 'tell_many'
import adaptive
def f(x, offset=0):
a = 0.01
return x + a**2 / (a**2 + (x - offset)**2)
learner = adaptive.Learner1D(f, bounds=(-1, 1))
adaptive.runner.simple(learner, goal=lambda l: l.npoints > 200)
Timing new implementation
%%timeit
learner2 = adaptive.Learner1D(f, bounds=(-1, 1))
learner2.tell_many(*zip(*learner.data.items()))
1.17 ms ± 24.9 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
Timing old implementation
%%timeit
learner2 = adaptive.Learner1D(f, bounds=(-1, 1))
for x, y in learner.data.items():
learner2.tell(x, y)
6.82 ms ± 447 µs per loop (mean ± std. dev. of 7 runs, 100 loops each)
This makes it ~6 times faster for functions that return scalars and is >10 times faster for vectors.
Merge request reports
Activity
mentioned in issue #105 (closed)
added 70 commits
-
0b20c52a...957d25fd - 67 commits from branch
master
- ee4b3336 - 1D: implement a more efficient 'tell_many'
- 1dff371c - 1D: test the more efficient 'tell_many'
- 620a1906 - fix some of the tests
Toggle commit list-
0b20c52a...957d25fd - 67 commits from branch
added 5 commits
-
4575cdf5...4dc4400a - 2 commits from branch
master
- 16afdb70 - 1D: implement a more efficient 'tell_many'
- 786de33d - 1D: test the more efficient 'tell_many'
- 3832c91d - wip
Toggle commit list-
4575cdf5...4dc4400a - 2 commits from branch
@jbweston I think this works as expected now.
Do you think we need more tests?
assigned to @jbweston
- Resolved by Joseph Weston
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
changed milestone to %v0.6
added 7 commits
-
f1d4f04b...73103e61 - 3 commits from branch
master
- 775190fe - 1D: implement a more efficient 'tell_many'
- 51cfc988 - 1D: test the more efficient 'tell_many'
- 3bab1b6a - 1D: sort the data when plotting a 'holoviews.Path'
- c32600b4 - 1D: simplify 'learner.vdim'
Toggle commit list-
f1d4f04b...73103e61 - 3 commits from branch
added 1 commit
- d1955676 - 1D: add 'force' keyword only argument to 'tell_many' for testing purposes and fix the tests
added 5 commits
- dc50e96e - 1D: implement a more efficient 'tell_many'
- 44b445a8 - 1D: test the more efficient 'tell_many'
- 880740c4 - 1D: sort the data when plotting a 'holoviews.Path'
- 17511d3b - 1D: simplify 'learner.vdim'
- 65383ac2 - 1D: add 'force' keyword only argument to 'tell_many' for testing purposes and fix the tests
Toggle commit list@jbweston I fixed the issue mentioned in my previous comment. All done now
mentioned in issue #106 (closed)
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
- Resolved by Bas Nijholt
assigned to @basnijholt
added 7 commits
-
580e21d5...dc57ba19 - 3 commits from branch
master
- 8bafea3c - 1D: implement a more efficient 'tell_many'
- d00bde9d - 1D: test the more efficient 'tell_many'
- 97f7b24d - 1D: sort the data when plotting a 'holoviews.Path'
- 18618f85 - 1D: simplify 'learner.vdim'
Toggle commit list-
580e21d5...dc57ba19 - 3 commits from branch
assigned to @jbweston
@jbweston I made the changes you suggested, thanks for the review.