xcenternet icon indicating copy to clipboard operation
xcenternet copied to clipboard

Fast anchor free Object Detection based on CenterNet (Objects As Points) and TTFNet (Training-Time-Friendly Network). Implemented in TensorFlow 2.4+.

Results 6 xcenternet issues
Sort by recently updated
recently updated
newest added

the file loss.py in line 181 182 183: euclidean = tf.linalg.norm(b2_center - b1_center) diag_length = tf.linalg.norm([enclose_ymax - enclose_ymin, enclose_xmax - enclose_xmin]) diou = iou - (euclidean ** 2) / (diag_length...

I was intended to train on coco dataset but after I started the command, it shows the following message: ``` Traceback (most recent call last): File "train.py", line 98, in...

Hi, I tried training with the train.py for both custom datatset and VOC dataset. But what I observed was that it got struck in keras fit call. For VOC dataset...

Hello authors, this centernet model is with upsample unlike the original model which has offsets right? thank you

hello author, I am generating custom dataset for centernet model. can you please help me understand how to create height width labels for multi class. I know how to create...

I'm trying to add a custom metric to calculate mean AP while training but it's not working the model is not printing it or calling it's update state ```python import...