Tensorflow 2 Environment Setup (Ubuntu 16.04)
Document description: This article is based on [ Official Documents In light of its own practice, there has been a slight reduction in the common installation steps (mainly due to the official consideration of various installation environments, this article is mainly limited to Ubuntu 16.04).
system r ...
Posted by thebay on Thu, 04 Jun 2020 12:12:38 -0700
python learning notes - common package, module introduction
Python commonly used modules are
calendar
time
datetime
timeit
os
shutil
zip
math
string
Theoretically, all the above modules should be imported first, and string is a special case
calendar, time, datetime refer to Chinese meaning
calendar
Calendar related modules
Import before use
import calen ...
Posted by kevin7 on Thu, 04 Jun 2020 11:40:39 -0700
Python grammar learning
I want to learn about crawlers recently, but I can't understand Python, so I can only learn the script language from the syntax.
In my understanding, Python means the serpent, which can be seen from its icon that the two snakes are intertwined with each other.
The purpose o ...
Posted by dyconsulting on Thu, 04 Jun 2020 09:27:21 -0700
How to install all dependent packages offline
When we deploy something in an environment without public network, it is often a headache, because we may need a variety of dependency packages, which also have many dependencies. If we don't package and download all the dependency packages at one time, we can understand what Russian dolls are in the process of downloading..
1, os dependency pa ...
Posted by chacha102 on Thu, 04 Jun 2020 05:19:28 -0700
Detectron benchmark 12
By Facebook research
Compile Flin
Source: Github
Benchmarking
Here, we benchmark the training speed of Mask R-CNN in detectron 2 based on some other popular open source implementations of Mask R-CNN.
set up
Hardware: 8 NVIDIA V100 with NVLink.
Software: Python 3.7, CUDA 10.0, cuDNN 7.6.4, PyTorch 1.3.0 (link( https://download.pytorch.org/ ...
Posted by johnkelly on Tue, 02 Jun 2020 21:27:10 -0700
pydbclib: a general database operation tool for python
pydbclib It is a general python relational database operation toolkit. It uses a unified interface to operate various relational databases (such as oracle, mysql, postgres, hive, impala, etc.) for addition, deletion, and query. It is a connection driver package for various python databases (such as sqlalchemy, pymysql, CX_ The encapsulation of ...
Posted by timbuckthree on Tue, 02 Jun 2020 08:05:41 -0700
Dragonfly FM course has a wide variety of courses. Use python to climb the hot course rankings
Preface
The text and pictures in this article are from the Internet. They are for study and communication only. They do not have any commercial use. The copyright is owned by the original author. If you have any questions, please contact us in time for processing.
Now there are many kinds of courses in APP for all kinds of learning, and ...
Posted by Benmcfc on Tue, 02 Jun 2020 01:50:16 -0700
Python Foundation-16 Generator-Iterator
16. Generator-Iterator
_Iterable objects are called iterative objects, and iterator and generator functions are iterative objects. Protocols and methods for defining iterators and generators are provided in Python.
16.1 Iterative and Iterable Objects
16.1.1 Iterable Objects, Iterators, and Iterable Protocols
1. Iterable Objects
_In Python, _u i ...
Posted by kiranoleti on Mon, 01 Jun 2020 09:59:54 -0700
Day 59: Web Development Django model
by Aurora
Today, I'd like to introduce the model part of Django framework. The model is a simple and clear description of real data. It contains the necessary fields and behaviors for stored data. Django follows the DRY Principle. Its goal is that you only need to define the data model, and then you don't need to care about other miscellaneous ...
Posted by gb75 on Sun, 31 May 2020 23:09:39 -0700
LINQ performance analysis
catalog
Choose the appropriate flow operation mode
Be careful to execute immediately
Will LINQ to Objects degrade code performance
Different methods
What has been learned
The cost of using LINQ to Objects
Performance and simplicity: can't fish and bear paw have both
LINQ's advantage is not to provide any new functions, but to enable us t ...
Posted by TreColl on Sun, 31 May 2020 21:06:09 -0700