AI Agent Hub

Blog

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

📝
The Use of Regularization in Deep Learning Neural Networks
Apr 15, 2018 · Deep Learning

This article provides a detailed introduction to three commonly used regularization techniques in deep learning: L2 regularization, Dropout, and a 3-layer network model with regularization. It also en

# Andrew Ng's Courses # Deep Learning # Regularization 775 views
📝
Implementing a Simple Web Crawler with Python2
Apr 10, 2018 · Other

This project is a simple web crawler designed to scrape relevant content from CSDN blogs and save it as HTML files. It includes the basic process of a crawler: crawling, parsing, and storage. ### Cra

# web crawler # Python # CSDN Blog 1,015 views
📝
Binary Classification of Cats Using Logistic Regression
Mar 31, 2018 · Deep Learning

The code you provided is a complete process for implementing a logistic regression model from scratch, and it also includes additional features to test different learning rates and predict your own im

# Logistic Regression # Deep Learning # binary classification 753 views
📝
Color Binary Classification Using Neural Networks with Hidden Layers
Mar 31, 2018 · Deep Learning

Your code well demonstrates how to implement an artificial neural network with hidden layers to solve a binary classification problem, and you've added detailed comments explaining each step. Below, I

# Hidden Layer Neural Network # Andrew Ng's Courses # Color Distribution Data 798 views
📝
Building a Deep Neural Network for Cat Binary Classification
Mar 31, 2018 · Deep Learning

Your code and explanations are very detailed, covering the entire process from data loading, preprocessing to model construction and training, and also involving the learning process of deep neural ne

# Deep Neural Network # binary classification # L-layer neural network 973 views
📝
Implementing Common Deep Learning Functions with Python's Numpy
Mar 30, 2018 · Deep Learning

Your notes are very detailed and cover multiple important concepts and techniques in deep learning, including activation functions, loss functions, etc. They truly help beginners understand and master

# Deep Learning # numpy # Activation Function 843 views
📝
Theoretical Knowledge Points of "Neural Networks and Deep Learning"
Mar 29, 2018 · Andrew Ng's Courses

This note covers some key concepts and formulas from Professor Andrew Ng's deeplearning.ai course series. Below is a categorized summary and supplementary explanation of these contents: ### 1. Fundam

# Deep Learning # coursera # Andrew Ng's Course 685 views
📝
My Learning Journey with PaddlePaddle - Note 13: Deploying PaddlePaddle to a Website Server
Mar 22, 2018 · PaddlePaddle

This tutorial provides a detailed introduction to using PaddlePaddle for basic image classification tasks and deploying the resulting model to a web service. Below is a summary of the tutorial content

# PaddlePaddle # server # Flask 776 views
📝
Notes on "My PaddlePaddle Learning Journey" ⑫ — Using the Visualization Tool VisualDL
Mar 15, 2018 · PaddlePaddle

This note provides a detailed introduction to how to use PaddlePaddle and VisualDL for the visualization of convolutional neural network (CNN) training. The following are the key points summarizing th

# PaddlePaddle # Deep Learning # Image Recognition 781 views
📝
Notes on "My Learning Journey with PaddlePaddle" XI – Using the New Version of Fluid
Mar 10, 2018 · PaddlePaddle

Your notes are very detailed and comprehensive, covering the entire process from installing PaddlePaddle to using it for image recognition. You also mentioned many important details, such as changes i

# PaddlePaddle # Deep Learning # Fluid 869 views