Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mhc_rank
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Patrick Skillman-Lawrence
mhc_rank
Commits
59e3b559
Commit
59e3b559
authored
8 years ago
by
Alex Rubinsteyn
Browse files
Options
Downloads
Patches
Plain Diff
added failing test for loading Dataset and then training predictor
parent
0fc7ec2b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
test/test_class1_binding_predictor_A0205.py
+23
-0
23 additions, 0 deletions
test/test_class1_binding_predictor_A0205.py
with
23 additions
and
0 deletions
test/test_class1_binding_predictor_A0205.py
0 → 100644
+
23
−
0
View file @
59e3b559
from
mhcflurry.dataset
import
Dataset
from
mhcflurry.paths
import
CLASS1_DATA_CSV_PATH
from
mhcflurry
import
Class1BindingPredictor
from
nose.tools
import
eq_
import
numpy
as
np
def
class1_binding_predictor_A0205_training_accuracy
():
dataset
=
Dataset
.
from_csv
(
CLASS1_DATA_CSV_PATH
)
dataset_a0205
=
dataset
.
get_allele
(
"
HLA-A0205
"
)
predictor
=
Class1BindingPredictor
.
from_hyperparameters
(
name
=
"
A0205
"
)
predictor
.
fit_dataset
(
dataset_a0205
)
peptides
=
dataset_a0205
.
peptides
ic50_pred
=
predictor
.
predict
(
peptides
)
ic50_true
=
dataset_a0205
.
affinities
eq_
(
len
(
ic50_pred
),
len
(
ic50_true
))
assert
np
.
allclose
(
ic50_pred
,
ic50_true
)
if
__name__
==
"
__main__
"
:
class1_binding_predictor_A0205_training_accuracy
()
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