[pytorch SSD target detection] train the data set created by yourself

Make target detection data set similar to pascal voc format: https://www.cnblogs.com/xiximayou/p/12546061.html Source: https://github.com/amdegroot/ssd.pytorch The copied code has many holes to step on... I uploaded it to Google collab. The current directory structure is as follows: It should be noted that although we only have two ...

Added by ticallian on Mon, 06 Apr 2020 02:05:15 +0300

Getting started with FreeMarker

1.1. What is freemarker FreeMarker is a template engine written in Java language, which generates text output based on templates. FreeMarker has nothing to do with the Web container, that is, it doesn't know about servlets or HTTP when the Web is running. It can not only be used as the implementation technology of presentation layer, but also b ...

Added by ryanyoungsma on Sun, 05 Apr 2020 17:23:09 +0300

RatingBar custom picture

The above are two pictures (size h*w = 50*94) that need to be used. There is a certain transparent area left and right of the picture as the space between the stars, which should not be seen in the blog, 1. Put them in different folders to adapt to different resolutions of the screen, If you try to put only one direc ...

Added by djlfreak on Sun, 05 Apr 2020 03:00:02 +0300

The problem of sax parsing xml

characters will have many problems. Record them and find them for a long time. It turns out that they are the problem of spaces. Here is the xml file after format and the corresponding print xml file: Corresponding log: Reference: the following excerpt from http://blog.csdn.net/Garmiter/article/details/8016840 XML type 1: no ...

Added by Codewarrior123 on Sat, 04 Apr 2020 14:47:05 +0300

Xamarin.Forms Client First Edition

As a sub-process module of TerminalMACS, the first edition is currently completed: reading basic mobile information, contact information, application localization. Functional introduction Detailed Functional Description About TerminalMACS 1. Functional introduction 1.1. Read basic mobile information Use the Xamarin.Essentials library to get ...

Added by vargadanis on Sat, 04 Apr 2020 14:42:57 +0300

Explanation of jump animation on Android Activity interface

Instance 1 overridePendingTransition Summary Animation when two activities are switched. Use in overridePendingTransition There are two parameters: the entry animation and the exit animation. Note (call time) 1. Must be called immediately after StartActivity() or finish(). 2. And it is valid in version 2.1 and abov ...

Added by jynmeyer on Sat, 04 Apr 2020 08:54:25 +0300

The Bible of Go language -- floating point exercises

Exercise 3.1: if the f function returns an unrestricted float64 value, the SVG file may output invalid polygon elements (although many SVG renderers will handle this properly). The modifier skips invalid polygons. Exercise 3.2: experiment with rendered graphics for other functions in the math package. Can you output an egg box, moguls or a sadd ...

Added by achintha on Sat, 04 Apr 2020 07:00:10 +0300

Spring integrates spring MVC and hibernate

The previous article used maven to build a web environment, which records how to use spring to integrate spring MVC and hibernate, that is, spring + spring MVC + Hibernate framework integration.   Step 1: configure spring first Configure the spring configuration file applicationContext.xmls 1 <?xml version="1.0" encoding="UTF-8"?> 2 & ...

Added by HHawk on Fri, 03 Apr 2020 22:00:59 +0300

Java continuous integration (3) - configure test code coverage for maven and upload to sonar

Step 1: configure a new profile in pom.xml to support the Jacobo plug-in <!-- BEGIN: Specific to mapping unit tests and covered code --> <profiles> <profile> <id>coverage-per-test</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>mave ...

Added by ShaunO on Fri, 03 Apr 2020 18:02:45 +0300

Mybatis generator automatic code generation tool is embedded in maven project. The path obtained in eclipse and intellij is different

Before reading this article, please read another article about the embedding of mybatis generator into maven projectMybatis generator automatic code generation tool is embedded in Maven project to generate java and xml files corresponding to database tables with one click The method introduced in this paper can run the main method ...

Added by r3n on Thu, 02 Apr 2020 23:13:16 +0300