Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
pannous committed Feb 16, 2017
1 parent e1506aa commit 4a2f04a
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 0 deletions.
1 change: 1 addition & 0 deletions __init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
#!/usr/bin/env python
# allow local includes
1 change: 1 addition & 0 deletions bdlstm_utils.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
import numpy as np
import tensorflow as tf

Expand Down
1 change: 1 addition & 0 deletions densenet_layer.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
#!/usr/bin/python
import tensorflow as tf

Expand Down
1 change: 1 addition & 0 deletions generate_speech_data.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
import os

import librosa #mfcc 1.st lib
Expand Down
1 change: 1 addition & 0 deletions lstm-tflearn.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
import tensorflow as tf
import tflearn

Expand Down
1 change: 1 addition & 0 deletions lstm_ctc_to_chars.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
from __future__ import print_function
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions lstm_mfcc_ctc_to_words.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
from __future__ import print_function
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions lstm_mfcc_to_chars.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
from __future__ import print_function
import numpy as np
Expand Down
1 change: 1 addition & 0 deletions lstm_to_chars.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
'''
Example of a single-layer bidirectional long short-term memory network trained with
connectionist temporal classification to predict character sequences from nFeatures x nFrames
Expand Down
1 change: 1 addition & 0 deletions mfcc_feature_classifier.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
#!/usr/bin/python
import numpy as np
import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions number_classifier_tflearn.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env PYTHONIOENCODING="utf-8" python
import tflearn
import pyaudio
Expand Down
1 change: 1 addition & 0 deletions number_gan_layer.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python
import speech_data
import layer
Expand Down
1 change: 1 addition & 0 deletions number_gan_tflearn.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
import tflearn
import pyaudio
import speech_data
Expand Down
1 change: 1 addition & 0 deletions record.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python
#!/usr/bin/env python
import subprocess
import skimage.io
import traceback
Expand Down
1 change: 1 addition & 0 deletions speaker_classifier_tflearn.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
#!/usr/bin/env PYTHONIOENCODING="utf-8" python
import os
Expand Down
1 change: 1 addition & 0 deletions spectro_gan.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
import numpy as np
import tensorflow as tf
Expand Down
1 change: 1 addition & 0 deletions speech2text-seq2seq.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python


Expand Down
1 change: 1 addition & 0 deletions speech2text-tflearn.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
# -*- coding: utf-8 -*-
from __future__ import division, print_function, absolute_import
Expand Down
1 change: 1 addition & 0 deletions speech_data.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/local/bin/python
"""Utilities for downloading and providing data from openslr.org, libriSpeech, Pannous, Gutenberg, WMT, tokenizing, vocabularies."""
# TODO! see https://github.com/pannous/caffe-speech-recognition for some data sources
Expand Down
1 change: 1 addition & 0 deletions speech_encoder.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""A simple speech classifer AND autoencoder
1st step : classify+encode the spectogram of 10 spoken digits into one-hot-vector + 'flavor'-vector of size 10
Expand Down
1 change: 1 addition & 0 deletions wave_GANerate.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/python
# PYTHONUNBUFFERED=1
"""A simple GAN network and classifer.
Expand Down

0 comments on commit 4a2f04a

Please sign in to comment.