Spaces:
Sleeping
Sleeping
File size: 141 Bytes
f6625cd |
1 2 3 4 5 |
import numpy as np
def test_concat_dim():
img, aud = np.random.randn(512), np.random.randn(768)
assert (img.size + aud.size) == 1280
|