Machine-Learning-Collection icon indicating copy to clipboard operation
Machine-Learning-Collection copied to clipboard

A resource for learning about Machine learning & Deep Learning

Results 120 Machine-Learning-Collection issues
Sort by recently updated
recently updated
newest added

I am using 100examples.csv for train and test from PASCAL_VOC. When I train the model with CONF_THRESHOLD>=0.6 then Obj Accuracy = 0 and MAP = 0. However when I used...

Add few comments to code to improve understandability

Hi @aladdinpersson having num_layers =2 > 1, break this line and generate **RuntimeError: Expected hidden[0] size (2, 1, 1024), got [1, 1, 1024]** https://github.com/aladdinpersson/Machine-Learning-Collection/blob/ac5dcd03a40a08a8af7e1a67ade37f28cf88db43/ML/Pytorch/more_advanced/Seq2Seq_attention/utils.py#L37

https://github.com/aladdinpersson/Machine-Learning-Collection/blob/master/ML/Pytorch/object_detection/YOLO/train.py change that line to `DEVICE = "cuda" if torch.cuda.is_available() else "cpu"` works on cpu machine

`RuntimeError: The size of tensor a (78) must match the size of tensor b (64) at non-singleton dimension 2` printing the shape of tensors real and fake inside of the...

when i run train.py ,some error happen below, After being streamlined: for batch_idx, (data, targets) in enumerate(loop): ValueError: operands could not be broadcast together with shapes (256,256) (3,) (256,256) What...

Hi, I just realised your the original creator for this code. I used your example code as a template for determining mAP for my faster-rcnn... it's really detailed and easy...

Hi, I just want to make sure I haven't caused any confusion here. I am evaluating on images contain both objects and images that contain no objects. I'm wondering if...

I try to use Pascal Voc 2007 dataset to run Dataset.py. After I converted the bounding_box data to (0, 1] and rerun the Dataset.py, I got the ValueError like this:...