Ilan Aizelman
Ilan Aizelman
Hi, Have anyone tried computing FLOPs on BLIP models? If yes I'd love to know which python package have you used to accomplish that. Thanks!
Hi, I'm trying to think of an algorithm which can use PySceneDetect's shot detection and combine these shots into one single scene. For example if I have 3 different scenes...
Hi, thanks for this repo! Have you tried using BLIP instead of CLIP?
Hi, I'm trying to download MSR-VTT annotations, It asks for permissions which I don't have in order to download it. Any help is highly appreciated!
Hi, I've used the following code to convert: ``` # Convert SavedModel using TF-TRT def convert_model_to_trt(): params = trt.DEFAULT_TRT_CONVERSION_PARAMS._replace( precision_mode=trt.TrtPrecisionMode.FP16, is_dynamic_op=True) # is_dynamic_op=True converter = trt.TrtGraphConverterV2( input_saved_model_dir="./tmp", conversion_params=params) converter.convert() converter.save("./tmp/yolov3_trt")...
Hi! @tridao Thanks to @agiwave for the base code to get me started. (Implementation on CPU which isn't fully working) I present an implementation on GPU which is working below....