Jeremy Cohen

Results 25 comments of Jeremy Cohen

Yes sure, thank you for fast answer. I want to test Yolo v3 on camera images (from ROS). I don't really have code to share but the basics is this...

OK, will try thank you ! But graph would be initialized at init function with weights loading in the init function and detection in the pipeline function (called on every...

If you don't mind, I'd like to share my approach for the video thing : ```python # ONLY CALLED ONCE AT THE BEGINNING def setup_graph(self): # Define a Placeholder for...

Yes I figured... I think the solution might be in storing graph and calling different sessions but I didn't find how yet

That makes sense but closed session error is still present when I sess.run in the loop

Hello, I found a way by saving the session as a ckpt and then restoring the session in pipeline function. This works good given that I don't need to load...

Sure; I am trying to use your implementation of Yolov3 to detect obstacles on ROS (Robot Operating System). Just assume it works in a loop as a webcam. ```python class...

As I told you earlier, If I do ```python with self.sess: self.sess.run(boxes...) ``` I have error : Attempted to use closed session I'm actually saving a session for nothing here...

Yes with ` self.sess.close()` but the Closed Session error is still here

Yes, the result is Attempted to use a closed session. + I am trying to avoid the ` sess.run(self.load_ops)` as it is time consuming. My loop code is just :...