commit b1db1296beeb0ecc666f9c01499ead52aa4b4aa5
parent a4450e18fd832f13aa6f9bd1eff896230788b012
Author: CarlSouthall <c-southall@live.co.uk>
Date: Wed, 3 Aug 2016 16:57:35 +0100
1.0
Diffstat:
6 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/ADTLib.egg-info/PKG-INFO b/ADTLib.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: ADTLib
-Version: 1.5
+Version: 0.6
Summary: Automated Drum Trancription Library
Home-page: https://github.com/CarlSouthall/ADTLib
Author: Carl Southall
diff --git a/ADTLib/__init__.py b/ADTLib/__init__.py
@@ -1,8 +1,7 @@
# -*- coding: utf-8 -*-
"""
-Created on Wed Jul 20 19:18:52 2016
-
@author: CarlSouthall
+
"""
diff --git a/ADTLib/models/__init__.py b/ADTLib/models/__init__.py
@@ -19,16 +19,15 @@ from ADTLib.utils import Wavread, MeanPP, arrange_output, write_text
def ADTBDRNN(TrackNames, out_sort='time',ret='yes', out_text='no', savedir='current',close_error=0.05,lambd=[9.7,9.9,4.9]):
- ''' Bi-directional neural network algorithm outlined in:
+ ''' Bi-directional neural network algorithm outlined in:
Southall, C., R. Stables, J. Hockman, Automatic Drum Transcription Using
Bi-directional Recurrent Neural Networks,
Proceedings of the 17th International Society for Music Information
Retrieval Conference (ISMIR), 2016.
- For usage help see github.com/CarlSouthall/ADTLib/usage.md
-
- '''
+ For usage help see github.com/CarlSouthall/ADTLib/usage.md'''
+
Time_Steps=1
WL=2048
HS=512
diff --git a/dist/ADTLib-0.6.tar.gz b/dist/ADTLib-0.6.tar.gz
Binary files differ.
diff --git a/dist/ADTLib-1.5.tar.gz b/dist/ADTLib-1.5.tar.gz
Binary files differ.
diff --git a/setup.py b/setup.py
@@ -8,7 +8,7 @@ scripts = glob.glob('bin/*')
setup(
name = 'ADTLib',
packages=find_packages(exclude=[]),
- version = '1.5',
+ version = '0.6',
description = 'Automated Drum Trancription Library',
author = 'Carl Southall',
author_email = 'c-southall@live.co.uk',