AI Agent Hub

Blog

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

📝
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 726 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
📝
Learning Notes on OKHttp3, an Android Network Framework
Aug 16, 2017 · Android

This is a complete project for fetching and displaying network images using HTTP GET and POST requests in Android, as well as saving these images to the SD card. The project involves basic network com

# Android 697 views
📝
Android Booting and Startup
Aug 16, 2017 · Android

The article introduces the steps and code implementation for achieving the boot - start function using broadcast receivers in Android. First, create a BroadcastReceiver class through Android Studio.

# Android 722 views
📝
Implementation of an Android Drawing Board
Aug 16, 2017 · Android

This article introduces how to implement a simple drawing board function. The layout includes three buttons and an image for operation and display. The key part in the Java code is the touch event han

# Android 703 views