AI Agent Hub

Blog

In-depth articles on AI agents, LLM engineering, servers, Python and software development.

📝
SSD Object Detection Model Implemented Based on PaddlePaddle
Jun 02, 2020 · PaddlePaddle

### Project Overview This project aims to implement the SSD (Single Shot Multibox Detector) model using PaddlePaddle for object detection tasks. SSD is a single-stage object detection algorithm that

# Artificial Intelligence # Deep Learning # PaddlePaddle 770 views
📝
Implementing Common Sorting Algorithms in Python
May 16, 2020 · Other

Thank you very much for sharing the implementations of these sorting algorithms. To provide a more comprehensive and understandable version, I will briefly explain each sorting algorithm and include c

# algorithm # Python # Sorting Algorithm 995 views
📝
Implementing Binocular Range Measurement on Android
May 16, 2020 · Android

This tutorial provides a detailed introduction to using the dual-camera of an Android device for object distance measurement. Below are the summaries and further optimization suggestions: ### Project

# opencv # Android # Computer Vision 754 views
📝
Distance Measurement Using Binocular Cameras
May 14, 2020 · Deep Learning

This code demonstrates how to implement stereo vision depth estimation using the SGBM (Semiglobal Block Matching) algorithm in OpenCV, and then calculate 3D coordinates in the image. The following is

# Computer Vision # Artificial Intelligence # opencv 1,083 views
📝
Voiceprint Recognition Based on PaddlePaddle
May 05, 2020 · PaddlePaddle

This project demonstrates how to implement a voiceprint recognition system based on speech recognition using PaddlePaddle. The entire project covers multiple aspects including model training, inferenc

# Deep Learning # Artificial Intelligence # PaddlePaddle 781 views
📝
Implementation of Voiceprint Recognition Using TensorFlow
May 04, 2020 · TensorFlow

Your project provides a TensorFlow-based voiceprint recognition framework that covers multiple steps including data preparation, model training, and voiceprint recognition. This is a great practical c

# Deep Learning # Tensorflow # Artificial Intelligence 727 views
📝
Sound Classification Based on PaddlePaddle
Apr 27, 2020 · PaddlePaddle

The project you provided details how to perform speech recognition tasks using PaddlePaddle and the PaddleSpeech acoustic model library. The entire process, from data preparation, model training, pred

# Deep Learning # Neural Network # PaddlePaddle 889 views
📝
Sound Classification Based on TensorFlow
Apr 23, 2020 · TensorFlow

This project provides a detailed introduction to the steps of audio classification using TensorFlow, covering data preparation, model training, prediction, and real-time audio recognition. Below are s

# Tensorflow # Deep Learning # Neural Network 792 views
📝
Building a Smart Assistant Quickly with AIUI on Android
Apr 18, 2020 · Android

This article introduces how to quickly build a smart assistant similar to Xiaomi's AI Assistant. First, create an application using AIUI (a full-stack human-computer interaction voice solution launche

# Artificial Intelligence # Android 744 views
📝
Detecting if a User is Speaking Using WebRTC in Android
Apr 16, 2020 · Android

This article introduces how to implement voice activity detection (VAD) using WebRTC in an Android application. First, an Android project is created, and the `local.properties` file is modified to add

# Android 752 views