Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Carlos-Francisco Méndez-Cruz
/
lcg-bioinfoI-bionlp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Carlos-Francisco Méndez-Cruz
2018-09-20 02:57:28 -0500
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
81f2f176a14c32f66b80da13cdb13a294c97329a
81f2f176
1 parent
d8028300
Training, crossvalidation and testing binding thrombin dataset
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
clasificacion-automatica/binding-thrombin-dataset/training-crossvalidation-testing-binding-thrombin.py
clasificacion-automatica/binding-thrombin-dataset/training-crossvalidation-testing-binding-thrombin.py
View file @
81f2f17
...
...
@@ -28,7 +28,7 @@ __author__ = 'CMendezC'
# 6) --outputModelFile File to place output model.
# 7) --outputReportPath Path to place evaluation report.
# 8) --outputReportFile File to place evaluation report.
# 9) --classifier Classifier: BernoulliNB, SVM,
NearestCentroid
.
# 9) --classifier Classifier: BernoulliNB, SVM,
kNN
.
# 10) --saveData Save matrices
# 11) --kernel Kernel
# 12) --reduction Feature selection or dimensionality reduction
...
...
@@ -80,7 +80,7 @@ if __name__ == "__main__":
help
=
"File to place evaluation report"
,
metavar
=
"FILE"
)
parser
.
add_argument
(
"--classifier"
,
dest
=
"classifier"
,
help
=
"Classifier"
,
metavar
=
"NAME"
,
choices
=
(
'BernoulliNB'
,
'SVM'
,
'
NearestCentroid
'
),
default
=
'SVM'
)
choices
=
(
'BernoulliNB'
,
'SVM'
,
'
kNN
'
),
default
=
'SVM'
)
parser
.
add_argument
(
"--saveData"
,
dest
=
"saveData"
,
action
=
'store_true'
,
help
=
"Save matrices"
)
parser
.
add_argument
(
"--kernel"
,
dest
=
"kernel"
,
...
...
Please
register
or
login
to post a comment