1、新建类库WPFProjectShared,在类库下新建文件夹Dtos,新建BaseDto.cs,继承INotifyPropertyChanged,实现通知更新。
public class BaseDto : INotifyPropertyChanged{public int Id { get; set; }public event PropertyChangedEv…
本人是在pycharm运行代码,安装了tensorflow版本2.13.0
先运行代码查看有没有使用GPU加速:
import tensorflow as tf# Press the green button in the gutter to run the script.
if __name__ __main__:physical_devices tf.config.list_physical_dev…