Kadir Nar
Kadir Nar
Hi @FateScript , I need the source code so I can write prediction code. I can't see code in hubconf.py file. Codes of other yolo models: [Yolov7](https://github.com/WongKinYiu/yolov7/blob/main/hubconf.py) [Yolov5](https://github.com/ultralytics/yolov5/blob/master/hubconf.py) My Code:...
> Thank you. After applying postprocces I get 'None'. How can I fix? Code: ``` import torch import cv2 from yolox.utils import postprocess model = torch.hub.load("Megvii-BaseDetection/YOLOX", "yolox_s") image = torch.from_numpy(cv2.imread('data/highway1.jpg'))...
> > How can I fix? > > Not sure what's in your picture. From code your posted, I believe that you might need to `cv2.resize` image to size 640(this...
For satellite images, the img_size value must be large. That's why I wanted to give a manual value. [Image](https://user-images.githubusercontent.com/34196005/142742872-1fefcc4d-d7e6-4c43-bbb7-6b5982f7e4ba.jpg) I changed the image_size parameter using the preproc function. Thank you...
SAHI + TensorFlowHub: https://github.com/kadirnar/Yolov7-SAHI/blob/main/demo/inference_for_tensorflowhub.ipynb
@jxnl Can you share sample code? I'm getting the same error.
I am creating a demo for the HuggingFace platform and I cannot install the apex library. Is there a way to skip this? How can I add this code to...
@sandeshrajbhandari I downloaded the Apex repo and updated the setup.py file. to req.txt file ```bash -v --disable-pip-version-check --no-cache-dir --no-build-isolation --config-settings \"--build-option=--cpp_ext\" --config-settings \" --build-option=--cuda_ext\" ./" ``` I added the code....
@sandeshrajbhandari , I cannot use the notebook feature on the HuggingFace platform. That's why I can't use the cd command. I git cloned the Apex repo. Then I updated the...
@belonel , Do you have a sample notebook? How can I do that?