001 - create a simple browser using Hongmeng WebView step 1
Open the official website and find the document of WebView (not supported by the simulator) Hongmeng webview's Development Guide (original link, easy to identify and click): https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ui-java-component-webview-0000001092715158
2. Create a Page Ability and make the basic layout well ...
Posted by zipp on Fri, 04 Mar 2022 05:02:51 +0100
Technical dry goods | better understanding of Focal Loss based on mindspire
Abstract: Focal Loss is a loss function proposed by Kaiming great God team in their paper Focal Loss for sense object detection. It is used to improve the effect of image object detection.
This article is shared from Huawei cloud community< Technical dry goods | better understanding of Focal Loss based on mindspire >, original author: ...
Posted by CBR on Fri, 04 Mar 2022 00:35:10 +0100
Top 10 Classic Sorting Algorithms (java implementation, illustrations, with source code)
Python WeChat Subscription Applet Course Video
https://edu.csdn.net/course/detail/36074
Python Actual Quantitative Transaction Finance System
https://edu.csdn.net/course/detail/35475
Preface:
This article mainly explains some preparations I have made in learning the sorting algorithm in Java development environment, and personal experience ...
Posted by aarons123 on Wed, 02 Mar 2022 18:25:03 +0100
Spring Series 22: Spring AOP Concepts and Quick Start
Python WeChat Subscription Applet Course Video
https://edu.csdn.net/course/detail/36074
Python Actual Quantitative Transaction Finance System
https://edu.csdn.net/course/detail/35475
Contents of this article
Spring AOP Meaning and ObjectivesConcepts related to AOPDeclarative AOP Quick StartProgrammatically create proxy objects
Spring AOP ...
Posted by jzhang1013 on Wed, 02 Mar 2022 18:23:36 +0100
[SRM neuron model] Analyze SRM neurons with code
Before parsing the code, let's now look at the SRM model. The first function represents the shape a spike should have. Where tf is the time of the last pulse. In the second function, Iext describes the effect of all presynaptic pulse times on membrane potential. The third function should be well understood, which is the voltage of a resting po ...
Posted by gukii on Wed, 02 Mar 2022 05:39:07 +0100
Feature Engineering -- variance filtering "notes on vegetable machine learning"
Characteristic engineering concept:
Feature engineering transforms raw data into more representative data prediction model The process of features of potential problems can be realized by selecting the most relevant features, extracting features and creating features. Among them, feature creation is often realized by dimension reduction algor ...
Posted by colemanm on Wed, 02 Mar 2022 02:00:23 +0100
SDMG-R model learning notes
The algorithm from Shang Tang is used for KIE and integrated in mmocr package. It needs to be used together with mmcv. Aside from the topic, mmcv uses hook programming, which is still very difficult to debug. I'll share the framework logic of mmcv when I'm free in the future.
model structure
The whole structure can be divided into three ...
Posted by bdata28 on Tue, 01 Mar 2022 23:44:58 +0100
Visitor mode of Java design pattern learning
In the design pattern, there is a pattern that provides a visitor class that can change the execution algorithm of our target object class, which decouples the data structure from the data operation.
Introduction to visitor mode
Visitor patterns are behavioral patternsVisitor pattern provides a visitor class that can change the execution algo ...
Posted by JackOfBlades on Tue, 01 Mar 2022 12:43:36 +0100
Machine learning notes - Kaggle form amusement park Feb 2022 learning I
1, Competition introduction
Kaggle's table amusement park will have new competitions on the 1st of each month since 2021. What small gifts should the prizes be? The official meaning is to hold competitions for beginners. However, here you can see the thinking ideas and handling methods of experts, which is indeed a lot of income.
Tabular Play ...
Posted by jsucupira on Tue, 01 Mar 2022 08:16:51 +0100
stargan v2 code learning record
1, Generator
(1) lamda python
lambda function is also called anonymous function, that is, the function has no specific name.
Compared with ordinary functions, lambda just omits the function name. At the same time, such anonymous functions cannot be shared and called elsewhere.
In fact, you're right. Lambda really doesn't play an earth shaki ...
Posted by barbatruc on Sat, 26 Feb 2022 15:02:44 +0100