Ubuntu Builds Tenorflow-gpu Edition Environment
Install graphics card driver
Installation of cuda 10.1.2
cuda official website: cuda-10.1
Installation Based on Installation Procedure on Official Website
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-ubuntu1804.pin
sudo mv cuda-ubuntu1804.pin /etc/apt/preferenc ...
Posted by simonp on Wed, 02 Oct 2019 23:51:49 +0200
Integration of SparkPython and Hbase for Real-time Computing of Large Data Series
1. Preparations (the tool library used will be placed at the end for download)
1.1. Install thrift
cmd>pip install thrift
I use Anaconda3. The downloaded packages will be stored in the / Lib/site-packages / directory. If you don't use Anaconda3, you can put the following two folders directly ...
Posted by JacobYaYa on Tue, 01 Oct 2019 22:21:56 +0200
python analysis of pictures to get the shooting time and location
A very simple and interesting project recently discovered is to obtain the time of shooting and the GPS coordinates when shooting by analyzing the EXIF information of mobile phone photos. Then, the location corresponding to GPS can be translated by g ...
Posted by Stryker250 on Wed, 18 Sep 2019 12:22:48 +0200
C++ const reference pointer
First, briefly recall the nature of a constant:
int main()
{
const int buffSize = 512;
buffsize = 512; //X buffSize is constant
}
At initialization:
const int i = get_val(); //_Runtime Initialization
const int j = 42; //_compile-time initialization
const int k; //XK uninitialized
When one object is used to in ...
Posted by kingman65 on Mon, 16 Sep 2019 06:02:54 +0200
Python Rapidly Develops Scrapy Intensive Search Engine-Scapy Simulates Logon and Knows Inverted Text Verification Code Recognition
The first step. First download the inverted character verification code recognition program of the Great God.
Download address: https://github.com/muchrooms/...
Note: This program relies on the following module packages
Keras==2.0.1 Pillow==3.4.2 jupyter==1.0.0 matplotlib==1.5.3 numpy==1.12.1 scikit-learn==0.18.1 tensorfl ...
Posted by Brudus on Wed, 04 Sep 2019 16:16:17 +0200
Python Wechat Public Number Course Foundation: Transmitting and Sending Text Messages
1. Overview:
In this tutorial, you will learn how to use Huawei Cloud Elastic Cloud Server (hereinafter referred to as ECS) to build the Wechat Public Number Processing Desk, write the corresponding Wechat Message Processing Logic Code in Python ...
Posted by orange08 on Thu, 29 Aug 2019 08:22:39 +0200
After learning Python, my brother made an automatic mine clearance program for his companion, and he enjoyed it every day.~
Links to the original text: https://zhuanlan.zhihu.com/p/78608878
Automatic mine clearance is generally divided into two kinds, one is to read memory data, and the other is to get data by analyzing pictures, and through the simulation of ...
Posted by beboni on Sat, 17 Aug 2019 14:48:01 +0200
What can you do with Python? Visualize Wechat Friends with Pyecharts. It's cool.
Recently, we are studying the use of pyecharts, which is a visual tool of python. Then we want to play together with Wechat and see the effect directly.
[Img-0BvoMCek-1565876828599 (https://upload-images.jianshu.io/upload_images/17885815-83e5faa94bc6 ...
Posted by jarriola on Thu, 15 Aug 2019 16:15:52 +0200
Realization of Python Intelligent Bank Card Recognition System
Part I
jacky's consistent idea is to learn not from the surface, but from the essence. Technology is always philosophy.
The video demo of this article is as follows:
https://v.qq.com/x/page/v0890lmkjfo.html
(1) Evolution history of PyQt5
To clarify what PyQt5 is, let's first briefly talk about what Qt is.
1. What is Qt?
First, what is Qt abstra ...
Posted by daddymac on Wed, 14 Aug 2019 12:37:21 +0200
Centos 7.4 Install Jupyter NoteBook + TensorFlow Tutorial
Preface
Looking at the learning video these days, I see a very interesting thing Jupyter Notebook, but the video is installed locally.So I thought that if the server I bought was idle, I would take it out to install one so that it could be used in the cloud.
0. Installation Page
I use pyenv's virtual environment directly to install here, and I ...
Posted by siwis on Thu, 08 Aug 2019 20:07:15 +0200