競合学習

  以下,複数のファイル構成になっています.ファイル間の区切りを「---・・・」で示します.このプログラム例においては,ヘッダファイル MT.h に記述されたメルセンヌ・ツイスタを使用していまが,C++11 で記述可能であれば,標準ライブラリ内に含まれているメルセンヌ・ツイスタ法を使用した乱数生成関数を利用できます.

------------------------入力ファイル--------------
最大試行回数 1000 入力セルの数 9 出力セルの数 3 訓練例の数 9
乱数 123 係数(0~1) 0.1
入力データファイル pat.dat

------------------------pat.dat-------------------
0 0 0 0 0 0 0 1 1
0 0 0 0 0 0 1 0 1
0 0 0 0 0 0 1 1 0
0 0 0 0 1 1 0 0 0
0 0 0 1 0 1 0 0 0
0 0 0 1 1 0 0 0 0
0 1 1 0 0 0 0 0 0
1 0 1 0 0 0 0 0 0
1 1 0 0 0 0 0 0 0

------------------------competition.h-------------
/***************************/
/* Competitionクラスの定義 */
/***************************/
class Competition {
		long max;   // 最大学習回数
		long n;   // 訓練例の数
		long o;   // 出力セルの数
		long p;   // 入力セルの数
		long **E;   // 訓練例
		double **W;   // 重み
		double sig;   // 重み修正係数
	public:
		Competition(long, long, long, long, long, double);
		~Competition();
		void Input(char *);
		void Learn(int, char *name = "");
};

------------------------constructor---------------
/******************/
/* コンストラクタ */
/******************/
#include <stdlib.h>
#include "competition.h"
#include "MT.h"

Competition::Competition(long max_i, long n_i, long o_i, long p_i, long seed, double sig_i)
{
	long i1;
/*
     設定
*/
	sig = sig_i;
	max = max_i;
	n   = n_i;
	o   = o_i;
	p   = p_i;

	init_genrand(seed);
/*
     領域の確保
*/
	E = new long * [n];
	for (i1 = 0; i1 < n; i1++)
		E[i1] = new long [p];

	W = new double * [o];
	for (i1 = 0; i1 < o; i1++)
		W[i1]   = new double [p];
}

------------------------destructor----------------
/****************/
/* デストラクタ */
/****************/
#include "competition.h"

Competition::~Competition()
{
	int i1;

	for (i1 = 0; i1 < n; i1++)
		delete [] E[i1];
	delete [] E;

	for (i1 = 0; i1 < o; i1++)
		delete [] W[i1];
	delete [] W;
}

------------------------Input.cpp-----------------
/**************************/
/* 学習データの読み込み   */
/*      name : ファイル名 */
/**************************/
#include <stdio.h>
#include "competition.h"

void Competition::Input(char *name)
{
	long i1, i2;
	FILE *st;

	st = fopen(name, "r");

	for (i1 = 0; i1 < n; i1++) {
		for (i2 = 0; i2 < p; i2++)
			fscanf(st, "%ld", &E[i1][i2]);
	}

	fclose(st);
}

------------------------Learn.cpp-----------------
/*********************************/
/* 学習と結果の出力              */
/*      pr : =0 : 画面に出力     */
/*           =1 : ファイルに出力 */
/*      name : 出力ファイル名    */
/*********************************/
#include <stdlib.h>
#include <stdio.h>
#include "competition.h"
#include "MT.h"

