Richard Kuo

Results 48 comments of Richard Kuo

The fix is to modify ssd_layers.py line #32 and #84 : if K.image_dim_ordering() == 'tf': to if K.image_data_format() == 'channels_last': Then it runs !

It seems you are running it on PC, because you have message of C:/Users/ My example is for Kaggle, just go to https://kaggle.com/rkuo2000/airsim-end-to-end-learning and do [Copy & Edit] to replicate...

> Had the same problem. > Resolved it by changing > `x = image.flip_axis(x, img_col_axis)` to `x = image.image.flip_axis(x, img_col_axis)` > and > `x = image.flip_axis(x, img_row_axis)` to `x =...

After fixing the above error, I got a Runtime error: File "/kaggle/working/CIT/networks.py", line 228, in forward x = x.view(x.size(0), -1) RuntimeError: view size is not compatible with input tensor's size...

got "Killed" with 2GB DRAM, after I tightly connect my 3 DRAM modules, python3 train.py keeps running with 6GB DRAM. free -m shows it took ~2.3GB to run wavenet, so...

make sure you have enough memory (>3GB)

My bad, somehow my camera doesn't work, I replug in, and it runs fine now. Thanks ! BTW, using face landmark can not recognize oriental faces well, (cause some has...

YOLOv5 runs fine on Kaggle, I have several YOLOv5 applications on Kaggle. I create the notebook for teaching AI course, not for competitions. Anyway, I changed it back to YOLOv5+...

[yolov5-strongsort-osnet.ipynb ](https://drive.google.com/file/d/1dCIFNjtuFcZBLPw5OELGaZ8lPz6n31-_/view?usp=sharing) you can try it on kaggle.com