Skip to content

Commit

Permalink
Advanced training regimes (#71)
Browse files Browse the repository at this point in the history
Resolves #30, #33, #36, #37, #38, #42, #43, #47, #66, #80, #81
  • Loading branch information
mmcauliffe authored Aug 20, 2018
1 parent 87aae96 commit 9310d3a
Show file tree
Hide file tree
Showing 83 changed files with 5,903 additions and 4,395 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ __pycache__/
*.py[cod]
*.exe
*.zip
report.txt

.idea/
.pytest-cache/
# Mac BS
.DS_Store

Expand Down Expand Up @@ -68,3 +70,9 @@ docs/build/

# PyBuilder
target/

*.exe

*.dll

\.pytest_cache/
4 changes: 0 additions & 4 deletions .pytest_cache/v/cache/lastfailed

This file was deleted.

3 changes: 0 additions & 3 deletions .pytest_cache/v/cache/nodeids

This file was deleted.

19 changes: 12 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,24 @@ notifications:
email: false

sudo: true
dist: trusty
dist: xenial

addons:
apt:
sources:
- ubuntu-toolchain-r-test
- ubuntu-toolchain-r-test
packages:
- libatlas3-base
- libstdc++6
- gfortran

before_install:
- sudo apt-get update
- pwd
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
- sudo ln -s -f bash /bin/sh
- pwd
#- sudo rm -rf /dev/shm
#- sudo ln -s /run/shm /dev/shm
#- sudo ln -s -f bash /bin/sh
- bash continuous-integration/travis/install.sh
- ls thirdparty/bin -al

# Install packages
install:
Expand All @@ -42,6 +43,10 @@ script:
after_success:
- coveralls

after_failure:
- ls tests/data/generated/sickcorpus/corpus_data/split2/log
- cat tests/data/generated/sickcorpus/corpus_data/split2/log/make_mfcc.0.log

cache:
directories:
- $HOME/miniconda
Expand Down
4 changes: 1 addition & 3 deletions aligner/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__version__ = "%d.%d.%d" % __ver_tuple__

__all__ = ['aligner', 'command_line', 'models', 'corpus', 'config', 'dictionary', 'exceptions',
'helper', 'multiprocessing', 'textgrid', 'utils', 'g2p']
'helper', 'multiprocessing', 'textgrid', 'g2p']

import aligner.aligner as aligner

Expand All @@ -27,6 +27,4 @@

import aligner.textgrid as textgrid

import aligner.utils as utils

import aligner.g2p as g2p
Loading

0 comments on commit 9310d3a

Please sign in to comment.