具有多个输入参数和多个输出参数的神经网络

时间:2019-12-01 13:40:51

标签: python tensorflow neural-network

我已经开始处理Tensorflow。 在关于Udacity的练习中,我学会了创建一个神经网络,该网络可以将摄氏温度转换为华氏温度。 为了训练神经网络,给出了3个示例:

celsius_q = np.array([-40, -10, 0, 8, 15, 22, 38], dtype=float)
fahrenheit_a = np.array([-40, 14, 32, 46, 59, 72, 100], dtype=float)

现在,我想处理一个更复杂的问题。 我有一个测量系列,以3个测量系列为例。对于每个测量系列,我都有4个输入参数(输入)和3个相应的测量值(输出)。

Data

我现在想创建一个神经网络,并给它提供3个测量序列进行训练。 然后我要输入一组输入参数,然后神经网络应该给我输出。

我从有关Udacity的练习中获取了现有代码,并尝试将其转换为用例。

不幸的是,我还没有取得成功。代码在这里:

导入

import tensorflow as tf
import numpy as np

设置训练数据

inputMatrix = np.array([(100,230,0.95,100),
                        (200,245,0.99,121),
                        ( 40,250,0.91,123)],dtype=float)
outputMatrix = np.array([(120, 5,120),
                         (123,24,100),
                         (154, 3,121)],dtype=float)
for i,c in enumerate(inputMatrix):
print("{}Input Matrix={}Output Matrix".format(c,outputMatrix[i]))

创建模型

l0 = tf.keras.layers.Dense(units = 4, input_shape = [4])
l1 = tf.keras.layers.Dense(units = 64)
l2 = tf.keras.layers.Dense(units = 128)
l3 = tf.keras.layers.Dense(units = 3)

model = tf.keras.Sequential([l0,l1,l2,l3])

编译模型

model.compile(loss='mean_squared_error', optimizer=tf.keras.optimizers.Adam(0.1))

训练模型

history = model.fit(inputMatrix,outputMatrix,epochs=500,verbose=False)
print("Finished training the model!")

显示训练统计信息

import matplotlib.pyplot as plt
plt.xlabel('Epoch Number')
plt.ylabel('Loss Magnitude')
plt.plot(history.history['loss'])

使用模型预测值

print(model.predict([120,260,0.98,110]))`

我认为有一个问题是,在“设置培训数据”下,这3个测量系列无法正确实施。

如果我在“训练模型”下执行代码,则训练会非常迅速地完成,而对于如此复杂的任务则不是这种情况。

我希望有人可以帮助我逐步学习并解决此问题。

1 个答案:

答案 0 :(得分:0)

我在代码中看到的唯一问题是预期的输入形状为1,4形状

print(model.predict(np.array([120,260,0.98,110]).reshape(1,4)))