Clothing generation project

Please click here View the basic usage of this environment Please click here for more detailed instructions. Project Name: clothing generation (mainly in the field of semantic generation, GAN) Today, I solemnly launched my clothes generation project. Let's applaud. Based on the thesis semantically multi modal image synthesis, I have exp ...

Posted by furma on Sat, 12 Feb 2022 01:59:23 +0100

Edgeslam environment installation configuration

Edgeslam environment installation configuration Since the tutorials and records of environment installation and configuration cannot be found in edgeslam's environment at present, we can only grope a little bit here. In order to ensure that the software version does not conflict directly, this paper completely follows the environment version ...

Posted by Garath531 on Fri, 11 Feb 2022 23:53:32 +0100

OCR (text recognition) function and ASR (speech recognition) java application development (based on Baidu Intelligent Cloud)

Baidu cloud official website: Baidu Intelligent Cloud - Intelligent era infrastructure Baidu intelligent cloud focus on cloud computing, intelligent big data, artificial intelligence services, provide stable cloud server, cloud hosting, cloud storage, CDN, domain name registration, Internet of things and other cloud services, support API docki ...

Posted by nev25 on Fri, 11 Feb 2022 21:51:59 +0100

Python implementation of genetic algorithm (solving function extremum problem)

Problem description f(x)=x*sin(x)+1, x belongs to [0,2 ฯ€]. Taking solving the maximum and minimum value of f(x) as an example, a genetic algorithm program for f(x) is designed, and then run to solve it (1) Determine the basic functions: this experiment is to solve the maximum and minimum values of f (x). (2) Encoding f(x): a chromosome ...

Posted by HairBomb on Fri, 11 Feb 2022 18:25:17 +0100

Face recognition with Python "including source code"

Python can detect and recognize your face from images or videos. Face detection and recognition is one of the research hotspots in the field of computer vision. The applications of face recognition include face unlocking, security protection, etc. doctors and medical staff use face recognition to obtain medical records and medical history a ...

Posted by ina on Thu, 10 Feb 2022 16:14:52 +0100

Anaconda's installation and use

1, Download Anaconda Official website address: https://www.anaconda.com/ Download steps 1. Click Get Started 2. Click Download Anaconda installers 3. Select the corresponding system 4. Select the number of digits corresponding to the system 2, Install Anaconda 1. Find the downloaded installation package and right-click to run as ...

Posted by danf_1979 on Wed, 09 Feb 2022 07:08:24 +0100

Lesson 1 | building fashion search engine with DocArray

DocArray is a library recently released by Jina AI and suitable for nested and unstructured data transmission. This paper will demonstrate how to use DocArray to build a simple clothing search engine.Good luck to start work. Hello, everyone!We have carefully prepared a Demo and out of the box tools for you. In the new year, let's use this invin ...

Posted by Deany on Tue, 08 Feb 2022 06:13:38 +0100

[use of Dataset and DataLoader for data loading]

Data loading in pytoch In deep learning, the amount of data is usually very large. With such a large amount of data, it is impossible to carry out forward calculation and back propagation in the model at one time. Often, we will randomly disrupt the order of the whole data, process the data into batch es one by one, and preprocess the data at ...

Posted by thenior on Tue, 08 Feb 2022 03:51:21 +0100

Naive Bayes of sklearn machine learning

๐ŸŒŸ Last time we talked about the decision tree algorithm, which is based on sklearn. This time, we want to learn about naive Bayes, what is "naive". The meaning of simplicity is that the features are independent of each other and have no correlation. Small partners interested in previous content can refer to the following content ๐Ÿ‘‡: ...

Posted by mitsubishi2002 on Mon, 07 Feb 2022 22:22:01 +0100

2, Communication mechanism of ROS - topic

The basic communication mechanism in ROS mainly has the following three implementation strategies: Topic communication (publish subscribe mode) Service communication (request response mode) Parameter server (parameter sharing mode) 1. Topic communication: publish subscribe mode One node publishes messages to the topic, and the other node ...

Posted by naggi on Mon, 07 Feb 2022 07:06:07 +0100