How to write java face recognition ------ the source code is attached

1 first register your own account in Face + + https://console.faceplusplus.com.cn/dashboard Face In Face recognition technology, Face refers to the Face found in the image. When Face detection is performed on a picture, the detected Face will be recorded, including the position of the Face in the picture, and a system will be used to identify ...

Posted by jarv on Mon, 08 Nov 2021 04:01:17 +0100

Reproduce the YOLOv3 data class from scratch

1 data organization (1) coco128 dataset Here we use the coco dataset, but the coco dataset is too large. Here we use the coco128 dataset, because there are only 128 pictures, and the speed of copying and decompression can be fast. The download link of the coco128 dataset is: https://github.com/ultralytics/yolov5/releases/download/v1.0/coc ...

Posted by hyabusa on Sun, 31 Oct 2021 09:45:11 +0100

Tensorflow_cputensorflow_gpu for intel processors

When I installed tensorflow, I checked many articles, but none of them were particularly specific. This article is to draw on the strengths of others and summarize it according to its own installation process. Follow this article to install tensorflow 2.0 perfectly* Tensorflow is divided into__ Cpu__ And__ Gpu__ Version 2.0 or above, which gre ...

Posted by kotun on Sat, 30 Oct 2021 04:23:32 +0200

Open source AI intelligent follow PTZ OpenFollow based on K210 (Foundation) -- micropthon foundation of K210

 OpenFollow click here               OpenFollow uses the RISC-V core AI chip K210, which has a dual core processor with independent FPU, 64 bit CPU bit width, 8M on-chip SRAM, 400M adjustable nominal frequency, and a double precision FPU supporting multiplication, division and square root operation; It a ...

Posted by pessi on Thu, 28 Oct 2021 08:59:28 +0200

Text currency amount extraction and analysis, jiunlp

Given a piece of text, extract the monetary amount string, and standardize all amounts. Jianlp Chinese preprocessing and parsing Toolkithttps://github.com/dongrixinyu/JioNLP Where, jio.ner.extract_money and jio.parse_money can extract monetary amounts from a piece of text and standardize the results. Let's take an example: Given a paragraph o ...

Posted by Hatdrawn on Mon, 25 Oct 2021 13:56:26 +0200

[3] Solution of Gaussian mixture model in machine learning

[1] The function Gaussian mixture in machine learning solves the components of each model [1.1] Gaussian texture parameter interpretation Available references: [sklearn] detailed explanation of various parameters and code implementation of mixture. Gaussian mixture_ Yakuho blog - CSDN blog_ gaussianmixture           [1.2] solution ...

Posted by sgbalsekar on Sat, 23 Oct 2021 08:17:07 +0200

Text generation in GPT-2

Implementation of BPE algorithm in the original text of BPE algorithm: import re import collections def get_stats(vocab): pairs = collections.defaultdict(int) for word, freq in vocab.items(): symbols = word.split() for i in range(len(symbols)-1): pairs[symbols[i], symbols[i+1]] += freq # Calculate byte pa ...

Posted by stanleybb on Fri, 22 Oct 2021 08:09:26 +0200

Pytoch machine learning -- anchor generated by k-means clustering method in YOLO

Pytoch machine learning (x) -- anchor generated by k-means clustering method in YOLO catalogue Pytoch machine learning (x) -- anchor generated by k-means clustering method in YOLO preface 1, K-means clustering   k-means code k-means + + algorithm 2, k-means clustering is used to generate anchor in YOLO Read VOC ...

Posted by morphy@6deex on Thu, 14 Oct 2021 21:41:30 +0200

Image registration based on matlab GUI Powell+ant colony algorithm

Image registration based on matlab GUI Powell+ant colony algorithm 1. Introduction 1 The origin and development of ant colony algorithm (ACA)Marco Dorigo et al. found that ants can quickly find their target by exchanging their foraging information by secreting a biohormone called pheromone when they are searching for food. In 1991, in his P ...

Posted by Ken2k7 on Sat, 09 Oct 2021 19:23:26 +0200

Look at the flink source code and learn the flink --- flink state

Series contents: Look at the flink source code and learn flink Look at the flink source code and learn the flink --- flink state preface Tip: Here you can add the general contents to be recorded in this article: For example, with the continuous development of artificial intelligence, machine learning technology is becoming more and m ...

Posted by annihilate on Fri, 08 Oct 2021 11:14:35 +0200