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
Merge requests
!135
test all the different loss functions in each test
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
test all the different loss functions in each test
test_loss_functions
into
master
Overview
6
Commits
7
Pipelines
17
Changes
3
Merged
Bas Nijholt
requested to merge
test_loss_functions
into
master
6 years ago
Overview
6
Commits
7
Pipelines
17
Changes
1
Expand
Improve the tests
test all the different loss functions in each test
add
Learner1D._recompute_losses_factor
to remove
xfail
from two tests
speed up the tests
Edited
6 years ago
by
Bas Nijholt
1
0
Merge request reports
Compare
version 11
version 16
6ba7812d
6 years ago
version 15
7c3aa215
6 years ago
version 14
b86abb32
6 years ago
version 13
1a0c8ad1
6 years ago
version 12
d4723938
6 years ago
version 11
0e458fad
6 years ago
version 10
d0ac5d6d
6 years ago
version 9
46a78bf6
6 years ago
version 8
3be4c939
6 years ago
version 7
64097ead
6 years ago
version 6
ffb242c8
6 years ago
version 5
ff0c6b5f
6 years ago
version 4
5495da77
6 years ago
version 3
b0e4253a
6 years ago
version 2
72bebd5d
6 years ago
version 1
515d7cf1
6 years ago
master (base)
and
version 12
latest version
d2d955e0
7 commits,
6 years ago
version 16
6ba7812d
7 commits,
6 years ago
version 15
7c3aa215
7 commits,
6 years ago
version 14
b86abb32
7 commits,
6 years ago
version 13
1a0c8ad1
8 commits,
6 years ago
version 12
d4723938
8 commits,
6 years ago
version 11
0e458fad
7 commits,
6 years ago
version 10
d0ac5d6d
7 commits,
6 years ago
version 9
46a78bf6
8 commits,
6 years ago
version 8
3be4c939
7 commits,
6 years ago
version 7
64097ead
7 commits,
6 years ago
version 6
ffb242c8
6 commits,
6 years ago
version 5
ff0c6b5f
4 commits,
6 years ago
version 4
5495da77
3 commits,
6 years ago
version 3
b0e4253a
3 commits,
6 years ago
version 2
72bebd5d
2 commits,
6 years ago
version 1
515d7cf1
1 commit,
6 years ago
Show latest version
1 file
+
3
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
adaptive/learner/data_saver.py
+
3
−
0
Options
@@ -35,6 +35,9 @@ class DataSaver:
def
__getattr__
(
self
,
attr
):
return
getattr
(
self
.
learner
,
attr
)
def
__setattr__
(
self
,
attr
):
return
setattr
(
self
.
learner
,
attr
)
@copy_docstring_from
(
BaseLearner
.
tell
)
def
tell
(
self
,
x
,
result
):
y
=
self
.
arg_picker
(
result
)
Loading