简体   繁体   中英

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

I'm trying to create a regression model for a dataset from .csv file but I'm getting the error

hape must be rank 2 but is rank 0 for 'MatMul_4' (op: 'MatMul') with input shapes: [], [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')

I tried to multiply directly using operators also but I am getting the same error

m is just a scalar variable, so you can't do a matrix multiplication with it. You said multiplying directly doesn't work, but it seems to work fine for me:

y_model = m*xph + b

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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