AI Agent Hub

Blog

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

📝
Notes on "My Learning Journey with PaddlePaddle" III — CIFAR Color Image Recognition
Jan 21, 2018 · PaddlePaddle

This project is a CIFAR-10 image classification model implemented using PaddlePaddle, with a clear code structure and detailed comments. Below is a brief explanation of the main functions and principl

# PaddlePaddle # CIFAR # Image Recognition 970 views
📝
Notes on "My Learning Journey with PaddlePaddle" - MNIST Handwritten Digit Recognition
Jan 21, 2018 · PaddlePaddle

Your code is very detailed and already covers the entire process from training to prediction. Below, I will supplement and optimize several key points to help you better understand and use PaddlePaddl

# PaddlePaddle # Handwritten Digit Recognition # MNIST dataset 856 views
📝
Notes on "My Learning Journey with PaddlePaddle" — Part 1: Installation of PaddlePaddle
Jan 16, 2018 · PaddlePaddle

This note provides a detailed introduction to how to install and use PaddlePaddle (now referred to as Paddle) and demonstrates how to perform MNIST handwritten digit recognition through a specific exa

# PaddlePaddle # Deep Learning # Install PaddlePaddle on Windows 875 views
📝
Study Notes on Deep Learning III — Numerical Computation
Jan 15, 2018 · Deep Learning

This article mainly explores some key concepts in the fields of deep learning and optimization, including gradient, partial derivative, constrained optimization, and the KKT method. Below is the organ

# Deep Learning # Numerical Calculation 734 views
📝
Study Notes on "Deep Learning" - Part 2: Probability Theory
Jan 14, 2018 · Deep Learning

This document covers many important concepts in probability theory and machine learning, including the distributions of random variables, commonly used functions, and correlation coefficients. Below i

# Deep Learning # Probability Theory 685 views
📝
Study Notes on Deep Learning I — Linear Algebra
Jan 13, 2018 · Deep Learning

This note covers various important concepts in machine learning, particularly those related to linear algebra. Below are some summaries and supplements to the content of the note: ### Fundamentals of

# Deep Learning # Linear Algebra 765 views
📝
Various Android Notifications, Dialogs, Toasts, and Snackbars
Aug 16, 2017 · Android

This article introduces four common notification methods in Android applications: Notification, Dialog, Toast, and Snackbar. Notification is used to display important notifications in the status bar,

# Android 771 views
📝
View Animation in Android
Aug 16, 2017 · Android

TranslateAnimation translateAnimation = new TranslateAnimation( A

# Android 786 views
📝
Learning SpringMVC Notes——Creating a SpringMVC Project with Intellij IDEA
Aug 16, 2017 · Backend

This article introduces the creation and configuration of a SpringMVC project. First, a Spring project is created, the Spring MVC option is checked, and the required JAR packages are downloaded. Next,

# Java web # SpringMVC 727 views
📝
Saving Account and Password Using SharedPreferences in Android
Aug 16, 2017 · Android

This example demonstrates how to use `SharedPreferences` to save a user's account and password with simple encryption for enhanced security. The main steps of the code are as follows: 1. **Layout Ini

# Android 734 views