반응형
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 |
Tags
- nfiti
- 유전역학
- 확산텐서영상
- MICCAI
- parer review
- parrec
- nibabel
- 파이썬
- words encoding
- 비모수적 모델
- TeCNO
- 데코레이터
- 코드오류
- 모수적 모델
- precision #정밀도 #민감도 #sensitivity #특이도 #specifisity #F1 score #dice score #confusion matrix #recall #PR-AUC #ROC-AUC #PR curve #ROC curve #NPV #PPV
- genetic epidemiology
- decorater
- parametric model
- Phase recognition
- deep learning #segmentation #sementic #pytorch #UNETR #transformer #UNET #3D #3D medical image
- PYTHON
- non-parametric model
- paper review
- MRI
- TabNet
- Surgical video analysis
- nlp
- 확산강조영상
- monai
- tabular
Archives
- Today
- Total
목록decorator (1)
KimbgAI
[python] @property 사용하기
클래스에서 매서드를 통해 속성의 값을 가져오거나 저장하는 경우가 있습니다. 예를들면, 아래와 같습니다. class Person: def __init__(self, a, b): self.name = a self.age = b person = Person("John", 20) print(person.age) person.age = person.age + 1 print(person.age) 20 21 Person 클래스의 인스턴스를 생성 후에, 필드 값을 읽거나 쓰는 것은 매우 자유롭습니다. 하지만 이렇게 되면 해당 데이터는 외부로부터 무방비 상태에 놓이게 됩니다. 이러한 상황에서 데이터를 접근을 관리할 수 있게 @property를 사용할 수 있습니다. class Person: def __init__(self..
python
2023. 2. 6. 14:41