Sleeba Paul

Results 6 comments of Sleeba Paul

``` Traceback (most recent call last): File "coreml_convert.py", line 3, in coreml_model = coremltools.converters.keras.convert('yolov3-tiny.h5', input_names='input_1', image_input_names='input_1', output_names="leaky_re_lu_11", image_scale=1/255.) File "/usr/local/lib/python3.6/site-packages/coremltools/converters/keras/_keras_converter.py", line 747, in convert return _MLModel(spec) File "/usr/local/lib/python3.6/site-packages/coremltools/models/model.py", line 153,...

@benkelaci I've edited `coreml-convert.py` and this worked for me. ``` import coremltools coreml_model = coremltools.converters.keras.convert('yolov3-tiny.h5', input_names='image', image_input_names='image', image_scale=1/255.) coreml_model.input_description['image'] = 'Input image' coreml_model.author = 'Original paper: Joseph Redmon, Ali Farhadi'...

Thanks for the reply. I'm finding a hard time setting up the third-party libraries you've mentioned. I'm on an `Ubuntu 18.04` machine with `Qt 5.12.2`. I've installed `boost`, `loki` and...

I've setup the `.prf` files and copied the `custom_mkspecs` folder to my Qt compiler folder under `mkspecs`. When I try to compile the `CoreLibrary` project, I get the following linking...

Thanks for your update. I did uncheck the shadow build, and copy `.prf` files to the `features/unix` folder and the linking issue is over. But I've a new error which...

That seems not working. The same error popped again. I tried `find /usr/include/ -name "stdlib.h"` and found the file in the directory. Not sure it is the GCC or `build-essentials`...