繁体   English   中英

如何解决“hape必须排名2但是'MatMul_4'(op:'MatMul')排名为0的输入形状:[],[3]。”

[英]how to fix “hape must be rank 2 but is rank 0 for 'MatMul_4' (op: 'MatMul') with input shapes: [], [3].”

我正在尝试为.csv文件中的数据集创建回归模型,但我收到了错误

hape必须是等级2,但对于输入形状为'MatMul_4'(op:'MatMul')的等级为0:[],[3]。

import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
import tensorflow as tf

#importing data
dataset = pd.read_csv('Salary_Data.csv')
x_data = dataset.iloc[:,0].values
y_data = dataset.iloc[:,1].values

#split data into train and test
from sklearn.model_selection import train_test_split
x_train, x_test, y_train, y_test =train_test_split(x_data, y_data, test_size = 0.3, random_state = 0, shuffle = True)


#regression using TF

m = tf.Variable(0.45, dtype= tf.float64)
b = tf.Variable(0.15, dtype= tf.float64)

batchsize = 3

xph = tf.placeholder(tf.float64,[batchsize])
yph = tf.placeholder(tf.float64,[batchsize])

y_model = tf.add(tf.matmul(m, xph), b)

error = tf.reduce_mean(tf.square(yph - y_model))

optimizer = tf.train.GradientDescentOptimizer(learning_rate= 0.001)
train = optimizer.minimize(error)

init = tf.global_variables_initializer()

#session
with tf.Session() as sess:
    sess.run(init)

    batches = 7

    for i in range(batches):
        ranid = np.random.randint(len(x_train),size = batchsize)
        feed = {xph:x_train[ranid],yph:y_train[ranid]}
        sess.run(train,feed_dict = feed)

    teta1, teta0 = sess.run([m,b])



plt.scatter(x_train, y_train, color = 'red')

我试图直接使用运算符,但我得到相同的错误

m只是一个标量变量,所以你不能用它进行矩阵乘法。 你说直接乘法不起作用,但它似乎对我来说很好:

y_model = m*xph + b

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM