To use an evaluator, you need to:
  1. Set up your environment.
  2. Download examples.
  3. Work through the tutorial.
  4. Build it into your app or process.

Requirements

We rely on the Python interpreter to power the evaluators. All examples and tutorials are provided as Python code snippets.

Set up on Mac/Linux

Run an evaluator

You are now ready to run the evaluator examples, like this Sentence Structure Evaluator. We recommend using a Jupyter Notebook for interactive exploration.
  1. Start Jupyter Notebook:
jupyter lab
Jupyter will open in your web browser (usually at http://localhost:8888).
  1. Create a new notebook by clicking the “Notebook: Python 3 (ipykernel)” tile in the Jupyter Lab launcher. Alternatively, navigate to the menu and select File > New > Notebook > Python 3 (ipykernel).
  2. You can now copy the code from our Python examples into the cells of your new notebook to run an evaluator. If you prefer using an IDE with Python and Jupyter notebook support, such as VSCode with Microsoft’s Python and Jupyter extensions, please refer to Microsoft’s instructions for their installation and configuration.