Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.learn.boosting
Commits
b5cee3ef
Commit
b5cee3ef
authored
Feb 20, 2014
by
Manuel Günther
Browse files
Made nose tests run from scratch and in other packages.
parent
b4641511
Changes
3
Hide whitespace changes
Inline
Side-by-side
buildout.cfg
View file @
b5cee3ef
...
...
@@ -5,7 +5,6 @@
[buildout]
parts = xbob.boosting scripts
eggs = xbob.boosting
xbob.db.mnist
newest = false
verbose = true
...
...
setup.py
View file @
b5cee3ef
...
...
@@ -58,6 +58,7 @@ setup(
install_requires
=
[
'setuptools'
,
'bob'
,
# base signal proc./machine learning library
'xbob.db.mnist'
# for testing and the example
],
# Set up the C++ compiler to compile the C++ source code of this package
...
...
xbob/boosting/tests/test_boosting.py
View file @
b5cee3ef
...
...
@@ -11,8 +11,7 @@ class TestBoosting(unittest.TestCase):
@
classmethod
def
setUpClass
(
self
):
# create a single copy of the MNIST database to avoid downloading the packages several times
self
.
database
=
xbob
.
db
.
mnist
.
Database
(
"Database"
)
#self.database = xbob.db.mnist.Database()
self
.
database
=
xbob
.
db
.
mnist
.
Database
()
@
classmethod
def
tearDownClass
(
self
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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