Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ARIMA
- zachary’s karate club
- kl divergence
- PyTorch
- 사회 네트워크 분석
- posterior collapse
- 이상 탐지
- Vertex AI
- DeepLearing.AI
- Inductive Learning
- Spatial GNN
- Google Cloud
- mode collapse
- deepseek
- cross-entropy
- SSIM
- Transductive Learning
- GCP
- GNN
- session 미종료
- 생성 모델 평가
- ChatGPT
- 대칭키
- 생성 모델
- python3
- prompt engineering
- Grad-CAM
- PSNR
- Spectral GNN
- public key
Archives
- Today
- Total
목록Development/Git (1)
데이터 과학 노트
Git
분산 버전 관리 시스템 (Distributed Version Control System) 기본 명령어 # Git 저장소 만들기 git init git status # gst git add [폴더/파일] # working directory -> staging area git commit -m "[COMMIT_MESSAGE]" # staging area -> repository # 커밋 메시지는 명령어 사용 (Add, Fix, Update, ...) git log git revert [COMMIT_SHA] # 이전 커밋으로 돌리기 (이력 유지) git reset [COMMIT_SHA] --hard # 이전 커밋으로 돌리기 (이력 제거) 작업 분기 비선형적인 개발을 위한 작업 분기 (특정 기능, 버전, .....
Development/Git
2023. 4. 21. 00:17