On the environment of win10 yolox to install and train your own data set
Recently, I was burst by yolox. In addition, I have too many plots for yolo series. I tried yolof before. Now, yolox and openvino reasoning happen to need this part. Now I'll try to make a preliminary exploration. 1, Basic configuration cuda 10.1 2, Environment construction 1. Installing yolox
git clone git@github.com:Megvii-BaseDetection/YOLO ...
Posted by Fabrizzio PHP on Mon, 10 Jan 2022 22:52:54 +0100
Different types of data conversion in python
Data conversion: the process of changing one's own data type into a new data type and having all the functions of the new type is data conversion
1. String and number conversion:
When converting a string to a number, it must be a string composed of numbersConvert numbers to strings, no requirementsConversion of integer and floating-point type ...
Posted by progman on Mon, 10 Jan 2022 22:25:57 +0100
keras.layers.Conv2D() function parameters
tf.keras.layers.Conv2D() function
Conv2D (2D convolution)
This layer creates a convolution kernel, which is convoluted with the input of this layer to produce an output tensor
When this layer is used as the first layer of the model, the keyword parameter input is provided_ Shape (integer tuple, excluding sample axis, no need to write batch_s ...
Posted by jim35802 on Mon, 10 Jan 2022 22:00:36 +0100
Python interview collection
python interview collection
preface
This is a python interview essence analysis, from basic to advanced.
1, python Basics (difficulty: ⭐ ️)
Object type of python Immutable object types: int, float, decimal, complex, bool, str, tuple, range, frozenset, bytes Mutable object types: list, dict, set, bytearray, user defined, classes (u ...
Posted by haddydaddy on Mon, 10 Jan 2022 21:37:12 +0100
Getting started with Python (11) -- functions
Function is a code block with a name, which is used to complete a specific task. When the same task is executed multiple times in the program, there is no need to write repeated code blocks repeatedly, just call the function executing the task.
Declaration of function
In Python, the def keyword is used to declare functions. Each function has ...
Posted by srirangam007 on Mon, 10 Jan 2022 21:18:44 +0100
python3. 7. Cannot join thread before it is started, to be solved
Problem Description:
July 28, 2021 17:34:5 After adding a blocking thread to return to the origin: The code is as follows:
# -*- coding=utf-8 -*-
import threading
import time
import unittest
from selenium import webdriver
'''
The top 10 data of Tencent position and write excel, There are 10 messages per page
https://careers.tencent ...
Posted by limke on Mon, 10 Jan 2022 20:11:20 +0100
Python Development-Web Django Framework Foundation
Django Foundation
Django
Django is a tripartite Library of python and a web framework (product-level, MTV model) for building a web backend.
Create a project django-admin startproject myweb Create an application python.exe .\manage.py startapp helloapp Run the project python.exe .\manage.py runserver
Create a web framework project
djan ...
Posted by gasper000 on Mon, 10 Jan 2022 19:17:54 +0100
Functions in Python
Functions in Python (2)
1. Anonymous functions
Grammar: Function name = lambda parameter list: Return value
Amount to:
def Function name(parameter list):
return Return value
Be careful:
Anonymous functions can only implement functions that complete a function in one sentence of codeAnonymous functions are called as normal functions ...
Posted by dabaR on Mon, 10 Jan 2022 18:10:32 +0100
day12 function advanced
Python function advanced
1. Anonymous function
Syntax: Function name = lambda parameter list: return value
amount to: def function name (parameter list): Return return value be careful: 1) Anonymous functions can only implement functions that can be completed in one sentence of code 2) Anonymous functions are no different from ordinary funct ...
Posted by eerikk2 on Mon, 10 Jan 2022 17:00:35 +0100
Python command line - click Library
I Know Click Library
In a series of articles on the command line, we mentioned that the Python standard library module argparse can be used to parse command line parameters ~ but because argparse is complex to use, add_ The argument method has many parameters. Therefore, the third-party library module click came into being, which greatly impro ...
Posted by dvwhi on Mon, 10 Jan 2022 15:53:21 +0100