Commit Graph

26 Commits

Author SHA1 Message Date
LJY-M c601c49d77
Merge pull request #7 from Rabbit314271/patch-2
'output' module in librosa is deprecated now
2021-12-10 20:02:53 +08:00
Rabbit314271 70b5382620
'output' module in librosa is deprecated now
see https://stackoverflow.com/questions/63997969/attributeerror-module-librosa-has-no-attribute-output for detail.
'output' was supported in librosa version.0.6.x, but now in ver 0.8.x it is deprecated and unable to use.
2021-12-10 20:00:44 +08:00
LJY-M a9c3865181
Merge pull request #6 from Rabbit314271/patch-1
Simple spell mistakes
2021-12-10 19:58:04 +08:00
Rabbit314271 a321f9fd60
Update convert.py 2021-12-10 19:55:00 +08:00
miaomiaomiao-LJY 12025d8e08 UPDATE
# Update README.md
2021-07-21 11:05:44 +08:00
miaomiaomiao-LJY e5af503f99 ADD
# Add README.md
2021-07-21 10:56:30 +08:00
miaomiaomiao-LJY 7f34418247 UPDATE
# update hparams:
#     Add convert setting
#     Add test dataset
#     Add preprocessing parameters
#     Optimize partial parameters
2021-04-25 18:07:29 +08:00
miaomiaomiao-LJY d63c76db75 UPDATE
# update audio_operation:
#     Add normalize_0_1 and denormalize_0_1 function
#     Add preemphasis and inv_preemphasis function
#     Add spec2wav function
#     Optimize audio waveform preprocessing steps
2021-04-25 18:04:53 +08:00
miaomiaomiao-LJY eec6b3e752 UPDATE
# update train.train_net1:
#     Add tensorboardX model
#     Log loss scalars

# update train.train_net2:
#     Add tensorboardX model
#     Log loss scalars
2021-04-22 17:41:02 +08:00
miaomiaomiao-LJY ab4497878f ADD
# Add convert:
#     Implement audio convert
#     Load trained net1 and net2 model, make spectrogram to waveform
#     Save converted audio
2021-04-22 17:38:04 +08:00
miaomiaomiao-LJY 68c796fda3 ADD
# Add test_net.test_net2:
#     Implement net2 test
#     Load trained net2 model, compute loss
2021-04-20 17:13:04 +08:00
miaomiaomiao-LJY a8e872db57 ADD
# Add test_net.test_net1:
#     Implement net1 test
#     Load trained net1 model, compute loss and accuracy
2021-04-20 15:32:35 +08:00
miaomiaomiao-LJY 1904696bc7 ADD
# Add dataloader.Net2DataLoader:
#     Implement Net2Dataset
#     Implement get_net2_data_loader
#     Test Net2DataLoader

# Add train.train_net2:
#     Add net2 train main function
#     Implement net2 train function
#     Implement net2 model save and load function
#     Implement simple debugging function

# Update audio_operation:
#     Turn off debugging function

# Update hparams:
#     Add net2 dataset default setting
#     Add net2 model default setting
#     Add net2 train default setting
2021-04-15 21:40:48 +08:00
miaomiaomiao-LJY 080136ba6f ADD
# Add model.Net2:
#     Implement Net2 model
#     Add debugging capabilities
#     Test Net2 model

# Update model.Net2:
#     Modify partial comments
2021-04-15 13:19:46 +08:00
miaomiaomiao-LJY 4664efbd99 UPDATE
# Update train.train_net1:
#     Add checkpoint and save function to training model incoherent
#     Add a simple logging feature
#     Detail training log content, add time calculation
#     Add a function to calculate the accuracy of the model
#     Encapsulated model loss calculation and accuracy calculation

# Update hparams:
#     Add Net1 training parameters: checkpoint path, model save steps

# Update model.Net1:
#     The encapsulated functions (loss calculation and accuracy calculation) are moved into this module
2021-04-14 20:25:48 +08:00
miaomiaomiao-LJY 16f5eb68ac ADD
# Add train.train_net1:
#     Add the main function for Net1 model training
#     Add the parameter Settings required for training
#     The training function of implementing NET1 model training: loading data, calculating model, calculating loss, reverse transfer, printing log, etc
#     Add a debug scheme for NET1 model training
#     Test the training function of the NET1 model
2021-04-13 17:54:57 +08:00
miaomiaomiao-LJY 4a80127ef2 UPDATE
# Updated model.Net1:
#     Optimize the parameter names in Net1
#     Turn off debug mode

# Updated model.modules:
#     Fixed a bug in the Conv1dBanks model where the Conv1dNorm was not defined in __init__
#     Fixed bug of GRU module in CBHG model in multi-GPU training mode

# Updated hparams:
#     Fixed bug with dynamic path of TIMIT dataset
#     Add default parameters for the Net1 model
#     Add default parameters for the Net1 training
2021-04-13 17:49:24 +08:00
miaomiaomiao-LJY bfdeff5f90 update
# Updated model.Net1:
#     Implement Net1 module using model.modules
#     Test Net1 functionality

# Updated model.modules:
#     Optimize the details of the model.modules

# Updated hparams:
#     Add train_logits_temperature, phns_len and other settings
2021-04-13 12:32:32 +08:00
miaomiaomiao-LJY 250b0dc1fd update
# Updated model.modules:
#     Fixed bugs in Conv1dBanks module
#     Optimized the debugging scheme
#     Implement the CBHG module
2021-04-13 10:53:08 +08:00
miaomiaomiao-LJY 2194cdc1f3 update
# Updated model. Modules:
#     Fixed bugs in PreNet and HighwayNet modules
#     Added and implemented Conv1dNorm and Conv1dBanks modules and optimized for the shape of the data
#     Test each module, optimize the debugging function of each module
#     Add annotations for the shape of the Tensor
#     Adding and preliminary implementation of CBHG module, which needs to be further completed
2021-04-12 22:35:40 +08:00
miaomiaomiao-LJY 7cadeb00e7 ADD
# Add model module:
#     Add the Net1 model interface

# Add a module group:
#     Implement the PreNet network model structure
#     Implement the HighwayNet network model structure
2021-04-12 10:19:58 +08:00
miaomiaomiao-LJY b71c729a97 UPDATE
# Update the Net1DataLoader module:
#     Implement the Net1DataSet data loader

# Update the hparams module:
#     Add net1 train batch_size, num_workers
2021-04-11 16:36:05 +08:00
miaomiaomiao-LJY 872626bc57 UPDATE
# Update the audio operation module:
#     Add an instant clipping function
#     Add phones, and a phones dictionary generation method
#     Optimize debugging of the "_get_mfcc_and_spec" function
#     Implement "get_mfccs_and_phones" function
#     Implement "get_mfccs_and_spectrogram" function

# Update the hparams module:
#     Add TIMIT default duration
2021-04-11 14:20:19 +08:00
miaomiaomiao-LJY 4821939763 ADD
# Add super parameter module:
#    Preliminarily set the TIMIT dataset parameters
#    Preliminarily set the training parameters of net 1
2021-04-11 00:04:32 +08:00
miaomiaomiao-LJY cd2b668870 ADD
# Add audio operation module:
#     Add audio reading function
#     Add amplitude spectrogram, DB - Scaled spectrogram conversion module
#     Preliminary implementation from audio access to MFCC, MEL, MAG
2021-04-11 00:03:32 +08:00
miaomiaomiao-LJY aaf51ceac8 ADD
# Add Net 1 Data Loader:
#     Preliminary implementation of net 1 dataset
2021-04-10 23:59:58 +08:00