Category:AI

  • Introduction to LDA Topic Modeling and Python Implementation

    Time:2023-9-21

    I. Introduction to the LDA Theme Model The LDA topic model is mainly used to infer the topic distribution of documents, which can give the topic of each document in the document set in the form of a probability distribution according to the topic for topic clustering or text classification. The LDA topic model does […]

  • Anchor based and Anchor free

    Time:2023-9-20

    Difference between anchor-free and anchor-based Anchor-free and anchor-based are two different target detection methods, the difference being whether or not a predefined anchor box is used to match a real target box. Anchor-based methods use anchor boxes of different sizes and shapes to regress and categorize targets, such as faster rcnn, retinanet, and yolo, etc. […]

  • Example of constructing a neural network

    Time:2023-9-19

    Article Catalog neural network1. Import of relevant libraries2. Defining a layer3. Construction of data sets4. Defining the basic model5. Variable initialization6. Commencement of training P.S. Series of articles neural network A neural network is a bionic machine learning algorithm inspired by the nervous system of the human brain. It consists of multiple neurons (or nodes) […]

  • Logistic regression done with TensorFlow

    Time:2023-9-18

    Article Catalog Logistic regression done with TensorFlow1. Environmental settings2. Data reading3. Prepare the placeholder4. Prepare parameters/weights5. Compute the loss function of multiclassified softmax6. Prepare the optimizer7. Perform the operations defined in the graph in the session. P.S. Series of articles Logistic regression done with TensorFlow TensorFlow is an open source machine learning framework developed by […]