TensorFlow2 learning -- Image Classification

Article directory TensorFlow2 learning -- Image Classification Guide bag Raw data Data mapping Data division and standardization Model and train Model evaluation and prediction Other: use of Callback TensorFlow2 learning -- Image Classification Guide bag import matplotlib.pyplot as plt impor ...

Posted by fizix on Tue, 03 Mar 2020 01:51:59 -0800

Understanding source code in ArrayList and LinkedList

ArrayList: in essence, it is an array with dynamic expansion, which is 1.5 times of the original. Core code: int newcapacity = oldcapacity + (oldcapacity > > 1); / / move one bit to the right to divide by 2 How to add or remove an element from ArrayList. Add an element: judge if the array capa ...

Posted by Goofan on Tue, 03 Mar 2020 01:43:53 -0800

[SLAM] VINS-MONO analysis - vins'estimator process

5.vins_estimator Basically, most of the functions in VINS are under this package, including IMU data processing (front end), initialization (I think it may belong to front end), sliding window (back end), nonlinear optimization (back end), key frame selection (part of content) (front end). When I firs ...

Posted by [Demonoid] on Tue, 03 Mar 2020 01:22:29 -0800

Using vue to implement a message notification component from zero

Using vue to implement a message notification component from zero At ordinary times, we must have used some UI frameworks like element UI and antd to feel the convenience they bring us. But when the difference between our requirements or the design of these frames is too big, it will be very awkward t ...

Posted by Mind freak on Mon, 02 Mar 2020 22:58:57 -0800

Strings: regular expressions

5, split() The split() method breaks the input string into an array of string objects, with the break boundary determined by the following regular expression: String[] split(CharSequence input); String[] split(CharSequence input, int limit); This is a quick and convenient way to break the input te ...

Posted by theslinky on Mon, 02 Mar 2020 19:54:27 -0800

Python top 10 syntax

Preface Python is a language that represents simple ideas. Its syntax is relatively simple and easy to use. However, it would be a mistake to overlook the subtlety and depth of Python syntax. This article carefully selected ten knowledge points that can best show the subtlety of Python syntax, and attached the detailed example code. If it can b ...

Posted by John Rowe on Sun, 01 Mar 2020 19:31:00 -0800

Data structure and algorithms (stack, queue, bubble sort, insert sort, select sort)

Stack In some places called stacks, stacks are containers that can store data elements, access elements, and delete elements. The feature of stacks is that they allow operations that add data (English: push) and output data (English: pop) only at one end of the container (called top indicator of stack ...

Posted by dada06 on Sun, 01 Mar 2020 17:35:33 -0800

Learning Javascript to simulate the implementation of call,apply

Preface This article is 1630 words, it takes about 8 minutes to read. All in all: in this paper, we simulate and implement a relatively perfect call and apply method from scratch by raising problems and then solving them Reference documents: Function.prototype.call(),Function.prototype.apply() The official account: front-end learning, repl ...

Posted by tron00 on Sun, 01 Mar 2020 04:14:47 -0800

Redis Source Tidy Notes: intset and personal understanding

intset structure typedef struct intset { uint32_t encoding; // Types of all elements in the current structure uint32_t length; // Number of elements in contents, that is, the number of elements in the set of integers int8_t contents[]; // Elements stored in a collection of integers } ...

Posted by plezops on Sat, 29 Feb 2020 19:33:40 -0800

Lesson 51 C++ Object Model Analysis

The content of this paper comes from the learning summary of C++ in-depth analysis course for Tang Zolin Teacher of Diday College Inheritance Object Model Internal classes in C++ compilers can be understood as structs Subclasses are derived by superimposing new members of subclasses on members of ...

Posted by zwxetlp on Sat, 29 Feb 2020 18:31:09 -0800