我不知道如何在地图中设置每个神经元的位置。这是一个神经元和图:

typedef struct _neuron
{
    mfcc_frame *frames;
    char *name;
    double *weights;
    int num_weights;
    int x;
    int y;
} neuron;
typedef struct _map
{
neuron *lattice;
    int latice_size;
    double mapRadius;
    int sideX, sideY;
    int scale;
} map;


如果我有一个以上的单词相等,如何计算模式输入(单词)与我的神经元之间的距离。

我不确定重量。我将权重定义为一个单词的mfcc特征量,但是在训练中,我需要根据神经元之间的距离来更新此权重。我正在使用神经元之间的欧几里得距离。但是怀疑是如何更新权重。这是初始化图和神经元的代码

void init_neuron(neuron *n, int x, int y, mfcc_frame *mfcc_frames, unsigned int n_frames, char *name){

double r;
register int i, j;
n->frames = mfcc_frames;
n->num_weights = n_frames;
n->x = x;
n->y = y;

n->name = malloc (strlen(name) * sizeof(char));
strcpy(n->name, name);
n->weights= malloc (n_frames * sizeof (double));

for(i = 0; i < n_frames; i++)
    for(j = 0; j < N_MFCC; j++)
        n->weights[i] = mfcc_frames[i].features[j];

printf("%s lattice %d, %d\n", n->name, n->x, n->y);


}

初始化图:

map* init_map(int sideX, int sideY, int scale){
register int i, x, y;
char *name = NULL;
void **word_adresses;
unsigned int n = 0, count = 0;
int aux = 0;
word *words = malloc(sizeof(word));

map *_map = malloc(sizeof(map));
_map->latice_size = sideX * sideY;
_map->sideX       = sideX;
_map->sideY       = sideY;
_map->scale       = scale;
_map->lattice     = malloc(_map->latice_size * sizeof(neuron));
mt_seed ();

if ((n = get_list(words))){
    word_adresses = malloc(n * sizeof(void *));
    while (words != NULL){
        x = mt_rand() %sideX;
        y = mt_rand() %sideY;
        printf("y : %d  x: %d\n", y, x);
        init_neuron(_map->lattice + y * sideX + x, x, y, words->frames, words->n, words->name);

        word_adresses[count++] = words;
        words = words->next;
    }
    for (i = 0; i < count; i++)
        free(word_adresses[i]);
    free(word_adresses);
    aux++;
}

return _map;


}

最佳答案

在Kohonen SOM中,权重位于特征空间中,这意味着每个神经元都包含一个原型向量。如果输入是12个MFCC,则每个输入可能看起来像是一个包含12个双精度值的向量,这意味着每个神经元都有12个值,每个MFCC都有一个。给定输入后,您将找到最佳匹配单位,然后根据学习速率将该神经元的12个码本值朝输入矢量移动一小部分。

10-08 07:08