(noise_scale, batch_size, noise_dim)
| 64 | |
| 65 | |
| 66 | def sample_noise(noise_scale, batch_size, noise_dim): |
| 67 | |
| 68 | return np.random.normal(scale=noise_scale, size=(batch_size, noise_dim[0])) |
| 69 | |
| 70 | |
| 71 | def sample_cat(batch_size, cat_dim): |
no outgoing calls
no test coverage detected