from transformers import file_utils
print(file_utils.default_cache_path)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Downgrade PIC-e to version 3 in Bios: | |
1. Use and external AC-powered USB hub | |
1. Update BIOS |
tar and copy files from host to containers:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout dev | |
git merge master | |
git checkout master | |
git merge --no-ff dev | |
git checkout dev |
- Create a branch:
git checkout -b branch_name
- Push a branch to remote:
git push -u origin branch_name
- Pull a branch from remote:
git checkout --track origin/branch_name
- Revert some files to their previous version:
git checkout commit-hashcode~1 -- file1 file2 file3
- Revert some files to a specific commit: git checkout commit-hashcode file1 file2 file3