iOS Aurora sharing integrated graphics tutorial (latest version in 2020)
Article directory
iOS Aurora sharing integrated graphic tutorial
1. iOS SDK integration guide of Aurora official website
2. Xcode creates a project and obtains the Bundle Identifier
3. Aurora platform application management create application and apply for appkey
4. Xcode project, pod import library ...
Added by thegreatdanton on Thu, 16 Jan 2020 18:05:40 +0200
Predicting house prices: artificial intelligence regression problem
We've asked three classic questions before. They are:
Two-Category Questions (Tendency Judgment of Movie Comments)
Multi-Category Questions (Categorize News by Subject)
Regression problem (estimating real estate prices based on real estate data)
We solved the first two problems, and today we solved the third, the regression problem.
Whether i ...
Added by tolputt-craig on Wed, 15 Jan 2020 18:10:33 +0200
LVS load balancing cluster (Theory + experiment)
Article directory
Preface:
1, Overview of enterprise cluster application
1.1 basic overview of cluster
1.2 enterprise cluster classification
1.3 analysis of load balancing cluster working mode
1.3.1 NAT mode
1.3.2 TUN mode
IP Tunnel
1.3.3 DR mode
1.4 load balancing cluster architecture
1.53 about ...
Added by faraway on Wed, 15 Jan 2020 12:23:01 +0200
Do Titanic passenger survival analysis with Kaggle
Learn Python data analysis ideas and methods by referring to kaggle: https://www.kaggle.com/startupsci/titanic-data-science-solutions
There are some charts in the micro professional video in the middle, which are completely followed up. In fact, we have a preliminary understanding of how to recog ...
Added by teguh123 on Wed, 15 Jan 2020 07:02:03 +0200
Details of event driven process of nginx based on epoll model
Epoll is an event driven model, which is one of the important reasons why nginx can efficiently handle client requests. From the flow point of view, the use of epoll model is mainly divided into three steps: the creation of epoll handle, listening to the addition of file descriptors and the triggering of waiting events. This paper will introduc ...
Added by gotissues68 on Tue, 14 Jan 2020 08:22:48 +0200
vue for Web picture waterfall streaming + drop-down refresh + pull-up load more
1. Idea analysis and effect diagram
Use vue to achieve a waterfall streaming effect, load network pictures, with drop-down refresh and pull-up load more features.Then, for the realization of these effects, put forward ideas:
Labels are appended to show the effect in turn according to the order in which the data is loaded.
Choose which way t ...
Added by tsiedsma on Mon, 13 Jan 2020 18:43:11 +0200
Notes on tensorflow of yongxing-9 initial experience of all connected MNIST
1, What is a fully connected neural network?
Fully connected neural network, as the name implies, is a connection between any two nodes between two adjacent layers. Fully connected neural network is the most common model (for example, compared with CNN). Because it is fully connected, it will have mor ...
Added by SusieWoosey on Sun, 12 Jan 2020 08:43:37 +0200
The reason why a simple linear regression network has more and more errors in training
1 problems found
There are A simple linear regression model For example, paste the following content into the new test.py:
#Loading Library
import paddle.fluid as fluid
import numpy as np
#Generate data
np.random.seed(0)
outputs = np.random.randint(5, size=(10, 4))
res = []
for i in range(10):
...
Added by jack_wetson on Sun, 12 Jan 2020 08:18:33 +0200
Version compatibility of PyTorch and TensorboardX
1. Version compatibility between PyTorch and TensorboardX
In the use of tensorflow, people often use tensorboard to visualize data, such as the change of model structure and loss function. In fact, PyTorch can also use TensorboardX to visualize data. PyTorch has its own visdom module to realize visual ...
Added by allelopath on Fri, 10 Jan 2020 16:44:03 +0200
Bramble pie 3B + set up gogs service git service
Project homepage: https://gogs.io
Download page: https://gogs.io/docs/installation/install_from_binary
Download address: https://dl.gogs.io/0.11.91/gogs_0.11.91_raspi_armv7.tar.gz
==Note: I log in with the root account to perform all operations. If pi account is used for operation, please add sudo before all instructions==
install
gogs is ...
Added by exasp on Thu, 09 Jan 2020 12:08:55 +0200