Ilya Zhenin
Ilya Zhenin
I've seen few issues where people were trying to train the network, but cant find any training code. Is there anything available? I'm interested in loss function, pipeline for data...
In paper authors say that "_To define a meaningful scale- and shift-invariant loss, a sensible requirement is that prediction and ground truth should be appropriately aligned with respect to their...
Is there a way to replace CenterNet detector with Yolov5? Apparently your model build deep into Detectron2 package and Im not sure how to go about replacing detector.
Im generating header sources in folder not within build directory: ``` gen_rpc = generator(protoc, \ output : [ '@[email protected]', '@[email protected]','@[email protected]', '@[email protected]'], arguments : ['--proto_path=@CURRENT_SOURCE_DIR@/' + proto_path,'--grpc_out=@CURRENT_SOURCE_DIR@/' + grpc_proto_include_dir,'--cpp_out=@CURRENT_SOURCE_DIR@/' + grpc_proto_include_dir,...
Im using nvcr.io/nvidia/tritonserver:23.10-py3 container for my inferencing, using C++ GRPC API. There is several models in container, Yolov8-like architecture in Tensorrt plus a few Torchscript models. When inferencing I notice...
I installed prometheus-cpp following instructions from Ubuntu apt. Seems like it only supports HTTP 0.9, because `curl http://127.0.0.1:9090/metrics` returns `Received HTTP/0.9 when not allowed` and `curl --http0.9 http://127.0.0.1:9090/metrics` works. Is...
I created server that supposed to provide MJPEG stream to browser. Here is implementation: ``` void VideoStreamer::streamVideoFrames(const Pistache::Rest::Request& request, Pistache::Http::ResponseWriter response) { std::shared_ptr shared_response = std::make_shared(std::move(response)); auto cameraId = request.param(":cameraId").as();...