From daf9c76c720f784f5491dc686b25769118bc3e8c Mon Sep 17 00:00:00 2001 From: jakopako Date: Sat, 20 Apr 2024 21:58:46 +0200 Subject: [PATCH] updated help text --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8c38406..ebac3c5 100644 --- a/main.go +++ b/main.go @@ -48,7 +48,7 @@ func main() { wordsDir := flag.String("w", "word-lists", "The directory that contains a number of files containing words of different languages. This is needed for the ML part (use with -e or -b).") buildModel := flag.String("t", "", "Train a ML model based on the given csv features file. This will generate 2 files, goskyr.model and goskyr.class") modelPath := flag.String("model", "", "Use a pre-trained ML model to infer names of extracted fields. Works in combination with the -g flag.") - debug := flag.Bool("debug", false, "Set debug mode.") + debug := flag.Bool("debug", false, "Prints debug logs and writes scraped html's to files.") flag.Parse()