Minor docs fixes

This commit is contained in:
Andras Schmelczer 2022-07-16 15:35:46 +02:00
parent 0dd5b6e8f4
commit adcd300fa4
No known key found for this signature in database
GPG key ID: 39260B5B0614A13E
5 changed files with 29 additions and 28 deletions

View file

@ -1,4 +1,5 @@
"""GreatAI.""" """Transform your prototype AI code into production-ready software."""
__version__ = "0.1.6" __version__ = "0.1.6"

View file

@ -34,7 +34,7 @@ def evaluate_ranking(
`expected`) `expected`)
title: Title of the plot. title: Title of the plot.
disable_interpolation: Do not interpolate. disable_interpolation: Do not interpolate.
axes: Matplotlib axes for ploting inside a subplot. axes: Matplotlib axes for plotting inside a subplot.
output_svg: If specified, save the chart as an svg to the given Path. output_svg: If specified, save the chart as an svg to the given Path.
reverse_order: Reverse the ranking specified by `expected`. reverse_order: Reverse the ranking specified by `expected`.
plot: Display a plot on the screen. plot: Display a plot on the screen.

View file

@ -91,7 +91,7 @@ def parallel_map(
or ignored. or ignored.
The new processes are forked if the OS allows it, otherwise, new Python processes The new processes are forked if the OS allows it, otherwise, new Python processes
are bootstrapped which can incur some start-sup cost. Each process processes a single are bootstrapped which can incur some start-up cost. Each process processes a single
chunk at once. chunk at once.
Examples: Examples:

View file

@ -6,7 +6,7 @@ repo_url: https://github.com/schmelczer/great-ai
repo_name: schmelczer/great-ai repo_name: schmelczer/great-ai
edit_uri: edit/main/docs/ edit_uri: edit/main/docs/
copyright: GNU General Public License v3 copyright: GNU General Public License v3
extra: extra:
generator: false generator: false
@ -22,7 +22,7 @@ extra:
name: great-ai on DockerHub name: great-ai on DockerHub
- icon: fontawesome/brands/python - icon: fontawesome/brands/python
link: https://pypi.org/project/great-ai link: https://pypi.org/project/great-ai
name: great-ai on PyPI name: great-ai on PyPI
theme: theme:
name: "material" name: "material"
@ -48,8 +48,8 @@ theme:
name: Switch to light mode name: Switch to light mode
watch: watch:
- docs - docs
- mkdocs.yaml - mkdocs.yaml
plugins: plugins:
- git-revision-date-localized: - git-revision-date-localized:
@ -89,27 +89,27 @@ markdown_extensions:
nav: nav:
- Overview: index.md - Overview: index.md
- Tutorial: - Tutorial:
- Tutorial overview: tutorial/index.md - Tutorial overview: tutorial/index.md
- tutorial/train.ipynb - tutorial/train.ipynb
- tutorial/deploy.ipynb - tutorial/deploy.ipynb
- User Guides: - User Guides:
- how-to-guides/install.md - how-to-guides/install.md
- how-to-guides/create-service.md - how-to-guides/create-service.md
- how-to-guides/configure-service.md - how-to-guides/configure-service.md
- how-to-guides/use-service.md - how-to-guides/use-service.md
- how-to-guides/handle-training-data.md - how-to-guides/handle-training-data.md
- how-to-guides/large_file.md - how-to-guides/large-file.md
- how-to-guides/call-remote.md - how-to-guides/call-remote.md
- Reference: - Reference:
- reference/index.md - reference/index.md
- reference/utilities.md - reference/utilities.md
- reference/large-file.md - reference/large-file.md
- reference/views.md - reference/views.md
- Examples: - Examples:
- Explainable Naive Bayes: - Explainable Naive Bayes:
- examples/simple/data.ipynb - examples/simple/data.ipynb
- examples/simple/train.ipynb - examples/simple/train.ipynb
- examples/simple/deploy.ipynb - examples/simple/deploy.ipynb
- Explainable SciBERT: examples/scibert.md - Explainable SciBERT: examples/scibert.md
- explanation.md - explanation.md