gitextract_bmp43dz6/ ├── .docs/ │ ├── .gitignore │ ├── babel.config.js │ ├── docusaurus.config.ts │ ├── package.json │ ├── plugins/ │ │ └── tailwindcss.ts │ ├── sidebars.ts │ ├── src/ │ │ ├── config/ │ │ │ ├── global.ts │ │ │ └── links.ts │ │ ├── css/ │ │ │ └── custom.css │ │ └── pages/ │ │ └── index.tsx │ ├── static/ │ │ └── .nojekyll │ ├── tailwind.config.js │ └── tsconfig.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── build-deploy.yml ├── CONTRIBUTION.md ├── LICENSE ├── README.md ├── articles/ │ ├── .gitignore │ ├── Chapter_1-Introduction_to_AI/ │ │ ├── Introduction_of_Artificial_Intelligence.md │ │ ├── Introduction_of_Computer_Vision.md │ │ ├── Introduction_of_Convolutional_Neural_Network.md │ │ ├── Introduction_of_Large_Language_Model.md │ │ ├── Introduction_to_Deep_Neural_Network.md │ │ └── index.md │ ├── Chapter_2-Configuring_the_RaspberryPi_Environment/ │ │ ├── Introduction_to_Hailo_in_Raspberry_Pi_Environment.md │ │ ├── Introduction_to_OpenCV.md │ │ ├── Introduction_to_Pytorch_in_Raspberry_Pi_Environment.md │ │ ├── Introduction_to_TensorFlow_in_Raspberry_Pi_Environment.md │ │ ├── Introduction_to_Ultralytics_in_Raspberry_Pi_Environment.md │ │ └── index.md │ ├── Chapter_3-Computer_Vision_Projects_and_Practical_Applications/ │ │ ├── .gitkeep │ │ ├── Accelerating_the_MediaPipe_models_with_Hailo_NPU.md │ │ ├── Make_Your_Own_Web_Application_with_Hailo_and_Using_Flask.md │ │ ├── Run_Clip_Application_with_Hailo_NPU.md │ │ ├── Run_Custom_Models_with_Hailo_NPU.md │ │ ├── Run_Yolov8_on_Hailo_Environment.md │ │ ├── Using_Hailo8_to_accelerate_facial_recognition.md │ │ ├── Using_YOLOv8_and_AI_Box_for_fall_climbing_and_tracking_detection.md │ │ └── index.md │ ├── Chapter_4-Large_Language_Model/ │ │ ├── .gitkeep │ │ ├── Distributed_Inference_of_DeepSeek_model_on_Raspberry_Pi.md │ │ ├── Run_DeepSeek_on_Raspberry_Pi_AI_Box.md │ │ ├── Run_Gemma2_on_RaspberryPi.md │ │ ├── Run_Llama_on_RaspberryPi.md │ │ ├── Run_Multimodal_on_Raspberry.md │ │ ├── Run_Phi3.5_on_Raspberryi.md │ │ ├── Setup_Ollama_on_RaspberryPi.md │ │ ├── Use_Ollama_with_Python.md │ │ └── index.md │ ├── Chapter_5-Custom_Model_Development_and_Deployment/ │ │ ├── .ipynb_checkpoints/ │ │ │ └── Deploy_Your_Model-checkpoint.ipynb │ │ ├── Convert_Your_Model.ipynb │ │ ├── Deploy_Your_Model.ipynb │ │ ├── Training_Your_Model.ipynb │ │ └── index.md │ ├── Chapter_6-RaspberryPi_and_AIoT/ │ │ ├── .gitkeep │ │ ├── A_Simple_Project_with_Ollama.md │ │ ├── Car_Park_Solution_Management_with_Thingsboard.md │ │ ├── DIY_AI_Surveillance_Using_Frigate_NVR_and_Hailo_on_reComputer_with_Home_Assistant.md │ │ ├── Real_time_OCR_with_hailo.md │ │ ├── Retrieval_Augmented_Generation_Project.md │ │ ├── Smart_Retail_with_reComputerR11_and_AIkit.md │ │ ├── hailo_tools.md │ │ └── index.md │ ├── Overview.md │ └── ipynb_template.tpl ├── convert.sh ├── models/ │ ├── Chapter2/ │ │ ├── 2.tflite │ │ ├── best_float16.tflite │ │ ├── coco.txt │ │ └── imagenet-classes.txt │ ├── Chapter3/ │ │ ├── yolov8n_renamed.hef │ │ ├── yolov8n_renamed_cow.hef │ │ └── yolov8n_renamed_licenceplate.hef │ └── Chapter5/ │ ├── best.onnx │ └── yolov8n.hef ├── notebook/ │ ├── Chapter1/ │ │ └── TensorFlow_CNN.ipynb │ └── Chapter2/ │ └── yolov11n_to_convert_tflite.ipynb └── pictures/ ├── Chapter1/ │ └── aiusecases.jfif └── Chapter2/ └── tfkeras.jfif