From 75bae768b642de122280b1583a901000d7dd0ce1 Mon Sep 17 00:00:00 2001 From: kj7rrv Date: Sat, 2 Apr 2022 11:11:04 -0700 Subject: [PATCH] Update 'README.md' --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1176443..45f01fb 100644 --- a/README.md +++ b/README.md @@ -6,21 +6,21 @@ GPTC provides both a CLI tool and a Python library. ## CLI Tool ### Classifying text - `python -m gptc ` + python -m gptc This will prompt for a string and classify it, outputting the category on stdout (or "None" if it cannot determine anything). Alternatively, if you need confidence data, use: - `python -m gptc -j ` + python -m gptc -j This will print (in JSON) a dict of the format `{category: probability, category:probability, ...}` to stdout. ### Compiling models - gptc -c|--compile + python -m gptc -c|--compile ## Library ### `gptc.Classifier(model)`