Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.measure
Commits
c973cb27
Commit
c973cb27
authored
Jun 28, 2018
by
Tiago de Freitas Pereira
Browse files
Merge branch 'load' into 'master'
Consider non 1 values negatives See merge request
!80
parents
751d030e
b1c67590
Pipeline
#21408
passed with stages
in 15 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
bob/measure/load.py
View file @
c973cb27
...
...
@@ -43,8 +43,8 @@ def split(filename):
positive) and the second the scores
(float).'''
.
format
(
filename
))
raise
return
(
scores
[
numpy
.
where
(
neg_pos
==
-
1
)],
scores
[
numpy
.
where
(
neg_pos
==
1
)
])
positives
=
neg_pos
==
1
return
(
scores
[
~
positives
],
scores
[
positives
])
def
split_files
(
filenames
):
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment