일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- GCP
- pytorch
- pep8
- 백준
- github
- GitHub Action
- 알고리즘
- NaverAItech
- vscode
- PytorchLightning
- 완전탐색
- python
- Kaggle
- Matplotlib
- autoencoder
- wandb
- 코딩테스트
- FastAPI
- docker
- 네이버AItech
- NLP
- 프로그래머스
- FDS
- torchserve
- datascience
- Kubernetes
- rnn
- GIT
- DeepLearning
- leetcode
- Today
- Total
목록개발 (38)
Sangmun
https://www.lesstif.com/lpt/linux-chrome-106857342.html Linux 에 크롬(Chrome) 브라우저 설치하기 www.lesstif.com https://medium.com/@arslanshah_80326/install-chrome-specific-version-on-ubuntu-d8989cc62414
package main import ("fmt") type Stack struct { data []int } func (s *Stack) Push(x int) { s.data = append(s.data, x) } func (s *Stack) Pop() int { if len(s.data) == 0 { return -1 } x := s.data[len(s.data)-1] s.data = s.data[:len(s.data)-1] return x } func (s *Stack) Size() int { return len(s.data) } func (s *Stack) IsEmpty() int { if len(s.data) == 0 { return 1 } return 0 } func (s *Stack) Top(..
https://www.linuxteck.com/linux-process-management-command-cheat-sheet/ Linux Process Management Command Cheat Sheet | LinuxTeck Process management commands are utilized on a Linux system to oversee running processes. These commands permit users to examine details on active processes, www.linuxteck.com https://inpa.tistory.com/entry/LINUX-%F0%9F%93%9A-%ED%94%84%EB%A1%9C%EC%84%B8%EC%8A%A4-%EA%B4%..
https://generativeai.pub/a-beginners-guide-to-fine-tuning-mixtral-instruct-model-7f6a30aacf61 A Beginner’s Guide to Fine-Tuning Mixtral Instruct Model Unleashing the Power of MixTRAL: A Comprehensive Guide to Fine-Tuning generativeai.pub
원격 서버를 접속시에 vscode에서 extension을 설치시에 XHR 에러가 발생하는 문제가 있었다. proxy 세팅을 바꾸는등 여러가지 방법이 있지만 직접 market place에서 설치 파일을 다운로드해서 extension을 설치하는 방법이 가장 빠르고 간편했던거 같다. 출처 : https://bobbyhadz.com/blog/error-while-fetching-extensions-xhr-failed Fix Error while fetching extensions. XHR failed in VS Code | bobbyhadz The VS Code "Error while extensions. XHR failed" error occurs when you have internet connectivit..
https://a16z.com/2023/06/20/emerging-architectures-for-llm-applications/
https://tech-blogs.dev/ Awesome Tech Blogs This is a list of Awesome Tech Blogs. Add yourself. tech-blogs.dev
1. torchserve로 huggingface 모델 서빙하기 torchserve는 transformer 모델을 torchserve로 서빙하는 예제를 친절하게 잘 기술해 놓았다. https://github.com/pytorch/serve/tree/master/examples/Huggingface_Transformers GitHub - pytorch/serve: Serve, optimize and scale PyTorch models in production Serve, optimize and scale PyTorch models in production - GitHub - pytorch/serve: Serve, optimize and scale PyTorch models in production gith..