Skip to content

Commit

Permalink
Add authors
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Wawrzynski <[email protected]>
  • Loading branch information
adamwawrzynski committed Jun 7, 2019
1 parent 65eaf16 commit c94f0bc
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
This program was created in 2019 at Gdańsk University of Technology as final
project for passing the subject Multimedia Interactive Systems.

Authors:

Wawrzyński Adam <https://github.com/adamwawrzynski>
Szypryt Kamil <https://github.com/kamilozo6>
5 changes: 5 additions & 0 deletions modules/audio_processing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-

__version__ = '1.0'
__author__ = 'Wawrzyński Adam, Szypryt Kamil'

from python_speech_features import mfcc
from python_speech_features import logfbank
from python_speech_features import delta
Expand Down
5 changes: 5 additions & 0 deletions modules/models.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-

__version__ = '1.0'
__author__ = 'Wawrzyński Adam, Szypryt Kamil'

import tensorflow as tf
from keras.backend.common import epsilon
from tensorflow.python.ops import ctc_ops as ctc
Expand Down
5 changes: 5 additions & 0 deletions modules/simplify_dataset.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# -*- coding: utf-8 -*-

__version__ = '1.0'
__author__ = 'Wawrzyński Adam, Szypryt Kamil'

import os
import sys
import argparse
Expand Down
4 changes: 4 additions & 0 deletions modules/train.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# -*- coding: utf-8 -*-

__version__ = '1.0'
__author__ = 'Wawrzyński Adam, Szypryt Kamil'

import os
import numpy as np
import random
Expand Down
5 changes: 5 additions & 0 deletions speech-tagging-tool.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-

__version__ = '1.0'
__author__ = 'Wawrzyński Adam, Szypryt Kamil'

import argparse
import numpy as np
import modules.train as train
Expand Down

0 comments on commit c94f0bc

Please sign in to comment.