Tensorflow visual programming
Install tensoflow 1.0
Linux/ubuntu:
python2.7:
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp27-none-linux_x86_64.whl
python3.5:
pip3 install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.1-cp35-cp35m-linux_x86_64.whl
Maxos:
python2:
pip install https://storage.googleapis.com/te ...
Posted by kr3m3r on Mon, 04 May 2020 08:56:13 -0700
Python orchestration & asyncio & asynchronous programming
Python orchestration & asyncio & asynchronous programming
1. Cooperation
The coroutine is a kind of micro thread, and it is a kind of context switching technology of user state. Through a thread, code blocks can be switched to each other for execution
There are several ways to implement a collaboration:
greenlet, early modules
yield ke ...
Posted by Lateuk on Mon, 04 May 2020 04:42:37 -0700
EasyAR4.0 Instructions for Use (Unity3D) - Sparse Spatial Maps
The requirements of sparse spatial maps for application environment and flat image recognition can be understood by comparison. The surroundings need to be rich enough to not have large monochrome areas and transparent areas.In addition, lighting and angles can have an impact on map building and positioning.
Official recommendations for buildi ...
Posted by nitediver on Sun, 03 May 2020 20:20:06 -0700
Cookie of Java Web session Technology
Conversational Technology
Session: multiple requests and responses in one session
One session: the browser sends a request to the server for the first time, and the session is established until one party disconnects
Function: share data among multiple requests within the scope of one session
Method:
Client session Technology: Cookie
Sessio ...
Posted by nakkaya on Sun, 03 May 2020 20:03:23 -0700
Using RTThread and TouchGFX to realize DIY digital instrument -- synchronous weather information
catalog:
1. Using RTThread and TouchGFX to realize DIY digital instrument (1) -- using stm32ubmx5.6 to transplant touchGFX4.132. Using RTThread and TouchGFX to realize DIY digital instrument (2) -- porting TouchGFX to RTThread system3. Using RTThread and TouchGFX to realize DIY digital instrument (3) - obtaining temperature and humidity sens ...
Posted by neogemima on Sun, 03 May 2020 15:23:52 -0700
Java learning note 24 (Integer class)
The basic data type wrapper class is introduced here. Integer is the wrapper class of int,
The methods of wrapper classes of other basic data types are almost the same as those of Integer, and one of them can be used for plenary session
Characteristics of basic data type wrapper class: used for conversion between basic data type and string
Thes ...
Posted by himani on Sun, 03 May 2020 10:58:47 -0700
Python database connection pool DBUtils
DBUtils is a module of Python used to implement database connection pool, and allows thread safe packaging of non thread safe database interface.
Two modes of connection:
Create a connection for each thread. Even if the thread calls the close method, it will not close. It just puts the connection back into the connec ...
Posted by jyhm on Fri, 01 May 2020 22:16:17 -0700
2.1 mybatis? Helloworld01 (native programming)
To learn mybatis, you can follow the official website to learn http://www.mybatis.org/mybatis-3/configuration.html ා properties
There are two ways to write mybatis? HelloWorld 2.2
Mybatis? Helloworld02 (interface programming) Now, the second way is commonly used: interface programming
Let's look at the first way:
Step:
Import jar packa ...
Posted by areid on Fri, 01 May 2020 18:08:20 -0700
For those new features that may be annoying in 11gR2, a list helps you get rid of the hassle of upgrading 11gR2
There are many friends who can't take the courage to upgrade to 11gR2 because the potential features of 11gR2 may cause trouble for the stable operation of the system after upgrade. In fact, some features introduced by Oracle in the development of new RDBMS software have good ideas, but often these ideas will bring variables to the stable Appli ...
Posted by newjsguy on Fri, 01 May 2020 17:53:49 -0700
Use of Request Request Objects and Common Operations in ThinkPHP 5.0
Use of request
First method
Add request reference in the controller header
Then call the'instance'class in the method
Then call the method:
public function index($name='name')
{
$request = Request::instance();
echo 'Request method:'.$request->method() . '<br/>';
ech ...
Posted by LordPsyan on Fri, 01 May 2020 14:02:49 -0700