Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in the doc #8

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion script-docs/guide/local-evaluation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ We can now launch the evaluation run:

.. code-block:: python

eval_run = evaluation = hub.evaluate(
eval_run = hub.evaluate(
model=my_local_bot,
dataset=dataset_id,
# optionally, specify a name
Expand Down
4 changes: 2 additions & 2 deletions script-docs/guide/run-evaluations.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ We can now launch the evaluation run:

.. code-block:: python

eval_run = evaluation = hub.evaluate(
eval_run = hub.evaluate(
model=model.id,
dataset=dataset_id
# optionally, specify a name
name="staging-build-a4f321",
)


The evaluation run will be queued and processed by the Hub. The ``evalute``
The evaluation run will be queued and processed by the Hub. The ``evaluate``
method will immediately return an :class:`~giskard_hub.data.EvaluationRun` object
while the evaluation is running. Note however that this object will not contain
the evaluation results until the evaluation is completed.
Expand Down
2 changes: 1 addition & 1 deletion script-docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ If all is working well, this will return something like
Run a remote evaluation
-----------------------

We can now lunch a remote evaluation of our model!
We can now launch a remote evaluation of our model!

.. code-block:: python

Expand Down