Rutuparn Pawar

Results 18 comments of Rutuparn Pawar

> Hi,about the code "x_train_mean = x_train.mean() x_train_std = x_train.std() " , I have tested that the output is a scalar; It shouldn't be a vector with the same length...

How about converting a short portion of the video into a gif so that it can be embed it into the README?

I am facing a similar issue. I speculate that the code is broken because of sklearn.utils.linear_assignment_ which has to be changed to scipy.optimize.linear_sum_assignment Code ``` detections = [[start_point[0], start_point[1], end_point[0],...

@adityamukherjee42 Found a solution Use pip to install lap Comment out the import and use the following function. ```python def linear_assignment(cost_matrix): try: import lap _, x, y = lap.lapjv(cost_matrix, extend_cost=True)...

*sklearn.utils.linear_assignment_* was replaced with *scipy.optimize.linear_sum_assignment* since the latter was pruned in the current version. I found the above function in a previous commit. Follows these steps to fix the bug....

Calculate the time taken by each frame for a certain number of frames. Then find 1/average_time to determine the FPS at which the video is being processed ```python import time...

Looks like this software is broken! Inference: Google changed page structure I am looking into it right now.

> what do you mean by arguments > `$ googleimagesdownload [Arguments...]` Please look at 'How to use a terminal?'

Have a look at this repo: https://github.com/dendorferpatrick/MOTChallengeEvalKit