How To Build Your Own Custom ChatGPT With Custom Knowledge Base
Feed your ChatGPT bot with custom data sources
betterprogramming.pub
Custom chatGPT
GitHub - Manisha-Bayya/simple-django-project: A simple Django project which uses MySQL as database. It has Signup, Login, Logout functionality. It lets you search for countries, cities, languages from the default mysql dump. Django’s user table has been overridden to store user information.
A simple Django project which uses MySQL as database. It has Signup, Login, Logout functionality. It lets you search for countries, cities, languages from the default mysql dump. Django's user…
github.com
장고 튜토리얼 mysql
GitHub - tloen/llama-int8: Quantized inference code for LLaMA models
Quantized inference code for LLaMA models. Contribute to tloen/llama-int8 development by creating an account on GitHub.
github.com
llama int8 사용법
GitHub - karpathy/nanoGPT: The simplest, fastest repository for training/finetuning medium-sized GPTs.
The simplest, fastest repository for training/finetuning medium-sized GPTs. - GitHub - karpathy/nanoGPT: The simplest, fastest repository for training/finetuning medium-sized GPTs.
github.com
GPT4 이해에 도움이 될만한 자료
MLflow Part 2: Deploying a Tracking Server to Minikube!
Creating a point for logging and tracking model artifacts in a single server running on Minikube
towardsdatascience.com
MLflow, Minikube 설정법
Benchmark bandwidth and latency of P2P NVIDIA GPUs (NVLINK vs PCI)
Benchmark bandwidth and latency of P2P NVIDIA GPUs (NVLINK vs PCI) - 0_nvidia_benchmark.md
gist.github.com
GPU 테스트 방법
GitHub - gpakosz/.tmux: 🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️
🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️ - GitHub - gpakosz/.tmux: 🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made w…
github.com
Oh my tmux
🐧 리눅스 Alias 설정 & 사용법 정리 (+ 단축 예제 TIP)
리눅스 Alias 설정 Alias는 명령어를 간소화하여 다른 이름으로 사용할 수 있도록 해주는 쉘내부 명령어이다. 즉 복잡한 명령어나 여러 옵션을 사용하는 명령어를 간단한 이름으로 사용할 수 있도록 하는 명령어이다. alias는 간단히 alias명령으로 설정이 가능하다. # 현재 등록되어있는 모든 alias 출력 $ alias # ls -asl을 lss만 쳐도 실행될수 있게 별칭 설정 $ alias lss=‘ls -asl’ # 별칭 삭제 $ unalias lss 그러나 이 방법은 시스템을 재부팅하고나면 다시 초기화되므로 매번 적용해…
inpa.tistory.com
유용한 alias 명령어, 사용법