Skip to content
Snippets Groups Projects
Commit 135fdcca authored by Elie KHOURY's avatar Elie KHOURY
Browse files

rename to xbob.db.voxforge

parent 920dce46
No related branches found
No related tags found
No related merge requests found
Showing
with 13 additions and 13 deletions
......@@ -42,9 +42,9 @@ Installation
Just download this package and uncompressed it locally::
$ wget http://pypi.python.org/packages/source/x/xbob.subvoxforge/xbob.db.subvoxforge-0.0.1.zip
$ unzip xbob.db.subvoxforge-0.0.1.zip
$ cd xbob.db.subvoxforge
$ wget http://pypi.python.org/packages/source/x/xbob.voxforge/xbob.db.voxforge-0.0.1.zip
$ unzip xbob.db.voxforge-0.0.1.zip
$ cd xbob.db.voxforge
Use buildout to bootstrap and have a working environment ready for
experiments::
......@@ -65,4 +65,4 @@ The data can be downloaded from its original URL (on Voxforge) and extracted by
.. _Voxforge: http://www.voxforge.org/
.. _xbob.speaker_recognition: https://github.com/bioidiap/xbob.speaker_recognition
.. _NIST SRE 2012 evaluation: http://www.nist.gov/itl/iad/mig/sre12.cfm
.. _download_and_untar.sh: https://github.com/bioidiap/xbob.db.subvoxforge/blob/master/download_and_untar.sh
.. _download_and_untar.sh: https://github.com/bioidiap/xbob.db.voxforge/blob/master/download_and_untar.sh
......@@ -7,7 +7,7 @@ parts = scripts
develop = .
eggs = bob>=1.2.0
xbob.db.verification.filelist
xbob.db.subvoxforge
xbob.db.voxforge
newest = false
; Look at this directory to find bob
......
......@@ -39,5 +39,5 @@ while read filename; do
mv $basefilename $directory/.
rm $filename
fi
done < xbob/db/subvoxforge/lists/list_of_tgz_files.lst # where the list of files is stored
done < xbob/db/voxforge/lists/list_of_tgz_files.lst # where the list of files is stored
......@@ -21,10 +21,10 @@ from setuptools import setup, find_packages
setup(
name='xbob.db.subvoxforge',
name='xbob.db.voxforge',
version='0.0.1a0',
description='Speaker verification protocol on a subset of the VoxForge database',
url='http://pypi.python.org/pypi/xbob.db.subvoxforge',
url='http://pypi.python.org/pypi/xbob.db.voxforge',
license='GPLv3',
author='Elie Khoury',
author_email='Elie.Khoury@idiap.ch',
......@@ -48,12 +48,12 @@ setup(
entry_points = {
# declare database to bob
'bob.db': [
'subvoxforge = xbob.db.subvoxforge.driver:Interface',
'voxforge = xbob.db.voxforge.driver:Interface',
],
# declare tests to bob
'bob.test': [
'subvoxforge = xbob.db.subvoxforge.test:SubvoxforgeDatabaseTest',
'voxforge = xbob.db.voxforge.test:voxforgeDatabaseTest',
],
},
......
File moved
......@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Commands the Subvoxforge database can respond to.
"""Commands the Voxforge database can respond to.
"""
import os
......@@ -77,7 +77,7 @@ def checkfiles(args):
class Interface(BaseInterface):
def name(self):
return 'subvoxforge'
return 'voxforge'
def version(self):
import pkg_resources # part of setuptools
......@@ -94,7 +94,7 @@ class Interface(BaseInterface):
from . import __doc__ as docs
subparsers = self.setup_parser(parser,
"Subvoxforge database", docs)
"Voxforge database", docs)
import argparse
......
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment