darknet/src/rnn.c

241 lines
6.8 KiB
C
Raw Normal View History

2016-01-28 23:30:38 +03:00
#include "network.h"
#include "cost_layer.h"
#include "utils.h"
2016-05-07 02:25:16 +03:00
#include "blas.h"
2016-01-28 23:30:38 +03:00
#include "parser.h"
#ifdef OPENCV
#include "opencv2/highgui/highgui_c.h"
#endif
typedef struct {
float *x;
float *y;
} float_pair;
2016-05-07 02:25:16 +03:00
float_pair get_rnn_data(unsigned char *text, size_t *offsets, int characters, size_t len, int batch, int steps)
2016-01-28 23:30:38 +03:00
{
2016-02-05 11:15:12 +03:00
float *x = calloc(batch * steps * characters, sizeof(float));
float *y = calloc(batch * steps * characters, sizeof(float));
2016-01-28 23:30:38 +03:00
int i,j;
for(i = 0; i < batch; ++i){
for(j = 0; j < steps; ++j){
2016-05-07 02:25:16 +03:00
unsigned char curr = text[(offsets[i])%len];
unsigned char next = text[(offsets[i] + 1)%len];
x[(j*batch + i)*characters + curr] = 1;
y[(j*batch + i)*characters + next] = 1;
2016-02-05 11:15:12 +03:00
2016-05-07 02:25:16 +03:00
offsets[i] = (offsets[i] + 1) % len;
if(curr > 255 || curr <= 0 || next > 255 || next <= 0){
/*text[(index+j+2)%len] = 0;
printf("%ld %d %d %d %d\n", index, j, len, (int)text[index+j], (int)text[index+j+1]);
2016-02-05 11:15:12 +03:00
printf("%s", text+index);
2016-05-07 02:25:16 +03:00
*/
2016-02-05 11:15:12 +03:00
error("Bad char");
}
2016-01-28 23:30:38 +03:00
}
}
float_pair p;
p.x = x;
p.y = y;
return p;
}
2016-05-07 02:25:16 +03:00
void reset_rnn_state(network net, int b)
2016-01-28 23:30:38 +03:00
{
2016-05-07 02:25:16 +03:00
int i;
for (i = 0; i < net.n; ++i) {
layer l = net.layers[i];
#ifdef GPU
if(l.state_gpu){
fill_ongpu(l.outputs, 0, l.state_gpu + l.outputs*b, 1);
}
#endif
}
}
void train_char_rnn(char *cfgfile, char *weightfile, char *filename, int clear)
{
srand(time(0));
data_seed = time(0);
2016-02-05 11:15:12 +03:00
FILE *fp = fopen(filename, "rb");
2016-01-28 23:30:38 +03:00
fseek(fp, 0, SEEK_END);
size_t size = ftell(fp);
fseek(fp, 0, SEEK_SET);
2016-02-05 11:15:12 +03:00
unsigned char *text = calloc(size+1, sizeof(char));
2016-01-28 23:30:38 +03:00
fread(text, 1, size, fp);
fclose(fp);
char *backup_directory = "/home/pjreddie/backup/";
char *base = basecfg(cfgfile);
2016-02-01 02:52:03 +03:00
fprintf(stderr, "%s\n", base);
2016-01-28 23:30:38 +03:00
float avg_loss = -1;
network net = parse_network_cfg(cfgfile);
if(weightfile){
load_weights(&net, weightfile);
}
2016-05-07 02:25:16 +03:00
2016-02-05 11:15:12 +03:00
int inputs = get_network_input_size(net);
2016-02-01 02:52:03 +03:00
fprintf(stderr, "Learning Rate: %g, Momentum: %g, Decay: %g\n", net.learning_rate, net.momentum, net.decay);
2016-01-28 23:30:38 +03:00
int batch = net.batch;
int steps = net.time_steps;
2016-05-07 02:25:16 +03:00
if(clear) *net.seen = 0;
2016-01-28 23:30:38 +03:00
int i = (*net.seen)/net.batch;
2016-05-07 02:25:16 +03:00
int streams = batch/steps;
size_t *offsets = calloc(streams, sizeof(size_t));
int j;
for(j = 0; j < streams; ++j){
offsets[j] = rand_size_t()%size;
}
2016-01-28 23:30:38 +03:00
clock_t time;
while(get_current_batch(net) < net.max_batches){
i += 1;
time=clock();
2016-05-07 02:25:16 +03:00
float_pair p = get_rnn_data(text, offsets, inputs, size, streams, steps);
2016-01-28 23:30:38 +03:00
float loss = train_network_datum(net, p.x, p.y) / (batch);
free(p.x);
free(p.y);
if (avg_loss < 0) avg_loss = loss;
avg_loss = avg_loss*.9 + loss*.1;
2016-05-07 02:25:16 +03:00
int chars = get_current_batch(net)*batch;
fprintf(stderr, "%d: %f, %f avg, %f rate, %lf seconds, %f epochs\n", i, loss, avg_loss, get_current_rate(net), sec(clock()-time), (float) chars/size);
for(j = 0; j < streams; ++j){
//printf("%d\n", j);
if(rand()%10 == 0){
//fprintf(stderr, "Reset\n");
offsets[j] = rand_size_t()%size;
reset_rnn_state(net, j);
}
}
2016-01-28 23:30:38 +03:00
if(i%100==0){
char buff[256];
sprintf(buff, "%s/%s_%d.weights", backup_directory, base, i);
save_weights(net, buff);
}
if(i%10==0){
char buff[256];
sprintf(buff, "%s/%s.backup", backup_directory, base);
save_weights(net, buff);
}
}
char buff[256];
sprintf(buff, "%s/%s_final.weights", backup_directory, base);
save_weights(net, buff);
}
void test_char_rnn(char *cfgfile, char *weightfile, int num, char *seed, float temp, int rseed)
{
srand(rseed);
char *base = basecfg(cfgfile);
2016-02-01 02:52:03 +03:00
fprintf(stderr, "%s\n", base);
2016-01-28 23:30:38 +03:00
network net = parse_network_cfg(cfgfile);
if(weightfile){
load_weights(&net, weightfile);
}
2016-02-05 11:15:12 +03:00
int inputs = get_network_input_size(net);
2016-01-28 23:30:38 +03:00
int i, j;
for(i = 0; i < net.n; ++i) net.layers[i].temperature = temp;
2016-02-05 11:15:12 +03:00
unsigned char c;
2016-01-28 23:30:38 +03:00
int len = strlen(seed);
2016-02-05 11:15:12 +03:00
float *input = calloc(inputs, sizeof(float));
2016-05-07 02:25:16 +03:00
/*
fill_cpu(inputs, 0, input, 1);
for(i = 0; i < 10; ++i){
network_predict(net, input);
}
fill_cpu(inputs, 0, input, 1);
*/
2016-01-28 23:30:38 +03:00
for(i = 0; i < len-1; ++i){
c = seed[i];
input[(int)c] = 1;
network_predict(net, input);
input[(int)c] = 0;
printf("%c", c);
}
c = seed[len-1];
for(i = 0; i < num; ++i){
printf("%c", c);
input[(int)c] = 1;
float *out = network_predict(net, input);
input[(int)c] = 0;
2016-05-07 02:25:16 +03:00
for(j = 32; j < 127; ++j){
//printf("%d %c %f\n",j, j, out[j]);
}
2016-02-05 11:15:12 +03:00
for(j = 0; j < inputs; ++j){
2016-05-07 02:25:16 +03:00
//if (out[j] < .0001) out[j] = 0;
2016-01-28 23:30:38 +03:00
}
2016-05-07 02:25:16 +03:00
c = sample_array(out, inputs);
2016-01-28 23:30:38 +03:00
}
printf("\n");
}
2016-02-05 11:15:12 +03:00
void valid_char_rnn(char *cfgfile, char *weightfile)
2016-02-01 02:52:03 +03:00
{
char *base = basecfg(cfgfile);
fprintf(stderr, "%s\n", base);
network net = parse_network_cfg(cfgfile);
if(weightfile){
load_weights(&net, weightfile);
}
2016-02-05 11:15:12 +03:00
int inputs = get_network_input_size(net);
int count = 0;
int c;
float *input = calloc(inputs, sizeof(float));
2016-05-07 02:25:16 +03:00
int i;
for(i = 0; i < 100; ++i){
network_predict(net, input);
}
2016-02-01 02:52:03 +03:00
float sum = 0;
2016-02-05 11:15:12 +03:00
c = getc(stdin);
float log2 = log(2);
while(c != EOF){
int next = getc(stdin);
2016-05-07 02:25:16 +03:00
if(next < 0 || next >= 255) error("Out of range character");
2016-02-05 11:15:12 +03:00
if(next == EOF) break;
++count;
input[c] = 1;
2016-02-01 02:52:03 +03:00
float *out = network_predict(net, input);
2016-02-05 11:15:12 +03:00
input[c] = 0;
sum += log(out[next])/log2;
c = next;
2016-05-07 02:25:16 +03:00
printf("%d Perplexity: %f\n", count, pow(2, -sum/count));
2016-02-01 02:52:03 +03:00
}
}
2016-01-28 23:30:38 +03:00
void run_char_rnn(int argc, char **argv)
{
if(argc < 4){
fprintf(stderr, "usage: %s %s [train/test/valid] [cfg] [weights (optional)]\n", argv[0], argv[1]);
return;
}
char *filename = find_char_arg(argc, argv, "-file", "data/shakespeare.txt");
char *seed = find_char_arg(argc, argv, "-seed", "\n");
2016-02-05 11:15:12 +03:00
int len = find_int_arg(argc, argv, "-len", 1000);
float temp = find_float_arg(argc, argv, "-temp", .7);
2016-01-28 23:30:38 +03:00
int rseed = find_int_arg(argc, argv, "-srand", time(0));
2016-05-07 02:25:16 +03:00
int clear = find_arg(argc, argv, "-clear");
2016-01-28 23:30:38 +03:00
char *cfg = argv[3];
char *weights = (argc > 4) ? argv[4] : 0;
2016-05-07 02:25:16 +03:00
if(0==strcmp(argv[2], "train")) train_char_rnn(cfg, weights, filename, clear);
2016-02-05 11:15:12 +03:00
else if(0==strcmp(argv[2], "valid")) valid_char_rnn(cfg, weights);
2016-02-05 23:56:18 +03:00
else if(0==strcmp(argv[2], "generate")) test_char_rnn(cfg, weights, len, seed, temp, rseed);
2016-01-28 23:30:38 +03:00
}