rokopi-byte
rokopi-byte
I second that, more vCPU would be very useful
you have to redefine the custom objects like hard_wish in your inference script and pass them to the load_model function
Yes, this is what I did.. ``` def relu6(x): """Relu 6 """ return K.relu(x, max_value=6.0) def hard_swish(x): """Hard swish """ return x * K.relu(x + 3.0, max_value=6.0) / 6.0 dependencies...
@AlexNik which user agent are you using ?
@agavili are you sure you are using the latest version of instaloader (4.9.5)? I just tried the following and works: from instaloader import Instaloader, Hashtag username = password = L...
Hi, any news on this ? that's a very big issue.. I observe memory leak in CPU. Even using `gc.collect()` before every call to `reader.readertxt` after a while you go...
Same issue here..That function requires a folder named "characters/".. but what should we put in that folder ?
At the end the only way I found to solve the problem is to do everything in a multiprocessing process. Not a very clean solution, it adds a little overhead,...
It's a late response, but maybe can help future readers. This is due to OpenCV version. With OpenCV > 4.X.X coordinate argument for function cv.rectangle must be tuple of integer....
Same here: Python 3.10.6 labelImg 1.8.6 Creating a rectangle (just press w) makes the program crash with that error. Any fix ?