'' 'Я работаю над проектом анализа и прогнозирования информации о наборе данных по крикету. Я столкнулся с ошибкой объекта numpy.ndarrary, который нельзя вызвать. Как мне исправить эту ошибку' ''
team1='MI'
team2='CSK'
toss_winner='CSK'
input=[dicVal[team1],dicVal[team2],'15',dicVal[toss_winner],'12','1']
input = np.array(input).reshape((1, -1))
output=model.predict(input)
print(list(dicVal.keys())[list(dicVal.values()).index(output)])
#This code works fine as there is direct initialization of team1 and team2
team1=input("Enter team-1 :") #<--numpy.ndarrary object not callable
team2=input("Enter team-2 :")
toss_winner=input("Enter toss winner :")
city=input("Enter the corresponding no for the following cities :")
venue=input("Enter the corresponding no for the following stadiums :")
toss=input("Enter the corresponding no for the following toss decision :")
input=[dicVal[team1],dicVal[team2],venue,dicVal[toss_winner],city,toss]
input = np.array(input).reshape((1, -1))
output=model.predict(input)
print(list(dicVal.keys())[list(dicVal.values()).index(output)])
'' 'здесь, в первой строке, я получаю сообщение об ошибке: объект numpy.ndarrary не вызывается. Пожалуйста, помогите мне получить это.' ''