Giter Club home page Giter Club logo

Comments (3)

roycms avatar roycms commented on July 26, 2024 1
import os
import shutil

def replace_aliases_with_originals(directory):
    for root, dirs, files in os.walk(directory):
        for file in files:
            file_path = os.path.join(root, file)
            if os.path.islink(file_path):  # 检查是否为替身文件
                original_path = os.path.realpath(file_path)  # 获取原始文件路径
                if original_path != file_path:  # 检查源文件和目标文件是否相同
                    os.remove(file_path)  # 删除替身文件
                    shutil.copy2(original_path, file_path)  # 将原始文件复制到替身文件的位置
                   # os.remove(original_path)  # 删除原始文件

# 替换指定目录内的替身文件
replace_aliases_with_originals('/Volumes/huggingface/aliendao/dataroot/models/')

我用这个批量搬运了一下,解决了,希望遇到同样问题的可以参考

from aliendao.

little51 avatar little51 commented on July 26, 2024

model_download.py第31行到33行,将_local_dir_use_symlinks设成False,就生成实际的文件了,但有个问题,就是不支持断点续传了

from aliendao.

roycms avatar roycms commented on July 26, 2024

已经下载好的在临时文件内,怎样恢复成实际文件?

from aliendao.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.