ef784a5b9046b1861de9d7ebba06e2d51a87c0cd,gluonbook/utils.py,,get_data_ch7,#,165
Before Change
num_examples = 1000
true_w = [2, -3.4]
true_b = 4.2
features = nd.random.normal(scale=1, shape=(num_examples, num_inputs))
labels = true_w[0] * features[:, 0] + true_w[1] * features[:, 1] + true_b
labels += nd.random.normal(scale=0.01, shape=labels.shape)
return num_inputs, num_examples, true_w, true_b, features, labels
def get_fashion_mnist_labels(labels):
After Change
def get_data_ch7():
Get the data set used in Chapter 7.
data = np.genfromtxt("../data/airfoil_self_noise.dat", delimiter="\t")
data = (data - data.mean(axis=0)) / data.std(axis=0)
return nd.array(data[:, :-2]), nd.array(data[:,-1])
def get_fashion_mnist_labels(labels):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 5
Instances Project Name: d2l-ai/d2l-zh
Commit Name: ef784a5b9046b1861de9d7ebba06e2d51a87c0cd
Time: 2018-08-28
Author: muli@cs.cmu.edu
File Name: gluonbook/utils.py
Class Name:
Method Name: get_data_ch7
Project Name: eriklindernoren/PyTorch-GAN
Commit Name: f37d0f2da815d3674dbba5ef1d8711357348c94f
Time: 2018-05-07
Author: eriklindernoren@live.se
File Name: implementations/wgan/wgan.py
Class Name:
Method Name:
Project Name: AIRLab-POLIMI/mushroom
Commit Name: d004f47d24c87933e668fc3efcd8b6cd448d4b72
Time: 2017-09-29
Author: carloderamo@gmail.com
File Name: mushroom/algorithms/dqn.py
Class Name: WeightedDQN
Method Name: _next_q