Neural network research project for upsampling/enhancing audio
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2020-02-17 17:32:01 -06:00
data Add data folder to repo 2020-02-17 16:48:01 -06:00
main Add main folder for repo 2020-02-17 16:46:35 -06:00
samples Add samples folder to repo 2020-02-17 16:49:35 -06:00
.gitignore Initial commit 2020-02-17 16:41:42 -06:00
LICENSE Initial commit 2020-02-17 16:41:42 -06:00
README.md Update README.md 2020-02-17 17:32:01 -06:00

AudioEnhancer

Takes cruddy conference call audio and upsamples it to HD Audio

To read more about the research, visit https://crimata.com/AIPost

Usage

Repository Structure

  • ./data: the data and the metadata (you should not need to touch this folder)
  • ./main: the model and its respective utilites
  • ./samples: audio files and spectrograms generated from the neural net
cd ./main
python 3 main.py -h

It will then ask you if you'd like to train or evaluate. To get help for each respectivly, just type:

python 3 main.py train -h
python 3 main.py eval -h

Argument Reference | train

Arguments:
  -h, --help        
  -i MODEL_ID       an index you can add to querey the model later
  -c FROM_CKPT      bool, begin training session from a checkpoint
  -k NEW_DATA       bool, make new set of data
  -d DIM_SIZE       size of each audio sample
  -x NUM_FILES      number of files to train
  -e EPOCHS
  -b BATCH_SIZE
  -o CYCLE_LENGTH   length of cycle in epochs (only for SGDR)
  -m MAX_LR         max learning rate (only for SGDR)
  -n MIN_LR         min learning rate (only for SGDR)

Argument Reference | eval

Arguments:
  -h, --help
  -i MODEL_ID       model ID to use
  -n NUM_EXAMPLES   number of examples/files to run
  -w WAVFILE_LIST   list to pull examples from
  -r SCALE          level of upsampling
  -s SAMPLE_RATE    target sample rate
  -a MAKE_AUDIO     bool, make audio or just spectrograms
  -c FROM_CKPT      bool, begin eval at last checkpoint