Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
FreeForestML
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CERN
fsauerbu
FreeForestML
Commits
16939e8e
Commit
16939e8e
authored
4 years ago
by
Benjamin Paul Jaeger
Browse files
Options
Downloads
Patches
Plain Diff
Update documentation
parent
2d0db095
No related branches found
No related tags found
2 merge requests
!69
Add z0callback option
,
!60
WIP: Select training folds so they are equally represented in the predicted data
Pipeline
#12655
failed
4 years ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
nnfwtbn/model.py
+3
-3
3 additions, 3 deletions
nnfwtbn/model.py
with
3 additions
and
3 deletions
nnfwtbn/model.py
+
3
−
3
View file @
16939e8e
...
...
@@ -361,7 +361,7 @@ class MixedCV(CrossValidator):
def
select_training_slices
(
self
,
fold_i
,
for_predicting
=
False
):
"""
Returns array
of arrays
with integers corresponding
Returns array with integers corresponding
to the data slices used in training fold_i.
If
'
for_predicting
'
is set to True only one slice
is returned for each fold so that the folds are equally represented
...
...
@@ -390,7 +390,7 @@ class MixedCV(CrossValidator):
for
sl
in
slices
:
if
sl
not
in
exclusive_slices
and
sl
in
uniq_el
(
all_slices_for_folds
[
i
:]):
exclusive_slices
.
append
(
sl
)
return
exclusive_slices
[
fold_i
]
return
[
exclusive_slices
[
fold_i
]
]
def
select_training
(
self
,
df
,
fold_i
,
for_predicting
=
False
):
"""
...
...
@@ -399,7 +399,7 @@ class MixedCV(CrossValidator):
"""
selected
=
np
.
zeros
(
len
(
df
),
dtype
=
'
bool
'
)
slices
=
self
.
select_training_slices
(
fold_i
,
for_predicting
=
for_predicting
)
for
slice_i
in
np
.
array
(
slices
).
flatten
()
:
for
slice_i
in
slices
:
selected
=
selected
|
self
.
select_slice
(
df
,
slice_i
)
return
selected
...
...
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