일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Matplotlib
- torchserve
- vscode
- python
- 완전탐색
- docker
- NaverAItech
- rnn
- 백준
- DeepLearning
- 코딩테스트
- Kubernetes
- pep8
- GIT
- Kaggle
- 알고리즘
- autoencoder
- GCP
- FastAPI
- github
- FDS
- 프로그래머스
- 네이버AItech
- leetcode
- NLP
- pytorch
- PytorchLightning
- GitHub Action
- datascience
- wandb
- Today
- Total
목록분류 전체보기 (120)
Sangmun
논문링크 https://arxiv.org/abs/1409.3215 Sequence to Sequence Learning with Neural Networks Deep Neural Networks (DNNs) are powerful models that have achieved excellent performance on difficult learning tasks. Although DNNs work well whenever large labeled training sets are available, they cannot be used to map sequences to sequences. In this pap arxiv.org 개요 Sequence to Sequence는 2014년에 발표된 논문으로 LS..
https://arxiv.org/abs/1706.03762 Attention Is All You Need The dominant sequence transduction models are based on complex recurrent or convolutional neural networks in an encoder-decoder configuration. The best performing models also connect the encoder and decoder through an attention mechanism. We propose a new arxiv.org 개요 기존의 Sequence to Sequence에서 LSTM을 활용한 기계번역 방법론을 제안하였으나 길이가 길어지면 성능이 떨어지..
https://www.acmicpc.net/problem/11403 11403번: 경로 찾기 가중치 없는 방향 그래프 G가 주어졌을 때, 모든 정점 (i, j)에 대해서, i에서 j로 가는 경로가 있는지 없는지 구하는 프로그램을 작성하시오. www.acmicpc.net n의 케이스가 0 1: graph[a][b] = 0 # 결과 출력 for a in range(n): result = map(str,graph[a]) print(' '.join(result))
Pytorch를 이용한 학습 시 Log를 기록할때 Tensorboard를 주로 사용하는것으로 알고 있었으나, 이번 강의를 통하여 weight & biases(wandb)라는 툴을 알게되어서 해당 툴을 사용법을 기록해보고자 한다. wandb는 MLOps의 대표적인 툴로 확대중이라고 한다. 배워두면 좋은툴 인것 같다. https://wandb.ai/site Weights & Biases – Developer tools for ML WandB is a central dashboard to keep track of your hyperparameters, system metrics, and predictions so you can compare models live, and share your findings. ..
https://wikidocs.net/57165 07. 커스텀 데이터셋(Custom Dataset) 앞 내용을 잠깐 복습해봅시다. 파이토치에서는 데이터셋을 좀 더 쉽게 다룰 수 있도록 유용한 도구로서 torch.utils.data.Dataset과 torch.utils.da ... wikidocs.net Pytorch를 사용하면서 필수로 알아야 하는 내용이며 이미 여러 군데 잘 정리된 자료가 있지만 필수로 알아야 되는 부분 위주로 정리를 해보고자 한다. Pytorch에서는 torch.utils.data.Dataset을 상속받아 커스텀 데이터셋을 만들 수가 있다. torch.utils.data.Dataset은 파이토치에서 제공하는 추상 클래스이며 Dataset을 상속받아 다음 메서드들을 오버라이드 할 수 있..
나는 사용할 수 있는 gpu가 구글 colab 말고 없어서 colab에서 shell로 돌리곤 했었는데 로컬에서 접속할 수 있는 법을 알게 되었다. https://dashboard.ngrok.com/get-started/setup ngrok - secure introspectable tunnels to localhost dashboard.ngrok.com 해당 툴을 사용해서 vscode terminal을 이용하여 colab gpu를 이용하여 모델을 돌릴수가 있다. ngrok사이트에 접속해서 가입을 하면 아래와 같은 페이지가 뜨며 2번 Connect your account 항목에 접속에 필요한 토큰이 생성이 되어있다. 다음은 colab에 접속을 하여 token과 password를 설정해준다. colab에 s..
네이버 Aitech 강의 중의 한 내용으로 Pytorch Project Template로는 아래와 같은 템플릿들이 유명하다고 하는데 https://github.com/FrancescoSaverioZuppichini/PyTorch-Deep_Learning-Template https://github.com/PyTorchLightning/deep-learning-project-template GitHub - Lightning-AI/deep-learning-project-template: Pytorch Lightning code guideline for conferences Pytorch Lightning code guideline for conferences. Contribute to Lightning-AI/..
https://www.acmicpc.net/problem/14624 14624번: 전북대학교 전북대학교의 심볼은 균형과 조화, 지성과 이상을 향한 방향성과 목표를 나타낸다. 절제된 한국적 아름다움을 꾸밈없는 소박함과 여백을 통해 시각화하였으며, 심볼의 방향에 따라 한국적인 대 www.acmicpc.net ㅈ 문자를 찍는 과정에서 계속 '잘못된 출력형식입니다.' 라고 나오길래 뭐가 문제인지 봤는데 아래와 같은 사항을 고려하지 않고 코드를 짜서 그렇다. https://www.acmicpc.net/board/search/all/problem/14624 게시판 검색 - 1 페이지 www.acmicpc.net import sys input = sys.stdin.readline a = int(input()) if ..