Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 의료 용어
- GAN
- 재귀함수
- alternative loss
- antslibrary
- cyclegan 구성
- 단일 퍼셉트론
- CPU
- cyclegan architecture
- cyclegan 구조
- mlp
- mode collapse
- 파이썬
- gan mode collapse
- fsim
- minmax loss
- cnn mlp
- 케라스 창시자에게 배우는 딥러닝
- 자료구조
- lpips
- cyclegan mode collapse
- 영상 의료 용어
- CNN
- cyclegan discriminator
- cyclegan loss
- 모델성능평가지표
- cyclegan generator
- 역전파
- 의학 기본 용어
- 의료 영상 용어
Archives
- Today
- Total
목록Coding Study (5)
JH 개발자의 성장일지
Coding Study / 24.01.22
# 재귀함수 : 함수가 자기 자신을 호출하는 프로그래밍 기법 # 장점 : 문제를 작은 부분 문제로 나누어 해결하는 데 유용 #기본 코드 def recursive_function(parameters): # 기본 케이스(base case): 함수 호출을 멈추는 조건 if base_case_condition: return base_case_result # 재귀 호출(recursive call): 함수가 자기 자신을 호출 else: return recursive_function(modified_parameters) #레벨 1 - 레벨 발사 def countdown(n): if n
Coding Study
2024. 1. 22. 17:44