Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
initial restructuring - most stuff is still broken
Browse files Browse the repository at this point in the history
  • Loading branch information
jhetherly committed Nov 29, 2017
1 parent b0727c5 commit fa050ab
Show file tree
Hide file tree
Showing 242 changed files with 547 additions and 4,971 deletions.
File renamed without changes.
Binary file removed data/commchannel/communitychannel-1-left.wav
Binary file not shown.
Binary file removed data/commchannel/communitychannel-1-right.wav
Binary file not shown.
Binary file removed data/commchannel/communitychannel-2-left.wav
Binary file not shown.
Binary file removed data/commchannel/communitychannel-2-right.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-1-left.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-1-right.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-2-left.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-2-right.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-3-left.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-3-right.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-4-left.wav
Binary file not shown.
Binary file removed data/commchannel/karltiffany-4-right.wav
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file removed data/examples/mixture.wav
Binary file not shown.
20 changes: 0 additions & 20 deletions data/librispeech/authors/dev-clean-F.txt

This file was deleted.

20 changes: 0 additions & 20 deletions data/librispeech/authors/dev-clean-M.txt

This file was deleted.

20 changes: 0 additions & 20 deletions data/librispeech/authors/test-clean-F.txt

This file was deleted.

20 changes: 0 additions & 20 deletions data/librispeech/authors/test-clean-M.txt

This file was deleted.

125 changes: 0 additions & 125 deletions data/librispeech/authors/train-clean-100-F.txt

This file was deleted.

126 changes: 0 additions & 126 deletions data/librispeech/authors/train-clean-100-M.txt

This file was deleted.

Binary file removed data/pictures/mask-rnn-mask.png
Binary file not shown.
Binary file removed data/pictures/mask-rnn.png
Binary file not shown.
14 changes: 0 additions & 14 deletions evaluation/README.md

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions magnolia/python/models/__init__.py
@@ -0,0 +1,19 @@
from .dnnseparate.chimera import Chimera
from .dnnseparate.L41_regression_model import L41RegressionModel

__all__ = [
"Chimera",
"L41RegressionModel",
]

def make_model(config, env):
if config['model_name'] in __all__:
return globals()[config['model_name']](config, env)
else:
raise Exception('The model name %s does not exist' % config['model_name'])

def get_model_class(config):
if config['model_name'] in __all__:
return globals()[config['model_name']]
else:
raise Exception('The model name %s does not exist' % config['model_name'])
File renamed without changes.
Empty file.
File renamed without changes.

0 comments on commit fa050ab

Please sign in to comment.