https://github.com/Megvii-BaseDetection/YOLOX.git https://onnxruntime.ai/docs/execution-providers/CUDA-ExecutionProvider.html#cuda-12x 상기 링크 참고 다음과 같은 결과를 얻을 수 있다. 장수풍뎅이와 사슴벌레에 대한 레이블링은 되지 않는 것인지 가위나 바나나로 탐지하고 있다. 이 부분은 장수풍뎅이와 사슴벌레에 대한 재학습이 필요한 것 같다는 판단이다. 잘된다.

https://blog.codingconfessions.com/p/compiling-python-to-run-anywhere 아무래도 파이썬의 인터프리팅 방식이 느리다보니 심볼 트레이싱을 통해 그 과정에서 도출되는 IL을 C++로 변환 그 변환한 코드를 크로스 컴파일 하여 성능 향상을 이룬 방식인 것 같다

python webui.py https://github.com/Ksuriuri/index-tts-vllm/blob/master/README_EN.md 주석#1 https://github.com/vllm-project/vllm/pull/14891 https://docs.vllm.ai/en/latest/getting_started/installation/gpu.html#full-build-with-compilation python webui_v2.py ModuleNotFoundError: No module named ‘vllm._C’ 아 뭔가 안된다. 우선 https://github.com/SystemPanic/vllm-windows windows용으로 포크된 리포를 사용한다. 이게 찾아보니 python 3.11에서는 f-string의 중괄호 안 표현식에서 백슬래시를 직접 넣을 수 없기…

[project]name = “chatterbox-tts”version = “0.1.4”description = “Chatterbox: Open Source TTS and Voice Conversion by Resemble AI”readme = “README.md”requires-python = “>=3.10”license = {file = “LICENSE”}authors = [{name = “resemble-ai”, email = “engineering@resemble.ai”}]dependencies = [#”numpy>=1.24.0,<1.26.0″,#”librosa==0.11.0″,#”s3tokenizer”,#”torch==2.6.0″,#”torchaudio==2.6.0″,#”transformers==4.46.3″,#”diffusers==0.29.0″,#”resemble-perth==1.0.1″,#”conformer==0.3.2″,#”safetensors==0.5.3″,#”spacy-pkuseg”,#”pykakasi==2.3.0″,#”gradio==5.44.1″,#”russian-text-stresser @ git+https://github.com/Vuizur/add-stress-to-epub”,…

nvm -> conda에 비유 가능 node.js버전 관리자 npm -> nodejs package manager => pip에 비유 가능 npx -> npm 패키지를 설치하지 않고 실행할 수 있는 툴 예) npx create-react-app myapp -> create-react-app을 글로벌 설치 없이…

다음과 같은 typescript코드를 작성한다. 타입스크립트라는 것은 엄격한 타입검사를 거친 JS를 최종 결과로 제공한다. 결국, JS를 만드는 것이다. 로 설치한 후 로 설치되었는지 확인해보자. 를 치면 tsconfig.json파일이 자동적으로 생성된다. 를 사용하면 감시모드로 파일의 변경을 감시하고 파일이…

llama.cpp 설치 실행 테스트 stable diffusion pipeline 정상 호출 확인 완료 MiniCPM 통합 위의 코드로 테스트 한다. 잘된다. WGP 통합 잘 된다. xformers 쪽도 컴파일이 잘된다. 이는 triton이 올바르게 잡혔음을 의미한다. 설정을 건드린 뒤의 출력이다.…