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)`