void Competition::Learn(int pr, char *name)
{
	double mx_v = 0.0, s, sum;
	long count, i1, i2, i3, k, mx = 0;
	FILE *out;

/*
     初期設定
*/
	for (i1 = 0; i1 < o; i1++) {
		sum = 0.0;
		for (i2 = 0; i2 < p; i2++) {
			W[i1][i2]  = genrand_real3();
			sum       += W[i1][i2];
		}
		sum = 1.0 / sum;
		for (i2 = 0; i2 < p; i2++)
			W[i1][i2] *= sum;
	}
/*
     学習
*/
	for (count = 0; count < max; count++) {
					// 訓練例の選択
		k = (long)(genrand_real3() * n);
		if (k >= n)
			k = n - 1;
					// 出力の計算
		for (i1 = 0; i1 < o; i1++) {
			s = 0.0;
			for (i2 = 0; i2 < p; i2++)
				s += W[i1][i2] * E[k][i2];
			if (i1 == 0 || s > mx_v) {
				mx   = i1;
				mx_v = s;
			}
		}
					// 重みの修正
		sum = 0.0;
		for (i1 = 0; i1 < p; i1++)
			sum += E[k][i1];
		for (i1 = 0; i1 < p; i1++)
			W[mx][i1] += sig * (E[k][i1] / sum - W[mx][i1]);
	}
/*
     出力
*/
	if (pr == 0)
		out = stdout;
	else
		out = fopen(name, "w");

	fprintf(out, "分類結果\n");
	for (i1 = 0; i1 < n; i1++) {
		for (i2 = 0; i2 < p; i2++)
			fprintf(out, "%2ld", E[i1][i2]);
		fprintf(out, " Res ");
		for (i2 = 0; i2 < o; i2++) {
			s = 0.0;
			for (i3 = 0; i3 < p; i3++)
	            s += W[i2][i3] * E[i1][i3];
			if (i2 == 0 || s > mx_v) {
				mx   = i2;
				mx_v = s;
			}
		}
		fprintf(out, "%3ld\n", mx+1);
	}
}

------------------------main----------------------
/****************************/
/* 競合学習                 */
/*      coded by Y.Suganuma */
/****************************/
#include <stdio.h>
#include <stdlib.h>
#include "competition.h"

/****************/
/* main program */
/****************/
int main(int argc, char *argv[])
{
	double sig;
	long max, n, p, o, seed;
	char name[100];
	FILE *st;

	if (argc > 1) {
					// 基本データの入力
		st = fopen(argv[1], "r");
		fscanf(st, "%*s %ld %*s %ld %*s %ld %*s %ld",
               &max, &p, &o, &n);
		fscanf(st, "%*s %ld %*s %lf", &seed, &sig);
		fscanf(st, "%*s %s", name);
		fclose(st);
					// ネットワークの定義
		Competition net(max, n, o, p, seed, sig);
		net.Input(name);
					// 学習と結果の出力
		if (argc == 2)
			net.Learn(0);
		else
			net.Learn(1, argv[2]);
	}

	else {
		printf("***error   入力データファイル名を指定して下さい\n");
		exit(1);
	}

	return 0;
}

-----------------------MT.h--------------------

/*
   A C-program for MT19937, with initialization improved 2002/1/26.
   Coded by Takuji Nishimura and Makoto Matsumoto.

   Before using, initialize the state by using init_genrand(seed)  
   or init_by_array(init_key, key_length).

   Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
   All rights reserved.                          

   Redistribution and use in source and binary forms, with or without
   modification, are permitted provided that the following conditions
   are met:

     1. Redistributions of source code must retain the above copyright
        notice, this list of conditions and the following disclaimer.

     2. Redistributions in binary form must reproduce the above copyright
        notice, this list of conditions and the following disclaimer in the
        documentation and/or other materials provided with the distribution.

     3. The names of its contributors may not be used to endorse or promote 
        products derived from this software without specific prior written 
        permission.

   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
   A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
   CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
   EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
   PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
   LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


   Any feedback is very welcome.
   http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
   email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
*/

/*
   The original version of http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/CODES/mt19937ar.c was modified by Takahiro Omi as
   - delete line 47 "#include<stdio.h>"
   - delete line 174 int main(void){...}
   - change N -> MT_N
   - change N -> MT_N
   - change the file name "mt19937ar.c" -> "MT.h"
*/


