https://github.com/developer0hye/imgdiet GitHub - developer0hye/imgdiet: A Python package for minimizing file size of images with minimal quality lossA Python package for minimizing file size of images with minimal quality loss - developer0hye/imgdietgithub.com 이미지 파일 기반의 데이터셋을 구축해나가다보면 커져가는 사이즈를 감당할 수 없게된다. 특히 Aihub에 고화질 이미지가 초고용량으로 배포되는 경우가 잦다. 이 이미지들로 데이터셋을 구축해나가다보면 데이터셋의 사이즈가 금방 수십기가에 달하게 된다..
https://github.com/developer0hye/docker-cleanup GitHub - developer0hye/docker-cleanup: A lightweight CLI tool to clean all Docker resources – including containers, images, voA lightweight CLI tool to clean all Docker resources – including containers, images, volumes, networks, and build caches – with a single command. - developer0hye/docker-cleanupgithub.com 도커 쓰다보면 이미지도 쌓이고 컨테이너도 쌓이고, 단순히 이미지와 ..
https://github.com/microsoft/onnxruntime/releases/tag/v1.20.0 Release ONNX Runtime v1.20.0 · microsoft/onnxruntimeRelease Manager: @apsonawane Announcements All ONNX Runtime Training packages have been deprecated. ORT 1.19.2 was the last release for which onnxruntime-training (PyPI), onnxruntime-training-cpu ...github.com 알고보니 10월 7일에 릴리즈 됐구나
https://github.com/developer0hye/rotten-korean-romanizer/tree/main GitHub - developer0hye/rotten-korean-romanizer: Python library for romanizing Korean text. Converts '안녕하세요' to 'annyeoPython library for romanizing Korean text. Converts '안녕하세요' to 'annyeonghaseyo' and more. - developer0hye/rotten-korean-romanizergithub.com 기존에 한글을 romanization 할 일이 있을때, https://github.com/osori/korean-romanizer ..
https://docs.python.org/dev/faq/library.html#can-t-we-get-rid-of-the-global-interpreter-lock Library and Extension FAQ Contents: Library and Extension FAQ- General Library Questions- How do I find a module or application to perform task X?, Where is the math.py (socket.py, regex.py, etc.) source file?, How do I mak... docs.python.org GIL 때문에 완전한 multithread의 이점을 못누려서 IO Bound task들이나 C로 구현되어 있는 ..
import traceback try: ... except Exception as e: print(e) 코딩을 하다보면 발생하는 예외를 처리하기 위해 try except 문을 많이 쓰게된다. 근데, 위에 코드 처럼 구현하면 어떤 예외가 발생하는지는 알 수 있지만 어디서 어떤 작업을 하다가 해당 예외가 발생했는지 추적이 어렵다. 어디서 예외가 발생했는지 추적을 하기 위해서는 traceback을 import하고 traceback.print_exc()를 except 블럭에서 호출해주면 된다. import traceback try: ... except Exception as e: print(e) traceback.print_exc()
with open(...) as f: for(...): f.write(...) f.flush() 바로 flush()함수를 호출해주면된다. 이거 안해주면 쓰기 작업이 다 마친뒤에야 확인 가능하다. (logging 모듈써서 로깅하는 거면 중간에도 확인 가능) 파일에 쓸 게 많고 파일에 로그를 남기기 위해 소요되는 시간이 길다면 이게 잘 써지고는 있는지 불안하길 마련인데 적절한 시기에 flush 를 한 번씩 해주면 바로 logging이 어떻게 됐나 확인할 수 있다.
Python 프로그래밍중 프로그램이 키보드 인터럽트(Ctrl + c) 혹은 강제 종료, 정상 종료 케이스에 따라서 특정 함수가 호출됐어야 했었습니다. 제 경우를 자세히 말씀드리자면 pyav를 사용하여 RTSP 프로토콜로 비디오를 수신받아 디코딩을 하는데, RTSP 서버(VLC 이용)와 연결 후 연결을 끊어주지 않고 클라이언트 측 프로그램이 종료되는 경우 RTSP 서버의 VLC 프로그램 또한 정상적으로 동작을 안하는 문제가 있었습니다. 확인해보니 항상 연결을 끊어줘야하는데 그렇지 않은 경우 문제가 발생하던 것이였습니다. https://github.com/PyAV-Org/PyAV GitHub - PyAV-Org/PyAV: Pythonic bindings for FFmpeg's libraries. Python..
- Total
- Today
- Yesterday
- ㅂ
- 단축키
- 인공지능을 위한 선형대수
- cosine
- 백준
- PyCharm
- 문제집
- 백준 1766
- C++ Deploy
- 조합
- 백준 11053
- Lowest Common Ancestor
- 자료구조
- LCA
- FairMOT
- 순열
- 이분탐색
- 가장 긴 증가하는 부분 수열
- 백트래킹
- 백준 11437
- MOT
- 위상 정렬 알고리즘
- 파이참
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |