mori2187

Results 2 issues of mori2187

### Proxyman version? (Ex. Proxyman 1.4.3) Proximal 3.7 ### macOS Version? (Ex. mac 10.14) mac 10.14 ### Expected behavior When app in background, it's too hard for me to know...

设置显存按需使用的 code 报错。 ``` gpus = tf.config.experimental.list_physical_devices(device_type='GPU') for gpu in gpus: tf.config.experimental.set_memory_growth(device=gpu, True) ``` 显示 SyntaxError: positional arguments follows keyword argument 第三行需要修改一下才能运行 ``` tf.config.experimental.set_memory_growth(gpu, True) 或 tf.config.experimental.set_memory_growth(device=gpu, enable=True) ```