ChunML / ssd-tf2

A super clean implementation of SSD (Single Shot MultiBox Detector) made possible by Tensorflow 2.0
MIT License
115 stars 54 forks source link

What is the usage of val_dataset #17

Closed SYH0568 closed 4 years ago

SYH0568 commented 4 years ago

I found that you split data into two part when training, but I couldn't found where did you use the val_dataset. Whether can I not to split the data? This is the part of cord I am confused? self.train_ids = self.ids[:int(len(self.ids) 0.75)] self.val_ids = self.ids[int(len(self.ids) 0.75):]

ChunML commented 4 years ago

Of course, if you have a separate validation dataset, you can modify the code to use data from that.