Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---------------------------------------------------------------------------
- InvalidArgumentError Traceback (most recent call last)
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in _do_call(self, fn, *args)
- 1038 try:
- -> 1039 return fn(*args)
- 1040 except errors.OpError as e:
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in _run_fn(session, feed_dict, fetch_list, target_list, options, run_metadata)
- 1020 feed_dict, fetch_list, target_list,
- -> 1021 status, run_metadata)
- 1022
- C:\Users\User\Anaconda3\envs\python35\lib\contextlib.py in exit(self, type, value, traceback)
- 65 try:
- —-> 66 next(self.gen)
- 67 except StopIteration:
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\framework\errors_impl.py in raise_exception_on_not_ok_status()
- 465 compat.as_text(pywrap_tensorflow.TF_Message(status)),
- —> 466 pywrap_tensorflow.TF_GetCode(status))
- 467 finally:
- InvalidArgumentError: You must feed a value for placeholder tensor 'Placeholder' with dtype float
- [[Node: Placeholder = Placeholder[dtype=DT_FLOAT, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]]
- During handling of the above exception, another exception occurred:
- InvalidArgumentError Traceback (most recent call last)
- <ipython-input-3-6dbdb6f227fb> in <module)
- 38 Pic4 = Pic3.reshape(1,image_size)
- 39 label=[[0,0]]
- —-> 40 Output1 = sess.run(fc_2,feed_dict={Input_Flatten:Pic4, Target:label})
- 41 Output2=Output1.astype('int32')
- 42 if Output2[0][0]+100<Output2[0][1]:
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in run(self, fetches, feed_dict, options, run_metadata)
- 776 try:
- 777 result = self._run(None, fetches, feed_dict, options_ptr,
- —> 778 run_metadata_ptr)
- 779 if run_metadata:
- 780 proto_data = tf_session.TF_GetBuffer(run_metadata_ptr)
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in _run(self, handle, fetches, feed_dict, options, run_metadata)
- 980 if final_fetches or final_targets:
- 981 results = self._do_run(handle, final_targets, final_fetches,
- —> 982 feed_dict_string, options, run_metadata)
- 983 else:
- 984 results = []
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in _do_run(self, handle, target_list, fetch_list, feed_dict, options, run_metadata)
- 1030 if handle is None:
- 1031 return self._do_call(_run_fn, self._session, feed_dict, fetch_list,
- -> 1032 target_list, options, run_metadata)
- 1033 else:
- 1034 return self._do_call(_prun_fn, self._session, handle, feed_dict,
- C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\client\session.py in _do_call(self, fn, *args)
- 1050 except KeyError:
- 1051 pass
- -> 1052 raise type(e)(node_def, op, message)
- 1053
- 1054 def _extend_graph(self):
- InvalidArgumentError: You must feed a value for placeholder tensor 'Placeholder' with dtype float
- [[Node: Placeholder = Placeholder[dtype=DT_FLOAT, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]]
- Caused by op 'Placeholder', defined at:
- File "C:\Users\User\Anaconda3\envs\python35\lib\runpy.py", line 193, in _run_module_as_main
- "main", mod_spec)
- File "C:\Users\User\Anaconda3\envs\python35\lib\runpy.py", line 85, in _run_code
- exec(code, run_globals)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel_launcher.py", line 16, in <module>
- app.launch_new_instance()
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\traitlets\config\application.py", line 658, in launch_instance
- app.start()
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\kernelapp.py", line 477, in start
- ioloop.IOLoop.instance().start()
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\zmq\eventloop\ioloop.py", line 177, in start
- super(ZMQIOLoop, self).start()
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tornado\ioloop.py", line 888, in start
- handler_func(fd_obj, events)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tornado\stack_context.py", line 277, in null_wrapper
- return fn(*args, **kwargs)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\zmq\eventloop\zmqstream.py", line 440, in _handle_events
- self._handle_recv()
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\zmq\eventloop\zmqstream.py", line 472, in _handle_recv
- self._run_callback(callback, msg)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\zmq\eventloop\zmqstream.py", line 414, in _run_callback
- callback(*args, **kwargs)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tornado\stack_context.py", line 277, in null_wrapper
- return fn(*args, **kwargs)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\kernelbase.py", line 283, in dispatcher
- return self.dispatch_shell(stream, msg)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\kernelbase.py", line 235, in dispatch_shell
- handler(stream, idents, msg)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\kernelbase.py", line 399, in execute_request
- user_expressions, allow_stdin)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\ipkernel.py", line 196, in do_execute
- res = shell.run_cell(code, store_history=store_history, silent=silent)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\ipykernel\zmqshell.py", line 533, in run_cell
- return super(ZMQInteractiveShell, self).run_cell(*args, **kwargs)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\IPython\core\interactiveshell.py", line 2683, in run_cell
- interactivity=interactivity, compiler=compiler, result=result)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\IPython\core\interactiveshell.py", line 2787, in run_ast_nodes
- if self.run_code(code, result):
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\IPython\core\interactiveshell.py", line 2847, in run_code
- exec(code_obj, self.user_global_ns, self.user_ns)
- File "<ipython-input-1-87cc4b3aa5fb>", line 6, in <module>
- saver = tf.train.import_meta_graph('Localization_On_CNN_Save-1.meta')
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\training\saver.py", line 1595, in import_meta_graph
- **kwargs)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\framework\meta_graph.py", line 499, in import_scoped_meta_graph
- producer_op_list=producer_op_list)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\framework\importer.py", line 308, in import_graph_def
- op_def=op_def)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\framework\ops.py", line 2336, in create_op
- original_op=self._default_original_op, op_def=op_def)
- File "C:\Users\User\Anaconda3\envs\python35\lib\site-packages\tensorflow\python\framework\ops.py", line 1228, in init
- self._traceback = _extract_stack()
- InvalidArgumentError (see above for traceback): You must feed a value for placeholder tensor 'Placeholder' with dtype float
- [[Node: Placeholder = Placeholder[dtype=DT_FLOAT, shape=[], _device="/job:localhost/replica:0/task:0/cpu:0"]()]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement