Files
Machine-Learning-Collection/ML/Pytorch/GANs/5. ProGAN/test.py
Aladdin Persson 65b8c80495 Initial commit
2021-01-30 21:49:15 +01:00

6 lines
70 B
Python

def func(x=1, y=2, **kwargs):
print(x, y)
print(func(x=3, y=4))