bin/ebooks in twitter_ebooks-3.0.7 vs bin/ebooks in twitter_ebooks-3.0.8
- old
+ new
@@ -21,11 +21,11 @@
ebooks new <reponame>
ebooks s[tart]
ebooks c[onsole]
ebooks auth
ebooks consume <corpus_path> [corpus_path2] [...]
- ebooks consume-all <corpus_path> [corpus_path2] [...]
+ ebooks consume-all <model_name> <corpus_path> [corpus_path2] [...]
ebooks gen <model_path> [input]
ebooks archive <username> [path]
ebooks tweet <model_path> <botname>
STR
@@ -75,11 +75,11 @@
HELP.consume = <<-STR
Usage: ebooks consume <corpus_path> [corpus_path2] [...]
Processes some number of text files or json tweet corpuses
- into usable models. These will be output at model/<name>.model
+ into usable models. These will be output at model/<corpus_name>.model
STR
def self.consume(pathes)
if pathes.empty?
help :consume
@@ -95,13 +95,13 @@
log "Corpus consumed to #{outpath}"
end
end
HELP.consume_all = <<-STR
- Usage: ebooks consume-all <name> <corpus_path> [corpus_path2] [...]
+ Usage: ebooks consume-all <model_name> <corpus_path> [corpus_path2] [...]
Processes some number of text files or json tweet corpuses
- into one usable model. It will be output at model/<name>.model
+ into one usable model. It will be output at model/<model_name>.model
STR
def self.consume_all(name, paths)
if paths.empty?
help :consume_all