How to get right shape of given_y

Hi @discourse-admin ,

The expectation is to submit given_y as opposed to generated y from generated y. But given_y are only (50,1,50,2) in size and generated_x are (1500,1,50,2). So, should we duplicate given_y 30 times using (.repeat(30, 1, 1, 1)) to get given_y of the right shape. Am i thinking about it correctly?

Also, the number of unique classes of given y is (50,1,50,2) right?

Hi @sweatap

Yes, you are correct. The given y has a shape of (50, 1, 50, 2), and to meet the submission requirement, it can indeed be duplicated using the .repeat method.

Kind regards,
Onward Team