일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 플라스크
- clustering
- 혁신성장부문
- string to list
- python buildpacks
- kmeans
- geopandas
- colab runtime
- to shp
- 셀레니움
- 인스타그램
- Chat-GPT
- geoDataFrame
- Merge Repositories
- 괄호 문제
- 2164 카드2
- 크롤링
- 해시태그
- 알고리즘
- Python
- NLP
- 파이썬
- Crawling
- flask
- 웹페이지
- 코랩 런타임
- Selenium
- 백준
- convert to shp
- plotly dash
Archives
- Today
- Total
목록Konlpy (1)
코딩코딩코딩

지난번 크롤링 했던 내용들을 바탕으로 기사 간 클러스터링 진행 제목 + 요약내용 리스트를 Konlpy 를 통해 명사화 시킨 후 클러스터링을 진행할 예정입니다. TitDesc_okt = [] for item in TitDesc_list: item_nouns = ' '.join(okt.nouns(item)) TitDesc_okt.append(item_nouns) tfidf_vectorizer = TfidfVectorizer() tfidf_matrix_okt = tfidf_vectorizer.fit_transform(TitDesc_okt) TitDesc_okt[:3] #Vectorization okt, komoran, kkma, Hannanum등의 tokenizing 모델들이 있지만 개인적으로 모두 진행해본 ..
파이썬/텍스트마이닝
2020. 7. 20. 18:16