fatih akyon

Results 55 issues of fatih akyon

Hello thanks a lot for this great project! I want to upgrade the cuda support to 11 in the docker files. Is there anything i should consider while doing that...

enhancement
help wanted
good first issue

Hello all! As far as I understood, it is not possible to perform real-time video classification using flash since it only supports prediction from folders/video files. If you guide me...

enhancement
help wanted

In the [paper](https://arxiv.org/abs/2202.06934) we only utilized standard NMS and IOU. The NMM and IOS will be discussed in a follow-up paper. For now you can consider NMM as non-maximum merging,...

documentation

- [Introduction to SAHI](https://medium.com/codable/sahi-a-vision-library-for-performing-sliced-inference-on-large-images-small-objects-c8b086af3b80) - [Official paper](https://arxiv.org/abs/2202.06934) (NEW) - [Video inference support is live](https://github.com/obss/sahi/issues/457) (NEW) - [Kaggle notebook](https://www.kaggle.com/remekkinas/sahi-slicing-aided-hyper-inference-yv5-and-yx) - [Satellite object detection](https://blog.ml6.eu/how-to-detect-small-objects-in-very-large-images-70234bab0f98) - [Error analysis plots & evaluation](https://github.com/obss/sahi/issues/356) - [Interactive...

documentation

automatically check if SAHI version is up-to-date similar to https://github.com/layerai/sdk/pull/165

enhancement
help wanted

Thanks to @madenburak, starting from v0.9.3, `sahi` brings full support for sliced/standard inference for video input format for all MMDetection/Detectron2/YOLOv5 models :fire: ![sahi-video-inf](https://user-images.githubusercontent.com/34196005/167277618-9552add8-4f7f-49b9-ada4-1047ca3ce754.gif) - Just give video file as source:...

documentation
enhancement

https://github.com/obss/sahi/blob/main/demo/inference_for_detectron2.ipynb https://github.com/obss/sahi/blob/main/demo/inference_for_yolov5.ipynb https://github.com/obss/sahi/blob/main/demo/inference_for_mmdetection.ipynb https://github.com/obss/sahi/blob/main/demo/inference_for_huggingface.ipynb Instead of: ```python from sahi.models import Yolov5DetectionModel # load yolov5 models detection_model = Yolov5DetectionModel( model_path='yolov5s.pt', image_size=640, ) ``` Replace with this: ```python from sahi import AutoDetectionModel...

documentation
enhancement
help wanted

using yolov5 models from [this project](https://app.layer.ai/layer/yolov5-object-detection?tab=assets) or [that project](https://app.layer.ai/layer/yolov5) ```python from sahi import AutoDetectionModel detection_model = AutoDetectionModel.from_layer("layer/yolov5/models/yolov5s") ```

documentation
enhancement
help wanted

✔️ Install sahi: ```bash pip install -U sahi ``` ✔️ Create COCO formatted prediction results using COCO formatted dataset: ![coco_prediction](https://user-images.githubusercontent.com/34196005/149318888-71e693ae-8b23-4ee4-80a0-b0107db7f6e7.gif) ```bash sahi predict --source image_dir/ --dataset_json_path dataset.json --model_type mmdet --model_path...

documentation

✔️ Install sahi: ```bash pip install -U sahi ``` ✔️ Install fiftyone: ```bash pip install -U fiftyone ``` ✔️ Start a fiftyone web app with your predictions results: ![fiftyone_result](https://user-images.githubusercontent.com/34196005/149321540-e6ddd5f3-36dc-4267-8574-a985dd0c6578.gif) ```bash...

documentation