/* Period parameters */  
#define MT_N 624
#define MT_M 397
#define MATRIX_A 0x9908b0dfUL   /* constant vector a */
#define UPPER_MASK 0x80000000UL /* most significant w-r bits */
#define LOWER_MASK 0x7fffffffUL /* least significant r bits */

static unsigned long mt[MT_N]; /* the array for the state vector  */
static int mti=MT_N+1; /* mti==MT_N+1 means mt[MT_N] is not initialized */

/* initializes mt[MT_N] with a seed */
void init_genrand(unsigned long s)
{
    mt[0]= s & 0xffffffffUL;
    for (mti=1; mti<MT_N; mti++) {
        mt[mti] = 
	    (1812433253UL * (mt[mti-1] ^ (mt[mti-1] >> 30)) + mti); 
        /* See Knuth TAOCP Vol2. 3rd Ed. P.106 for multiplier. */
        /* In the previous versions, MSBs of the seed affect   */
        /* only MSBs of the array mt[].                        */
        /* 2002/01/09 modified by Makoto Matsumoto             */
        mt[mti] &= 0xffffffffUL;
        /* for >32 bit machines */
    }
}

/* initialize by an array with array-length */
/* init_key is the array for initializing keys */
/* key_length is its length */
/* slight change for C++, 2004/2/26 */
void init_by_array(unsigned long init_key[], int key_length)
{
    int i, j, k;
    init_genrand(19650218UL);
    i=1; j=0;
    k = (MT_N>key_length ? MT_N : key_length);
    for (; k; k--) {
        mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1664525UL))
          + init_key[j] + j; /* non linear */
        mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
        i++; j++;
        if (i>=MT_N) { mt[0] = mt[MT_N-1]; i=1; }
        if (j>=key_length) j=0;
    }
    for (k=MT_N-1; k; k--) {
        mt[i] = (mt[i] ^ ((mt[i-1] ^ (mt[i-1] >> 30)) * 1566083941UL))
          - i; /* non linear */
        mt[i] &= 0xffffffffUL; /* for WORDSIZE > 32 machines */
        i++;
        if (i>=MT_N) { mt[0] = mt[MT_N-1]; i=1; }
    }

    mt[0] = 0x80000000UL; /* MSB is 1; assuring non-zero initial array */ 
}

/* generates a random number on [0,0xffffffff]-interval */
unsigned long genrand_int32(void)
{
    unsigned long y;
    static unsigned long mag01[2]={0x0UL, MATRIX_A};
    /* mag01[x] = x * MATRIX_A  for x=0,1 */

    if (mti >= MT_N) { /* generate N words at one time */
        int kk;

        if (mti == MT_N+1)   /* if init_genrand() has not been called, */
            init_genrand(5489UL); /* a default initial seed is used */

        for (kk=0;kk<MT_N-MT_M;kk++) {
            y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
            mt[kk] = mt[kk+MT_M] ^ (y >> 1) ^ mag01[y & 0x1UL];
        }
        for (;kk<MT_N-1;kk++) {
            y = (mt[kk]&UPPER_MASK)|(mt[kk+1]&LOWER_MASK);
            mt[kk] = mt[kk+(MT_M-MT_N)] ^ (y >> 1) ^ mag01[y & 0x1UL];
        }
        y = (mt[MT_N-1]&UPPER_MASK)|(mt[0]&LOWER_MASK);
        mt[MT_N-1] = mt[MT_M-1] ^ (y >> 1) ^ mag01[y & 0x1UL];

        mti = 0;
    }
  
    y = mt[mti++];

    /* Tempering */
    y ^= (y >> 11);
    y ^= (y << 7) & 0x9d2c5680UL;
    y ^= (y << 15) & 0xefc60000UL;
    y ^= (y >> 18);

    return y;
}

/* generates a random number on [0,0x7fffffff]-interval */
long genrand_int31(void)
{
    return (long)(genrand_int32()>>1);
}

