Shijie Lin
Shijie Lin
@villanuevab Hi,villanuevab. 30 Fps is really amazing to me! Would you please share something about how you modified the squeezeDet ? (code or tutorial) I will be really greatful about...
(update) I follow the tutorial given by tensorflow, and modify some lines in demo.py from ` with tf.Session(config= tf.ConfigProto(allow_soft_placement=True)) as sess:` to ``` config = tf.ConfigProto(allow_soft_placement=True) config.graph_options.optimizer_options.global_jit_level = tf.OptimizerOptions.ON_1 with...
(update) Seems I haven't compile tenserflow from source and open the jit support. I follow the official guide and install tenserflow 1.0.0, and luckly it works. I see the speed...
@muthiyanbhushan I am also confuse about this question, have you solved that ? I simply delete .index in model.ckpt-99999.index but it seems not working properly.
and that is my error tensorflow.python.framework.errors_impl.NotFoundError: Tensor name "fire7/squeeze1x1/biases" not found in checkpoint files ./data/model_checkpoints/squeezeDet/model.ckpt-999 [[Node: save/RestoreV2_50 = RestoreV2[dtypes=[DT_FLOAT], _device="/job:localhost/replica:0/task:0/cpu:0"](_recv_save/Const_0, save/RestoreV2_50/tensor_names, save/RestoreV2_50/shape_and_slices)]] [[Node: save/RestoreV2_51/_63 = _Recv[client_terminated=false, recv_device="/job:localhost/replica:0/task:0/gpu:1", send_device="/job:localhost/replica:0/task:0/cpu:0", send_device_incarnation=1, tensor_name="edge_257_save/RestoreV2_51",...
(update) Through learning tensorflow, I found that Tensorflow saved the checkpoint files in seperate files, and we dont need to care about how many files, just read it. To me,...
我对照了一下,似乎原来在driver1中的代码在2中并没有实现 例如lds_lidar.cpp,这部分的解码的代码好像在2中都没有。
Same issue here
解决了吗?
@solarjoe Put the figure code outside the loop, and just clear the figure not close the window. Then you will find the magic happen. ` import numpy as np from...