Interpretable AI (XAI): how to better interpret the prediction of the model using LIME and shake

As data scientists or machine learning practitioners, integrating interpretability into machine learning models can help decision makers and other stakeholders have more visibility and understand the interpretation of model output decisions.In this article, I will introduce two models, life and shake, which can help understand the decision-maki ...

Added by Dima on Sat, 18 Dec 2021 10:04:39 +0200

[optimal location] ant colony algorithm to solve the location optimization problem of electric vehicle charging station and exchange station [matlab phase 1182]

1, Introduction to ant colony algorithm 1 Overview An algorithm designed to simulate ant foraging behavior (shortest path principle). The foraging characteristics of ant groups are abstracted and transformed into mathematical description. • ant colony algorithm (ACA) was first proposed by Marco Dorigo in his doctoral thesis in 1992. &bu ...

Added by rdawson on Sat, 18 Dec 2021 02:13:10 +0200

Numpy key knowledge: array ndarray

Introduction to Numpy array All functions in Numpy are based on the N-dimensional array data structure ndarray. ndarray is a collection of data of the same type. The index of elements starts with the subscript 0. Unlike python's List, each element in ndarray has an area of the same storage size in memory. Numpy supports different data ty ...

Added by karldesign on Fri, 17 Dec 2021 22:34:25 +0200

Hands on data analysis: 2 (medium) data reconstruction

2.4 data consolidation 2.4. 1 load all the data in the data folder and observe the relationship between them compared with the previous original data text_left_up = pd.read_csv("data/train-left-up.csv") text_left_down = pd.read_csv("data/train-left-down.csv") text_right_up = pd.read_csv("data/train-right-up.csv") text_right_down = pd.read_csv ...

Added by shams on Fri, 17 Dec 2021 21:44:39 +0200

Generating Synthetic Time-Series Data with Random Walks

Generating time series synthetic data with random walk Random walk is a random process. They consist of many steps in mathematical space. The most common random walk starts with a value of 0, and then each step adds or subtracts 1 with equal probability. Random walk can be used to generate synthetic data for different machine learning applica ...

Added by duane on Fri, 17 Dec 2021 19:47:11 +0200

Yolov4 tiny trains its own dataset

1, Training environment darknet compiled under Windows 10 Compilation process: https://blog.csdn.net/weixin_54603153/article/details/119980266?spm=1001.2014.3001.5501) Source address: https://github.com/AlexeyAB/darknet 2, Make your own dataset 1. First, create a folder for the dataset under the Darknet master folder Annotations tag x ...

Added by andrei.mita on Fri, 17 Dec 2021 12:43:09 +0200

Build a stock public opinion analysis system with Python

The following article will teach you to build a simple stock public opinion analysis system, in which you will first crawl the news of the specified stock over a period of time through the financial website, and then use Baidu emotion analysis interface to evaluate the proportion of positive and negative news of the specified stock, so as to de ...

Added by InfiniteA on Fri, 17 Dec 2021 00:37:02 +0200

Machine learning algorithm sorting (including code)

First, let me make an advertisement~ If you need more artificial intelligence courses (source code + Notes + courseware), please scan the QR code to get it The following is the text In order to facilitate the exchange of fans, a Q group was established: [809160367,] let's learn and exchange together, including courseware materials, source ...

Added by maexus on Thu, 16 Dec 2021 21:10:35 +0200

Statistical learning method - perceptron + handwritten code

preface I've been reading Dr. Li Hang's "statistical learning methods" recently. I'll make a small record here and write down my understanding. I welcome your criticism and correction. text Intuitive understanding of perceptron Perceptron should be the simplest algorithm among machine learning algorithms. Its principle can be seen i ...

Added by Daggeth on Thu, 16 Dec 2021 19:32:08 +0200

Introduction to the principle of naive Bayesian classifier and its implementation in python code

Frequency school and Bayesian school Speaking of probability and statistics, we have to mention frequency school and Bayesian school, two different probability schools evolved through different understanding of probability. Frequency school Core idea: the parameter to be obtained is a certain value. Although it is unknown, it will not chang ...

Added by kylera on Thu, 16 Dec 2021 17:51:14 +0200