azmathmoosa
azmathmoosa
@tavildar I tried your code and get this error in `python 3` ``` 2018-05-15 22:51:57.949483: I tensorflow/core/common_runtime/gpu/gpu_device.cc:1195] Creating TensorFlow device (/device:GPU:0) -> (device: 0, name: GeForce GTX 1080, pci bus...
It continues to download the old track for some time. In the image, track 1 is being played but on switching to 11, it continues to download 1 for about...
Any update on this? What worked for me was someone's suggestion of using a wrapper class around VideoReader that would call `seek(0)`. ```python class VideoReaderWrapper(VideoReader): def __init__(self, *args, **kwargs): super().__init__(*args,...
is this supported yet?
@TropComplique I am trying to freeze your graph again in TF 1.20. When I follow your instructions given above, `save.py` doesn't work. I created a new directory called `models/run00` and...
Success! I had to place a new file called checkpoint with the following content ``` model_checkpoint_path: "model.ckpt-240000" all_model_checkpoint_paths: "model.ckpt-240000" ``` My directory structure is now ``` --save.py --create_pb.py --... --models/...
@Andrew-Shay Ubuntu 16.04 x64. The issue has to do with wxPython 4.0. I think.
You may need to rebuild darknet. Use the one here https://github.com/AlexeyAB/darknet
Is there any proper solution for this? Can't set abstract to False for EmbeddedField and ArrayField. Fails to serve the purpose.
I was trying to use inside docker container with ubuntu 18.04 image. This worked for me ``` $ rm /usr/local/lib/python3.6/dist-packages/pptk/libs/libz.so.1 $ ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/local/lib/python3.6/dist-packages/pptk/libs/libz.so.1 ```