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
- py4e
- object detaction
- 차원 감소
- 동시발생 행렬
- GoogLeNet
- 시소러스
- 상호 정보량
- Python
- skip-gram
- 파이썬
- dl
- f1-score
- 벡터 간 유사도
- Gated Recurrent Unit
- Charlse Severance
- Linear algebra
- Long Short Term Memory
- Multi-Layer Perceptron
- deep learning
- convolution
- pythonForEverybody
- nn.Module
- 1x1 Convolution
- docker
- excel
- 선형대수
- pytorch
- 분포 가설
- CBOW
- mlops
Archives
- Today
- Total
목록pandas (1)
Tech & TIL
'xxx' object is not callable
'DataFrame' object is not callable 오류 해결 방법 정리하기 위 오류가 발생하는 이유는 객체를 call했기 때문이다. 쉽게 말해 Dataframe[] 을 해야하는데 Dataframe()으로 소괄호로 작성한다면 위 오류가 발생한다. d = {'col1': [1, 2], 'col2': [3, 4]} df = pd.DataFrame(data=d) df('col1') Error 발생 해결방법은 아래와 같다. df['col1'] # Output # [1,2]
Trouble shooting
2022. 5. 9. 16:21