Tag:accuracy
-
Time:2021-2-25
The core of s2dnas is to design a rich and concise search space, so that it can use the conventional NAS method to search the dynamic reasoning network, solve the design problem of the dynamic reasoning network, and can transform any target network Source: Xiaofei’s algorithm Engineering Notes official account Paper: s2dnas: transforming static CNN […]
-
Time:2021-2-24
The third step of JPG coding is quantization. For the 8 * 8 block data after DCT change, we need to quantify the 8 * 8 data. In JPEG, quantization is to divide the data V by a certain number Q to get round (V / Q) instead of the original data. Then, when JPG […]
-
Time:2021-2-23
1、 8 basic data types (4 integer, 2 float, 1 character, 1 cloth) Integer: byte (the smallest data type), short (short integer), int (integer), long (long integer); Floating point type: float, double; Character type: char (character type); Boolean: Boolean. 2、 Value range Data type name Occupied bytes Default value Min max Corresponding packaging Integer type […]
-
Time:2021-2-20
Abstract:Knowledge distillation is a common method of model compression 1、 Introduction to knowledge distillation 1.1 concept introduction Knowledge distillation is a common method of model compression, which is different from pruning and quantization in model compression. Knowledge distillation is to build a small lightweight model and train the small model by using the supervision information […]
-
Time:2021-2-17
Experience of experiment effect verification When to add an audience, when to add a multi-scale, and how to set the learning rate? Data enhancement My personal experience is that after the verification stage, when you start to run the absorption study, you must pay attention to the rationality of the data, and do not blindly […]
-
Time:2021-2-2
1. Binary octal Binary: prefix 0b: 0b111110111 = = = 503Octal: prefix 0o: 0o767 = = = 503 2.Number.isFinite(),Number.isNaN() Number.isFinite (): check whether the value is finite, and both infinity and non numeric types return false Number.isFinite(15); // true Number.isFinite(0.8); // true Number.isFinite(NaN); // false Number.isFinite(Infinity); // false Number.isFinite(-Infinity); // false Number.isFinite(‘foo’); // false Number.isFinite(’15’); […]
-
Time:2021-1-29
Why index Quick query! Quick query! Quick query! Mongodb’s 10 indexes? Create index syntax: db.<collection_name>.createIndex( <key and index type specification>, <options> ) Our record collection has the following documents { “_id”: ObjectId(“570c04a4ad233577f97dc459”), “score”: 1034, “userId”: 123, “location”: { state: “ZH”, city: “ChengDu” }, “addr”: [ {zip: “10036”, detail: “group 5, Gaojia village”}, {zip: “94231”, detail: […]
-
Time:2021-1-24
From machine learning alchemy Basic concepts First of all, there are several concepts to memorize: accuracy, recall, TP, FP, TN, FN TP:true positive。 The prediction is the correct positive sample FP:false positive。 The prediction is the wrong positive sample TN:true negative。 The prediction is a correct negative sample FP:false positive。 The prediction is the wrong […]
-
Time:2021-1-19
stayPrevious articleIn this article, I will introduce how to improve the accuracy of the model and how to support video recognition. In the past articles, I basically only introduced the implementation principle and application examples of the model, without excessive pursuit of accuracy. This is to let readers get rid of the details, but in […]
-
Time:2021-1-8
1: Several basic types of Java keyword type Bits (8 bits, 1 byte) Value range (representing range) byte integer 8 -2^7 ~ 2^7-1 short integer 16 -2^15 ~ 2^15-1 int integer 32 -2^31 ~ 2^31-1 long integer 64 -2^63 ~ 2^63-1 float Floating point number 32 3.402823e+38 ~ 1.401298e-45 double Floating point number 64 1.797693e+308~ […]
-
Time:2020-12-12
Experience of experimental effect verification When to add August and multi scale, and how to set the learning rate? Data enhancement My personal experience is that after the verification stage, when you start to run the activity study, you must pay attention to the rationality of the data, do not blindly design, resulting in inefficient […]
-
Time:2020-12-5
JS processing background returns large numbers The background is like this. If the background returns more than 16 digits, the front-end will automatically convert the excess mantissa to 0 1188726131910512635 => 1188726131910512000 The basic data class number in JavaScript is a double precision floating-point number. The maximum security range it can represent is plus or […]