update layers and .gitignore

This commit is contained in:
Robert Müller 2020-03-18 13:13:51 +01:00
parent 6ed6e2f38d
commit 3d7dbf222c
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/.idea/*
/results/* /results/*
/data/ /data/
# Created by https://www.gitignore.io/api/data,linux,macos,python,pycharm,windows,jupyternotebooks # Created by https://www.gitignore.io/api/data,linux,macos,python,pycharm,windows,jupyternotebooks

View File

@ -25,3 +25,4 @@ if __name__ == '__main__':
X = np.random.rand(1, 60, 40) X = np.random.rand(1, 60, 40)
Y = sub_spec_tnfm(X) Y = sub_spec_tnfm(X)
print(f'\t Sub-Spectrogram transformation from shape {X.shape} to {Y.shape}') print(f'\t Sub-Spectrogram transformation from shape {X.shape} to {Y.shape}')
print('Done ...')