Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test.cu « src - github.com/marian-nmt/marian.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56156fee66bf7a77a5742627d1640468af60035f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49

#include "marian.h"

int main(int argc, char** argv) {

  using namespace marian;
  using namespace keywords;
  
  auto x = input(shape={whatevs, 784}, name="X");
  auto y = input(shape={whatevs, 10}, name="Y");
  
  auto w = param(shape={784, 10}, name="W0");
  auto b = param(shape={1, 10}, name="b0");
  
  auto lr = softmax(dot(x, w) + b, axis=1, name="pred");
  auto graph = -mean(sum(y * log(lr), axis=1), axis=0, name="cost");
  
  Tensor tx({500, 784}, 1);
  Tensor ty({500, 10}, 1);
  
  x = tx;
  y = ty;

  graph.forward(500);
  //std::cerr << graph["pred"].val()[0] << std::endl;
  
  
  //hook0(graph);
  //graph.autodiff();
  //std::cerr << graph["cost"].val()[0] << std::endl;
  //hook1(graph);
  //for(auto p : graph.params()) {
  //  auto update = _1 = _1 - alpha * _2;
  //  Element(update, p.val(), p.grad());
  //}
  //hook2(graph);
  //
  //auto opt = adadelta(cost_function=cost,
  //                    eta=0.9, gamma=0.1,
  //                    set_batch=set,
  //                    before_update=before,
  //                    after_update=after,
  //                    set_valid=valid,
  //                    validation_freq=100,
  //                    verbose=1, epochs=3, early_stopping=10);
  //opt.run();
  
  return 0;
}