일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- docker exec
- CellPin
- 백신후원
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- HookNet
- vscode
- numpy
- docker attach
- Pull Request
- ssh
- cs231n
- 사회조사분석사2급
- 티스토리챌린지
- 오블완
- 히비스서커스
- 기초확률론
- 프로그래머스
- 코크리
- aiffel exploration
- cocre
- airflow
- AIFFEL
- IVI
- Jupyter notebook
- WSSS
- Decision Boundary
- GIT
- docker
- logistic regression
- 도커
Archives
- Today
- Total
목록2024/11/08 (1)
히비스서커스의 블로그
[Python] model의 FLOPs 계산하기 (feat.calflops)
딥러닝 논문을 보다보면 model의 FLOPs에 관해서 비교하는 것을 심심치 않게 볼 수 있다. FLOPs와 비슷한 개념으로 MACs , FLOPS가 존재하는데 이들의 차이 간단한 차이는 다음과 같다. FLOPs는 FLoating point OPerations 의 약자로 딥러닝 model의 연산량을 나타낸다.MACs는 Multipl-Accumulate Computations의 약자로 딥러닝 모델에서 FMA가 몇 번 연산되었는지 나타낸다.(FMA는 Floating point Multiply and Add operation의 약자로 A*x + B를 하나의 연산으로 처리한다.)FLOPS는 FLOating point Operations per Second의 약자로 GPU의 성능을 나타낸다. 참조: https..
Programming/Python
2024. 11. 8. 11:39