summary refs log tree commit diff stats
path: root/generator/generator.h
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2022-12-09 16:53:33 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2022-12-09 16:53:33 -0500
commit06e4672540094a851542b47abaf022f934b63b09 (patch)
tree5333fb4446fce0043600f7d06427dd243a15c543 /generator/generator.h
parentf2731325f551c4cfea861e2e31d214936b9bd619 (diff)
downloadverbly-06e4672540094a851542b47abaf022f934b63b09.tar.gz
verbly-06e4672540094a851542b47abaf022f934b63b09.tar.bz2
verbly-06e4672540094a851542b47abaf022f934b63b09.zip
Generator now splits ImageNet list into per-notion files
Diffstat (limited to 'generator/generator.h')
-rw-r--r--generator/generator.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/generator/generator.h b/generator/generator.h index 70f0657..3d51c35 100644 --- a/generator/generator.h +++ b/generator/generator.h
@@ -9,6 +9,7 @@
9#include <set> 9#include <set>
10#include <libxml/parser.h> 10#include <libxml/parser.h>
11#include <hkutil/database.h> 11#include <hkutil/database.h>
12#include <filesystem>
12#include "notion.h" 13#include "notion.h"
13#include "word.h" 14#include "word.h"
14#include "lemma.h" 15#include "lemma.h"
@@ -34,7 +35,8 @@ namespace verbly {
34 std::string wordNetPath, 35 std::string wordNetPath,
35 std::string cmudictPath, 36 std::string cmudictPath,
36 std::string imageNetPath, 37 std::string imageNetPath,
37 std::string outputPath); 38 std::string outputPath,
39 std::string imageNetOutput);
38 40
39 // Action 41 // Action
40 42
@@ -127,6 +129,7 @@ namespace verbly {
127 // Output 129 // Output
128 130
129 hatkirby::database db_; 131 hatkirby::database db_;
132 std::filesystem::path imageNetOutput_;
130 133
131 // Data 134 // Data
132 135