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
- 비지도학습
- pandas
- 파이토치기본
- 머신러닝
- 사이킷런
- 랭체인
- konlpy
- langchain
- MachineLearning
- 자연어분석
- NLP
- 챗gpt
- 파이썬웹개발
- fastapi #python웹개발
- 파이토치
- deeplearning
- OpenAIAPI
- HTML
- fastapi
- 딥러닝
- 판다스
- 판다스 데이터정렬
- Python
- fastapi #파이썬웹개발
- pytorch
- programmablesearchengine
- sklearn
- python 정렬
- 파이썬
- chatGPT
Archives
- Today
- Total
목록탐색을줄이자 (1)
Data Navigator
파이썬 코드 효율적으로 짜기 - 20시간을 2초로 바꾼 몇 줄의 코드 수정
for korean in df['description']: if isHangul(korean[0]) == True: isKor = df.loc[df['description'] == korean] KoreanReviews = pd.concat([KoreanReviews,isKor]) else: notKor = df.loc[df['description'] == korean] ForeignReviews = pd.concat([ForeignReviews,notKor]) print('일치: ',len(KoreanReviews['description'].value_counts()), '불일치: ', len(ForeignReviews['description'].value_counts())) 247,519개의 자료를 ..
Python
2021. 1. 13. 07:04