일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- API
- TensorFlow
- ELASTIC
- 차트
- 900gle
- token filter test
- license delete
- high level client
- MySQL
- zip 암호화
- Java
- License
- matplotlib
- flask
- aggs
- Mac
- Kafka
- Python
- sort
- docker
- springboot
- 파이썬
- aggregation
- Test
- plugin
- Elasticsearch
- licence delete curl
- query
- analyzer test
- zip 파일 암호화
Archives
- Today
- Total
개발잡부
자연어 처리 (natural language processing) 본문
반응형
가상환경 목록확인
conda info --envs
가상환경 생성
conda create --name "nlp" python="3.7"
설치
pip install -r require.txt
require.txt
elasticsearch
numpy
tensorflow
tensorflow-hub
tensorflow_text
kss
regex
flask
flask_restful
Api
Resource
matplotlib
pandas
keras
gensim
scikit-learn
nltk
konlpy
1. 실습 파일 불러오기
실습을 위해 아래의 링크에서 spam.csv란 파일을 다운로드 해보겠습니다. 해당 데이터셋은 스팸 메일 분류하기 챕터에서 재사용됩니다.
다운로드 링크 : https://www.kaggle.com/uciml/sms-spam-collection-dataset
pandas profile report
import pandas as pd
import pandas_profiling
data = pd.read_csv('./data/spam.csv',encoding='latin1')
pr=data.profile_report() # 프로파일링 결과 리포트를 pr에 저장
pr.to_file('./pr_report.html') # pr_report.html 파일로 저장
반응형
'Python > NLP' 카테고리의 다른 글
[python] symspell (0) | 2023.07.12 |
---|
Comments