Python Forum
Neural Network Enlargement
Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Neural Network Enlargement
#3
Error:
ValueError Traceback (most recent call last) <ipython-input-1-3a0b353791ec> in <module>() 100 # Train the neural network using the training set. 101 # Do it 10,000 times and make small adjustments each time. --> 102 neural_network.train(training_set_inputs, training_set_outputs, 10000) 103 104 print ("Stage 2) New synaptic weights after training: ") <ipython-input-1-3a0b353791ec> in train(self, training_set_inputs, training_set_outputs, number_of_training_iterations) 30 for iteration in range(number_of_training_iterations): 31 # Pass the training set through our neural network ---> 32 output_from_layer_1, output_from_layer_3 = self.think(training_set_inputs) 33 34 # Calculate the error for layer 3 (The difference between the desired output ValueError: too many values to unpack (expected 2)
Reply


Messages In This Thread
Neural Network Enlargement - by philphed - Jul-10-2018, 04:46 PM
RE: Neural Network Enlargement - by buran - Jul-10-2018, 05:13 PM
RE: Neural Network Enlargement - by philphed - Jul-11-2018, 06:44 AM
RE: Neural Network Enlargement - by buran - Jul-11-2018, 06:52 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Neural network and data analysis from clients survey result pthon3 2 2,005 Mar-17-2022, 02:21 AM
Last Post: jefsummers
  Multilayer Perceptron Neural Network erdemath 3 2,462 Aug-09-2021, 11:07 PM
Last Post: jefsummers
  Neural Network importance weights / coefficients jkaustin 1 2,164 Nov-10-2020, 07:44 PM
Last Post: jefsummers
  Get error message in a GAN neural network tutorial jdude50 0 1,756 Oct-22-2020, 11:11 PM
Last Post: jdude50
  Explain Me Neural Network Ai's Harshil 2 2,132 Oct-22-2020, 04:50 AM
Last Post: Harshil
  construction of Neural Network for solving Differential equations arshad 0 1,695 Jun-04-2020, 09:20 AM
Last Post: arshad
  Neural Network mensagem error Dalpi 2 2,999 May-20-2020, 04:03 PM
Last Post: Dalpi
  coding neural network programmer19890620 4 3,619 Feb-27-2020, 04:26 AM
Last Post: programmer19890620
  Why does this simple neural network not learn? PythonIsGreat 1 2,180 Aug-30-2019, 05:49 PM
Last Post: ThomasL
  First neural network: Problem with the weight factos 11112294 0 2,237 Jan-12-2019, 09:11 PM
Last Post: 11112294

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020