본문 바로가기

전체 글

(77)
Ubuntu, Open-webui, Ollama, Langchain 이용 자동 문서화 세팅 Prerequisite: - Open-webui, Ollama 세팅 - 2025.03.25 - [컴퓨터/머신러닝 (Machine Learning)] - Ubuntu, AMD GPU, Ollama, open-webui setting 참고https://github.com/open-webui/open-webui GitHub - open-webui/open-webui: User-friendly AI Interface (Supports Ollama, OpenAI API, ...)User-friendly AI Interface (Supports Ollama, OpenAI API, ...) - open-webui/open-webuigithub.comhttps://docs.openwebui.com/pipelines/ ..
Logitech keyboard, ubuntu, fn key 모드 변경 logitech 무선 키보드를 사용시,F1~F12 버튼이 기존 맵핑된 기능으로 연결되고fn 와 함께 눌러줘야 여느 키보드 처럼 동작하는 문제예시 - F5번 키를 누르면 새로고침이 되지 않고 바탕화면으로 빠짐 Solution:키보드의 ESC 키와 FN 키를 함께 누르면 모드가 변경됨
Ubuntu, AMD GPU, Ollama, open-webui setting Prerequisite - ROCm 6.3.0 이상 세팅 - AMD GPU 사용 참고https://youtu.be/Wjrdr0NU4Sk?si=gDCpm9T4ylqlqeax AMD GPU 용 Ollma를 세팅한 후 open-webui 로 chatgpt 처럼 사용 docker-compose.yml 생성 services: open-webui: image: 'ghcr.io/open-webui/open-webui:main' restart: always environment: OLLAMA_BASE_URL: "http://ollama:11434" #   compose up sudo docker compose up http://localhost:30000 으로 접속, 계정 생성  모델 추가..
MlFlow Remote Server setting https://github.com/mlflow/mlflow GitHub - mlflow/mlflow: Open source platform for the machine learning lifecycleOpen source platform for the machine learning lifecycle - mlflow/mlflowgithub.com Dockerfile - docker-compose.yml 파일 생성 - 빌드 - compose up 순으로 진행artifact는 마운트된 nfs 폴더에 저장 Dockerfile# Use the official MLflow imageFROM ghcr.io/mlflow/mlflow:latest# Install psycopg2 and any other dependenc..
Rustdesk 사용하기(relay server, ubuntu) https://rustdesk.com/docs/en/self-host/rustdesk-server-oss/docker/ Docker :: Documentation for RustDeskDocker Here is another good tutorial: Building Your Own Remote Desktop Solution: RustDesk Self-Hosted on Cloud with Docker (Hetzner) Install your own server with Docker Requirements You need to have Docker/Podman installed to run a rustdesk-server as a Docrustdesk.com  서버 세팅서버 port 열기  hbbr - 신..
Nvidia GPU dpkg dependency error CUDA 11.8과 520 드라이버 또는 525, 535 드라이버 관련해서설치 중 dependency error 가 발생하거나 부팅이 되지 않는 현상해결 정리 https://docs.nvidia.com/cuda/cuda-installation-guide-linux/index.html#network-repo-installation-for-ubuntu CUDA Installation Guide for LinuxThe installation instructions for the CUDA Toolkit on Linux. 13. Post-installation Actions The post-installation actions must be manually performed. These actions are sp..
하드 디스크 병목으로 인한 CPU 사용량 저하 확인 환경CPU: Intel i9 11900GPU: NVIDIA 3090 24GBMemory: 64GBOS: Ubuntu 22.04Python: Python 3.9  Pytorch Dataloader를 사용하여 batch 로 inference 결과별 이미지 저장을 하던 중 CPU 사용률이 하락하는 현상Jupyter, Nvidia 세팅 등을 확인한 결과 하드디스크 병목(쓰기)으로 인한 CPU 강제 휴무 상태로 확인  하드 디스크를 iostat으로 확인한 결과,하드 디스크(가장 하단) 의 %util (가장 우측 칼럼)의 수치가 100에 근접하거나 초과하는 것을 확인또한, 가장 상단의 %iowait 수치와 %idle 수치를 통해서도 확인 iostat 설치 및 모니터링 command1. iostat 설치 sudo a..
Yolov9 Jupyter에서 돌려보기 환경CPU: AMD 5900xGPU: AMD RX 7900xtx 24GBMemory: 128GBOS: Ubuntu 20.04GPU Driver: ROCm 6.0.2Python: Python 3.9 공식 문서https://docs.ultralytics.com/models/yolov9/#conclusion YOLOv9Discover YOLOv9, the latest addition to the real-time object detection arsenal, leveraging Programmable Gradient Information and GELAN architecture for unparalleled performance.docs.ultralytics.com  1. Install Ultralytics ..