Vladimir Kulyashov
Vladimir Kulyashov
I fell into this problem too. The cause is: SOLVER: AMP: ENABLED: true Set it to False (use FP32) and the error disappears I've tried to debug but wasn't able...
Thank you! And what about usage of [CSPDarknet53 config](https://github.com/hustvl/SparseInst/blob/main/configs/sparse_inst_cspdarknet53_giam.yaml)? I've tried passing its config to train_net.py but failed with the following error: ```Traceback (most recent call last): File "tools/train_net.py", line...
@wondervictor I was able to get it working by commenting out several lines in `backbones/cspnet.py` which referred to "unexpected kwarg" TypeError
Stuck in the same place, please provide a working example on how to save a tf2/keras model that accepts base64 as input. Thanks in advance!
Long time short - I was able to do it by myself. Here's a working example with TF 2.4.1 and TF Serving 2.4.1 ``` python def preprocess_input(base64_input_bytes): def decode_bytes(img_bytes): img...
@oren-allegro Thank you for a quick response, Oren! Unfortunately it didn't help. Here is my complete `docker-compose.yml ` ``` yml version: "3.6" services: apiserver: command: - apiserver container_name: clearml-apiserver image:...
@oren-allegro Any updates?
@jokokojote hi 👋🏼 Unfortunately I haven't. Under the hood it works correctly in my case. The only problem is that UI gives you incorrect information about the port of the...
+1 I've used `nvidia/cuda:12.2.2-devel-ubuntu22.04` docker image. It didn't build. Then I've compiled from source C++14 and that made the installation fail as nvcc works with C++12 and below I have...