How can I change the database and pretrained generator ?
조회 수: 12 (최근 30일)
표시 이전 댓글
I am working on this example
And I tried to change the database from drums to human voice by changing the track from here
%% Load Training Data
% Train a GAN using the Drum Sound Effects dataset [1].
% Download and extract the dataset.
%%
%url = 'http://deepyeti.ucsd.edu/cdonahue/wavegan/data/drums.tar.gz';
downloadFolder = tempdir;
filename = fullfile(downloadFolder,'drums_dataset.tgz');
drumsFolder = fullfile(downloadFolder,'drums');
But every time I change the track it still plays the sound of the drums!!
A colleague suggested to me changing the pretrained generator!!..
%%
% Download the pretrained generator.
matFileName = 'drumGeneratorWeights.mat';
%if ~exist(matFileName,'file')
% websave(matFileName,'https://www.mathworks.com/supportfiles/audio/GanAudioSynthesis/drumGeneratorWeights.mat');
%end
ِِAnd now I am trying to link the relationship between the database and the pretrained generator..
And how do I change the pretrained generator if I need to change it?
And why is the pretrained generator used at the beginning of the example?
I am a beginner in Matlab .. Any information will help me ... Thank you
댓글 수: 0
답변 (1개)
jibrahim
2022년 1월 31일
Hi Aseel,
The example starts off by showcasing the pretrained network. The network was trained to produce drum-like sounds. If you want it to produce other types of sound, you will need to use another dataset and re-train the network. You can go through the 'Train the GAN' section to see how that is done.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!