일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Algorithm
- bloc
- BFS
- system hacking
- PCA
- 파이토치 트랜스포머를 활용한 자연어 처리와 컴퓨터비전 심층학습
- ARM
- fastapi를 사용한 파이썬 웹 개발
- 영상처리
- rao
- Stream
- Got
- DART
- Image Processing
- Computer Architecture
- MATLAB
- FastAPI
- 백준
- pytorch
- study book
- Dreamhack
- ML
- BOF
- Flutter
- C++
- BAEKJOON
- llm을 활용 단어장 앱 개발일지
- Widget
- MDP
- Kaggle
- Today
- Total
목록Computer Language/Python (3)
Bull

ffmpeg Tool을 사용한다.명령어 사용법Windowhttps://ffmpeg.org/download.html Download FFmpegIf you find FFmpeg useful, you are welcome to contribute by donating. More downloading options Git Repositories Since FFmpeg is developed with Git, multiple repositories from developers and groups of developers are available. Release Verification All FFmpeffmpeg.org직접 설치 후 환경변수를 통해 명령어 사용.Linuxsudo apt updatesudo apt ..

의미for문에서 쓰이며 여러 시퀀스를 동시에 순회한다. 예제가 더 이해하기 쉬우니 예제로 남길 것이다.예제1. 두 리스트를 함께 순회list1 = [1, 2, 3]list2 = ['a', 'b', 'c']for item1, item2 in zip(list1, list2): print(item1, item2)1 a2 b3 c2. 세 리스트를 함께 순회list1 = [1, 2, 3]list2 = ['a', 'b', 'c']list3 = [10.1, 20.2, 30.3]for item1, item2, item3 in zip(list1, list2, list3): print(item1, item2, item3)1 a 10.12 b 20.23 c 30.33. 리스트와 튜플을 함께 순회list1 = [1..

import numpy as np a = np.array([[1, 2], [3, 4]]) # ------ a.shape=(2, 2) b = np.array([[5, 6], [7, 8]]) # ------ b.shape=(2, 2) print('--------------concatenate, axis=0-----------------') print(np.concatenate((a, b), axis=0)) # ------ shape=(4, 2) print('--------------concatenate, axis=1-----------------') print(np.concatenate((a, b), axis=1)) # ------ shape=(2, 4) print('--------------stack, a..