분류 전체보기
-
1. 설치준비: 아니콘다, VScode가상환경 준비하기conda create -n genesis python=3.10 -y conda activate genesis Pytorch 설치하기conda install pytorch torchvision -c pytorch 확인 python import torch torch.cuda.is\_available()Genesis 설치하기pip install genesis-world 2. 예제코드 돌려보기import genesis as gs# -> 1. Initializationgs.init(backend=gs.cpu) # -> 2. Create a scenescene = gs.Scene(show_viewer=True) ..
[Genesis Part1] Genesis 알아보고 Ubuntu에서 구동해보기1. 설치준비: 아니콘다, VScode가상환경 준비하기conda create -n genesis python=3.10 -y conda activate genesis Pytorch 설치하기conda install pytorch torchvision -c pytorch 확인 python import torch torch.cuda.is\_available()Genesis 설치하기pip install genesis-world 2. 예제코드 돌려보기import genesis as gs# -> 1. Initializationgs.init(backend=gs.cpu) # -> 2. Create a scenescene = gs.Scene(show_viewer=True) ..
2025.01.01 -
https://event.kt.com/html/event/ongoing_event_view.html?pcEvtNo=13219 진행중인 이벤트 | KT진행중인 이벤트 KT에서 진행중인 다양한 이벤트를 확인 및 참여하세요.event.kt.com 우수가 되었으면 좋겠네요. 내 아이디어 비밀~
KT FAN Made K-AI 아이디어 챌린지https://event.kt.com/html/event/ongoing_event_view.html?pcEvtNo=13219 진행중인 이벤트 | KT진행중인 이벤트 KT에서 진행중인 다양한 이벤트를 확인 및 참여하세요.event.kt.com 우수가 되었으면 좋겠네요. 내 아이디어 비밀~
2024.12.30 -
systemd 서비스로 설정하기우분투에서는 **systemd**를 사용하여 부팅 시 프로그램을 실행할 수 있습니다.시스템 서비스 파일 작성:/etc/systemd/system/code_autorun.service 파일을 생성합니다.sudo nano /etc/systemd/system/code_autorun.service서비스 내용 추가:아래 내용을 추가합니다. 파일 경로를 확인하세요.내 컴퓨터 이름이 storagy 이고만약 내가 부팅하자마자 실행하고 싶은 코드 파일이 home/res/code.py 라면[Unit]Description=Run code.py at startupAfter=multi-user.target[Service]Type=simpleExecStart=/usr/bin/python3 /home..
컴퓨터 부팅하자마자 원하는 코드 실행하기systemd 서비스로 설정하기우분투에서는 **systemd**를 사용하여 부팅 시 프로그램을 실행할 수 있습니다.시스템 서비스 파일 작성:/etc/systemd/system/code_autorun.service 파일을 생성합니다.sudo nano /etc/systemd/system/code_autorun.service서비스 내용 추가:아래 내용을 추가합니다. 파일 경로를 확인하세요.내 컴퓨터 이름이 storagy 이고만약 내가 부팅하자마자 실행하고 싶은 코드 파일이 home/res/code.py 라면[Unit]Description=Run code.py at startupAfter=multi-user.target[Service]Type=simpleExecStart=/usr/bin/python3 /home..
2024.12.13 -
Depth anything을 인터넷 환경없이 local에서 돌리려니 huggingface로 모델을 load해서 depth anything V2를 사용하기로 하였다. https://github.com/DepthAnything/Depth-Anything-V2 GitHub - DepthAnything/Depth-Anything-V2: [NeurIPS 2024] Depth Anything V2. A More Capable Foundation Model for Monocular Depth[NeurIPS 2024] Depth Anything V2. A More Capable Foundation Model for Monocular Depth Estimation - DepthAnything/Depth-Anything..
AI캐디 프로젝트 3 - Depth anything V2- webcam real-timeDepth anything을 인터넷 환경없이 local에서 돌리려니 huggingface로 모델을 load해서 depth anything V2를 사용하기로 하였다. https://github.com/DepthAnything/Depth-Anything-V2 GitHub - DepthAnything/Depth-Anything-V2: [NeurIPS 2024] Depth Anything V2. A More Capable Foundation Model for Monocular Depth[NeurIPS 2024] Depth Anything V2. A More Capable Foundation Model for Monocular Depth Estimation - DepthAnything/Depth-Anything..
2024.12.12 -
우분투 설치하다가 다음과 같은 설치 실패를 경험했다.[Errno 5] Input/output error이 오류는 일반적으로 CD/DVD 디스크나 드라이브 또는 하드 디스크에 문제가 있을 때 발생합니다. CCD/DVD를 청소하거나 CD/DVD를 느린 속도로 굽거나 CD/DVD 드라이브의 렌즈를 전자 제품 상점에서 판매하는 도구를 이용해 청소하고 또는 하드디스크가 오래되어 교체가 필요한지 확인하기, 시스템을 시원한 장소로 옮기면 해결될 수도 있습니다. 정말 소름돋는게, 노트북에 모든 USB와 멀티 모니터를 위한 HDMI선을 제거하고 다시 설치를 진행했더니, 이런 오류 메시지 없이 잘 설치되었다.
Ubuntu 22.04 설치 실패 [Errno 5] Input/output error우분투 설치하다가 다음과 같은 설치 실패를 경험했다.[Errno 5] Input/output error이 오류는 일반적으로 CD/DVD 디스크나 드라이브 또는 하드 디스크에 문제가 있을 때 발생합니다. CCD/DVD를 청소하거나 CD/DVD를 느린 속도로 굽거나 CD/DVD 드라이브의 렌즈를 전자 제품 상점에서 판매하는 도구를 이용해 청소하고 또는 하드디스크가 오래되어 교체가 필요한지 확인하기, 시스템을 시원한 장소로 옮기면 해결될 수도 있습니다. 정말 소름돋는게, 노트북에 모든 USB와 멀티 모니터를 위한 HDMI선을 제거하고 다시 설치를 진행했더니, 이런 오류 메시지 없이 잘 설치되었다.
2024.12.11 -
https://github.com/khw11044/Action_recognition GitHub - khw11044/Action_recognitionContribute to khw11044/Action_recognition development by creating an account on GitHub.github.com README.md에 설명서 써두었습니다.
AI캐디 프로젝트 2 - Action Recognitionhttps://github.com/khw11044/Action_recognition GitHub - khw11044/Action_recognitionContribute to khw11044/Action_recognition development by creating an account on GitHub.github.com README.md에 설명서 써두었습니다.
2024.12.10