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
- ml
- pyplot
- matplotlib
- bar
- Python
- confusion matrix
- XGBoost
- decisiontree
- sklearn
- 머신러닝
- gini coefficient
- Golang
- scatter
- GINI
- Heatmap
- 지니계수
Archives
- Today
- Total
목록python (1)
Passion, Grace & Fire.
super() 의 argument
super() 에 type, obj argument를 사용하는 경우: class super(t: Any, obj: Any) super(type) -> unbound super object super(type, obj) -> bound super object; requires isinstance(obj, type) super(type, type2) -> bound super object; requires issubclass(type2, type) Typical use to call a cooperative superclass method: class C(B): def meth(self, arg): super().meth(arg) This works for class methods too: class C(B..
python
2020. 11. 25. 19:26