docs: add cookbook with practical SATE AI recipes (Issue #42) - #85
Open
assassinaj602 wants to merge 10 commits into
Open
docs: add cookbook with practical SATE AI recipes (Issue #42)#85assassinaj602 wants to merge 10 commits into
assassinaj602 wants to merge 10 commits into
Conversation
- Add docs/cookbook/ directory - Create index.md as landing page - Set up structure for recipe documentation - Part of #42
- Add comprehensive overview of SATE AI cookbook - Include recipe list with brief descriptions - Add navigation links between recipes - Explain prerequisites and setup - Part of #42
- Document testing Llama/Phi/Gemma models for conversational AI - Include code examples for MemoryPressure, MalformedInput, QuantizationDrift - Show expected graceful degradation under memory pressure - Add setup instructions and troubleshooting - Part of #42
- Document testing MobileNet/ResNet models for image classification - Include code examples for ThermalThrottle, Latency, ModelSwap - Show expected behavior during CPU throttling - Add performance benchmarks and visualization tips - Part of #42
- Document testing on-device speech recognition models - Include code examples for MalformedInput, Latency, ConfidenceThreshold - Show input validation and confidence handling - Add audio preprocessing tips - Part of #42
- Document using OnnxAdapter with real ONNX models - Include loading models from assets and running stress tests - Show all injectors working with ONNX models - Add ONNX-specific configuration tips - Part of #42
- Document using TFLiteAdapter with real TFLite models - Include loading from assets and stress testing - Show all injectors working with TFLite models - Add TFLite delegate configuration notes - Part of #42
- Add Cookbook section to main README - Include brief description and link to docs/cookbook/ - Highlight practical use cases covered - Improve documentation discoverability - Part of #42
- Add common setup guide for all recipes - Include reusable code snippets and utilities - Add sample model loading functions - Create examples directory with helper scripts - Part of #42
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Adds a practical SATE AI cookbook with comprehensive recipes and integration guides for testing on-device AI models.
Related Issue
Closes #42
Changes
New Documentation & Recipes
docs/cookbook/index.md&docs/cookbook/README.mddocs/cookbook/recipe-1-chatbot-testing.md) - Llama/Phi/Gemma under KV-cache memory pressure & bad promptsdocs/cookbook/recipe-2-image-classifier-testing.md) - MobileNet/ResNet under thermal throttling & latency delaysdocs/cookbook/recipe-3-speech-to-text-testing.md) - Audio buffer framing & confidence thresholdsdocs/cookbook/recipe-4-onnx-runtime-testing.md) - Asset validation, dynamic shapes & OnnxAdapterdocs/cookbook/recipe-5-tflite-testing.md) - Quantization drift & GPU delegate fallbackdocs/cookbook/common-setup.md&docs/cookbook/examples/cookbook_helper.dartdocs/cookbook/integration-guide.md&docs/cookbook/SUMMARY.mdPR Checklist