current_dir = os.path.dirname(os.path.realpath(__file__))这句代码怎么改才可以用来保存其他模型
时间: 2023-08-31 21:05:48 浏览: 92
关于修改模型路径fly保存小工具.zip
如果想要保存其他模型,可以将 `__file__` 替换为模型保存的路径。例如,假设要保存模型到当前目录下的 `model` 文件夹中,可以这样写:
```
current_dir = os.path.join(os.getcwd(), 'model')
```
其中,`os.getcwd()` 返回当前工作目录的路径,`'model'` 是模型保存的文件夹名称。这样就可以将模型保存到指定的文件夹中。
阅读全文