ef784a5b9046b1861de9d7ebba06e2d51a87c0cd,gluonbook/utils.py,,get_data_ch7,#,165
Before Change
def get_data_ch7():
Get the data set used in Chapter 7.
num_inputs = 2
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):
Get text label for fashion mnist.
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):
Get text label for fashion mnist.
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 9
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: GPflow/GPflow
Commit Name: d1ac7b831ad36cd0e4bdd7980819f83208345148
Time: 2018-02-07
Author: alex.ialongo@gmail.com
File Name: gpflow/expectations.py
Class Name:
Method Name: _expectation
Project Name: GPflow/GPflow
Commit Name: bb099e4c5b48329b842dbf9884f086f7b514bc0a
Time: 2020-03-16
Author: dutordoirv@gmail.com
File Name: gpflow/models/model.py
Class Name: GPModel
Method Name: predict_f_samples