blob: d1f030d12b29d1a1301f972d2755d51cd71a742a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _LAZY_H_
#define _LAZY_H_
#include "weights.h"
#include <vector>
class Hypergraph;
void PassToLazy(const char *model_file, const std::vector<weight_t> &weights, const Hypergraph &hg);
#endif // _LAZY_H_
|