From 501484c06e69c5d930e01530080ed8c6c4999335 Mon Sep 17 00:00:00 2001 From: Samet Date: Fri, 10 Mar 2023 14:35:57 +0000 Subject: [PATCH 1/2] Fix metadata path --- notebooks/000_getting_started/001_getting_started.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notebooks/000_getting_started/001_getting_started.ipynb b/notebooks/000_getting_started/001_getting_started.ipynb index a138552892..b40519ace9 100644 --- a/notebooks/000_getting_started/001_getting_started.ipynb +++ b/notebooks/000_getting_started/001_getting_started.ipynb @@ -434,7 +434,7 @@ ], "source": [ "openvino_model_path = output_path / \"openvino\" / \"model.bin\"\n", - "metadata_path = output_path / \"openvino\" / \"meta_data.json\"\n", + "metadata_path = output_path / \"openvino\" / \"metadata.json\"\n", "print(openvino_model_path.exists(), metadata_path.exists())" ] }, From dadff4355a807b56ba5cafba1d80e6e2e68defe7 Mon Sep 17 00:00:00 2001 From: Samet Date: Thu, 3 Aug 2023 11:23:37 +0100 Subject: [PATCH 2/2] Add readthedocs.yaml --- .readthedocs.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .readthedocs.yaml diff --git a/.readthedocs.yaml b/.readthedocs.yaml new file mode 100644 index 0000000000..f0e299c8e3 --- /dev/null +++ b/.readthedocs.yaml @@ -0,0 +1,32 @@ +# Required +version: 2 + +# Set the OS, Python version and other tools you might need +build: + os: ubuntu-22.04 + tools: + python: "3.11" + # You can also specify other tool versions: + # nodejs: "20" + # rust: "1.70" + # golang: "1.20" + +# Build documentation in the "docs/" directory with Sphinx +sphinx: + configuration: docs/source/conf.py + # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs + # builder: "dirhtml" + # Fail on all warnings to avoid broken references + # fail_on_warning: true + +# Optionally build your docs in additional formats such as PDF and ePub +formats: + - pdf + - epub + +# Optional but recommended, declare the Python requirements required +# to build your documentation +# See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html +python: + install: + - requirements: requirements/docs.txt