🔨 Trial and Error Log

🔨 Trial and Error Log

[git] huggingface transformers 특정 폴더만 clone 하기

허깅페이스 깃헙에 있는 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..

🔨 Trial and Error Log

[클린코드] 협업하려면 눈치껏 지키기

https://itdar.tistory.com/m/entry/%ED%81%B4%EB%A6%B0%EC%BD%94%EB%94%A9%EB%8D%94-%EB%82%98%EC%9D%80-%EC%BD%94%EB%94%A9%EC%9D%84-%ED%95%98%EB%8A%94-10%EA%B0%80%EC%A7%80-%EB%B0%A9%EB%B2%95-10-Tips-for-clean-code-better-code-quality-code 클린코딩/더 나은 코딩을 하는 10가지 방법, 10 Tips for clean code/ better code/ quality code. 클린코딩/더 나은 코딩을 하는 10가지 방법, 10 Tips for clean code/ better code/ quality code. 기본적이면서 필수적..

🔨 Trial and Error Log

좋은 연구 계획 및 설계

0. 블로그에는 못써도 노션에 논문 정리 할 것 1. Abliation study 제대로 할 것 2. 실험 설계 똑바로 할 것 3. 주말 출근은 할 만 함 + seed 고정해라.... (22.06 개빡친 미래의 내가...)

🔨 Trial and Error Log

[PyCharm] 서버 자동 업로드가 안될 때 - PyCharm Deployment Auto upload

[PyCharm] 서버 자동 업로드가 안될 때 - PyCharm Deployment Auto upload 현재 프로젝트에 서버가 2개 이상 연결되어 있는데 디폴트 값 설정이 안되어 있는 경우이다. 인터프리터에서 바꿔줘도 동일하게 오토 업로드가 안될 것이다. 해결 : Tools -> Deployment -> Option that said I didn't have a default server set up (dispite only having one available). In Tools -> Deployment -> Configuration, right click on the deployment you want on the column on the left, and 'Use as Default'. That ..

🔨 Trial and Error Log

Huggingface(github 레포) 인용하기

@inproceedings{wolf-etal-2020-transformers, title = "Transformers: State-of-the-Art Natural Language Processing", author = "Thomas Wolf and Lysandre Debut and Victor Sanh and Julien Chaumond and Clement Delangue and Anthony Moi and Pierric Cistac and Tim Rault and Rémi Louf and Morgan Funtowicz and Joe Davison and Sam Shleifer and Patrick von Platen and Clara Ma and Yacine Jernite and Julien Plu..

🔨 Trial and Error Log

[Pytorch] 파이토치 TIL 모음

Pytorch를 사용하면서 알게된 내용들, 정확히 이해하려는 코드들을 모아놓습니다. Updated 21.10.07 1. TensorDataset의 사용 torch.tensor -> TensorDataset -> DataLoader 의 과정으로 깔끔한 코드를 작성한다. from torch.utils.data import (DataLoader, TensorDataset) TensorDataset은 ds = TensorDataset(x,y) 뿐만 아니라 여러개의 데이터를 넣을 수도 있다. # 보통 사용 ds = TensorDataset(x,y) # 여러개 묶음 사용 train_features = TensorDatast(input, input_lengths, label, left_feature, right_fe..

지니티토리
'🔨 Trial and Error Log' 카테고리의 글 목록 (2 Page)