/* generates a random number on [0,1]-real-interval */
double genrand_real1(void)
{
    return genrand_int32()*(1.0/4294967295.0); 
    /* divided by 2^32-1 */ 
}

/* generates a random number on [0,1)-real-interval */
double genrand_real2(void)
{
    return genrand_int32()*(1.0/4294967296.0); 
    /* divided by 2^32 */
}

/* generates a random number on (0,1)-real-interval */
double genrand_real3(void)
{
    return (((double)genrand_int32()) + 0.5)*(1.0/4294967296.0); 
    /* divided by 2^32 */
}

/* generates a random number on [0,1) with 53-bit resolution*/
double genrand_res53(void) 
{ 
    unsigned long a=genrand_int32()>>5, b=genrand_int32()>>6; 
    return(a*67108864.0+b)*(1.0/9007199254740992.0); 
} 
/* These real versions are due to Isaku Wada, 2002/01/09 added */

		

  コンパイルした後,

実行可能ファイル名 入力ファイル名 出力ファイル名

と入力してやれば実行できます.出力ファイル名は,結果を出力するファイルの名前であり,省略すると画面に出力されます.また,入力ファイル名は,実行に必要なデータを記述したファイルの名前であり,たとえば以下のような形式で作成します.
最大試行回数 1000 入力セルの数 9 出力セルの数 3 訓練例の数 9
乱数 123 係数(0~1) 0.1
入力データファイル pat.dat		
  日本語で記述した部分(「最大試行回数」,「入力セルの数」等)は,次に続くデータの説明ですのでどのように修正しても構いませんが,削除したり,または,複数の文(間に半角のスペースを入れる)にするようなことはしないでください.各データの意味は以下に示す通りです.

最大試行回数

  学習回数を入力します.この例では 1000 を与えています.

入力セルの数

  入力セル(入力ユニット)の数を入力します.この例では 9 となっています.

出力セルの数

  出力セル(出力ユニット)の数を入力します.この例では 3 となっています.

訓練例の数

  訓練例(分類すべきパターン)の数を入力します(この例では 9 ).訓練例は,「入力データファイル」の項に入力されたファイル(この例では,pat.dat )に記述します.ファイル pat.dat は,たとえば,以下のようになります.各行のデータが一つのパターンに相当しています.
	0 0 0 0 0 0 0 1 1
	0 0 0 0 0 0 1 0 1
	0 0 0 0 0 0 1 1 0
	0 0 0 0 1 1 0 0 0
	0 0 0 1 0 1 0 0 0
	0 0 0 1 1 0 0 0 0
	0 1 1 0 0 0 0 0 0
	1 0 1 0 0 0 0 0 0
	1 1 0 0 0 0 0 0 0			
乱数

  乱数の初期値です.

係数(0~1)

  重みを修正する際の係数です.0 と 1 の間の数値を入力してください(この例では,0.1 )

  上で説明したデータの元で実行すると,たとえば,以下のような出力が得られます.
分類結果
 0 0 0 0 0 0 0 1 1 Res   3
 0 0 0 0 0 0 1 0 1 Res   3
 0 0 0 0 0 0 1 1 0 Res   3
 0 0 0 0 1 1 0 0 0 Res   2
 0 0 0 1 0 1 0 0 0 Res   2
 0 0 0 1 1 0 0 0 0 Res   2
 0 1 1 0 0 0 0 0 0 Res   1
 1 0 1 0 0 0 0 0 0 Res   1
 1 1 0 0 0 0 0 0 0 Res   1		
  各行において,res の後ろに書かれた数値が,その左側に与えられたパターンが分類された結果です.たとえば,2 行目は,パターン「0 0 0 0 0 0 0 1 1」がグループ 3 に分類された(出力ユニットの内,3 番目のユニットの活性度が最も大きくなった)ことを意味しています.