deeplearning.ai icon indicating copy to clipboard operation
deeplearning.ai copied to clipboard

Some work of Andrew Ng's course on Coursera

Results 9 deeplearning.ai issues
Sort by recently updated
recently updated
newest added

I can successfully train my own dataset and get a model.h5 file after training. However, how do I convert this .h5 file to .pb file that I can connect the...

When I try to run this code, it says ValueError: A `Concatenate` layer requires inputs with matching shapes except for the concat axis. Got inputs shapes: [(None, 128, 12, 192),...

Your error in Week 1 is the vert_start should be h * stride.

update:a = Bidirectional(LSTM(units=n_a, return_sequences=True))(X) in def model(Tx, Ty, n_a, n_s, human_vocab_size, machine_vocab_size), so that attention_map can work correctly!

When computing the triplet_loss your function outputs 350 while it should output 528

In the calculation of IOU, it is not correct for the cases where there is no intersection between the two anchor boxes. Ideally it should return 0

When computing the J_style_layer your function outputs 11 while it should output 9.19028.