Hi everyone,
I was wondering if anyone knew the easiest way to access the relay meta dict, e.g. for verification.
After rewriting a module, it want to check if the value in meta[relay.Constant][0] has the new correct value:
fn (%x: Tensor[(1, 1, 1, 128), float32]) -> Tensor[(1, 1, 1, 128), float32] {
add(%x, meta[relay.Constant][0] /* ty=Tensor[(1, 1, 1, 128), float32] */) /* ty=Tensor[(1, 1, 1, 128), float32] */
}
is there something like
x = mod.meta[relay.Constant][0]