我有一台 Linux 机器和一台 Windows 机器用于开发。对于数据共享,我们在另一台 Windows 机器上设置了一个共享的 Windows 目录,我的 Linux 和 Windows 都可以访问。
我现在使用DVC对共享数据进行版本控制。为了方便起见,我将共享的 Windows 文件夹安装在 Windows 和 Linux 开发机器中。在 Windows 中,它看起来像
[core]
analytics = false
remote = remote_storage
['remote "remote_storage"']
url = \\my_shared_storage\project_dir
在 Linux 中,它看起来像:
[core]
analytics = false
remote = remote_storage
['remote "remote_storage"']
url = /mnt/mount_point/project_dir
如您所见,Windows 和 Linux 具有不同的挂载点。所以我的问题是:有没有办法让 Windows 和 Linuxùrl
在 DVC 配置文件中具有相同的功能?
如果这是不可能的,DVC 是否有另一种替代解决方案将数据保存在远程共享 Windows 文件夹中?谢谢。