Tuesday, 22 September 2009

Meeting with Peng on 22/09

Main progress:
  1. Peng has passed his 1st review and get feedback.
  2. Peng has successfully installed Wang's code
  3. Peng has tried the demo in Wang's code
Agreed step:
  1. look into the code and understand it
  2. collect sound sample for variant sound type

6 comments:

  1. I run the run_training([0,50],'testoutput') for a long time today, finally it appears that:

    ??? Error using ==> reshape
    Size arguments must be real integers.

    Error in ==> training at 22
    P=reshape(P,max_channel,length(P)/max_channel);

    Error in ==> run_training at 112
    training('ITD', 'IID', 'RATIO', Az, namefile_configuration)

    ReplyDelete
  2. put a debug stop at the line 22 in training.m file. Then run the code run_training([0,50],'testoutput') again.
    the code will stop at this point, check the value of p, max_channel

    You can speed up the processing by change the common.h file. replace corresponding line with following line

    #define MAX_CHANNEL 64 /* maxmimum number of filters */

    ReplyDelete
  3. I followed what you said, but it appears that


    ??? Error using ==> reshape
    Size arguments must be real integers.

    Error in ==> training at 23
    L=load(namefile_IID);L=reshape(L,max_channel,length(L)/max_channel);

    Error in ==> run_training at 112
    training('ITD', 'IID', 'RATIO', Az, namefile_configuration)

    ReplyDelete
  4. you focus on the literature review first and finish it before next meeting. Let me check the code.

    ReplyDelete
  5. in the training.m file, change line 22 to 24 to:
    P=reshape(P,max_channel,round(length(P)/max_channel));
    L=load(namefile_IID);L=reshape(L,max_channel,round(length(L)/max_channel));
    R=load(namefile_Ratio);R=reshape(R,max_channel,round(length(R)/max_channel));

    let me know the results.

    ReplyDelete
  6. This time it appears that

    ??? Error using ==> reshape
    To RESHAPE the number of elements must not change.

    Error in ==> training at 22
    P=reshape(P,max_channel,round(length(P)/max_channel));

    Error in ==> run_training at 112
    training('ITD', 'IID', 'RATIO', Az, namefile_configuration)

    ReplyDelete