허깅페이스 깃헙에 있는 example들 중 특정 폴더만 clone해서 돌려보고 싶었다.
1. 폴더 생성
git 저장소의 하위 폴더 clone 하기
다운로드 받을 디렉토리에서 커맨드 실행
2. git 코드
git init
git remote add origin https://github.com/huggingface/transformers.git
git config core.sparsecheckout true
echo [폴더경로]/* >> .git/info/sparse-checkout
# rag fine-tunning 코드 클론하기
# echo transformers/examples/research_projects/rag-end2end-retriever/* >> .git/info/sparse-checkout
git pull orgin master
이렇게 하면 현재 폴더>examples>research_projects>rag-end2end-retriever 폴더에 clone되는 것을 확인했다.
참고
https://velog.io/@byjihye/git-clone
반응형
'🔨 Trial and Error Log' 카테고리의 다른 글
[mac os] 맥북 FTP 프로그램 추천 - ForkLift3 (0) | 2022.02.16 |
---|---|
[Python] einsum is all you need (0) | 2022.02.04 |
[클린코드] 협업하려면 눈치껏 지키기 (1) | 2021.12.10 |
좋은 연구 계획 및 설계 (0) | 2021.11.22 |
[PyCharm] 서버 자동 업로드가 안될 때 - PyCharm Deployment Auto upload (0) | 2021.10.29 |