summaryrefslogtreecommitdiff
path: root/docs/documentation.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/documentation.md')
-rw-r--r--docs/documentation.md17
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index 7f8fbf9..d08e313 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -68,6 +68,9 @@ The repository has the following structure:
.
├── dependencies
├── docs
+├── model_conditioning_examples
+├── resources
+├── /resources_downloaded/
├── scripts
│ └── ...
├── source
@@ -77,9 +80,9 @@ The repository has the following structure:
│ │ └── tensorflow-lite-micro
│ └── use_case
│ └── <usecase_name>
-│   ├── include
-│   ├── src
-│   └── usecase.cmake
+│ ├── include
+│ ├── src
+│ └── usecase.cmake
├── tests
│ └── ...
└── CMakeLists.txt
@@ -91,6 +94,14 @@ Where:
- `docs`: contains the documentation for this ML applications.
+- `model_conditioning_examples`: contains short example scripts that demonstrate some methods available in TensorFlow
+ to condition your model in preparation for deployment on Arm Ethos NPU.
+
+- `resources`: contains ML use cases applications resources such as input data, label files, etc.
+
+- `resources_downloaded`: created by `set_up_default_resources.py`, contains downloaded resources for ML use cases
+ applications such as models, test data, etc.
+
- `scripts`: contains build related and source generation scripts.
- `source`: contains C/C++ sources for the platform and ML applications.