분류 전체보기
-
NLP 자연어 처리 정리 1DEV/nlp 2024. 8. 22. 10:57
[노트]자연어 처리 - Speech Recognition (음성 인식) - Translation (번역) - Text Summary (요약) - Text Classification (분류) 자연어 처리의 요소들 - Sentiment Analysis : 텍스트에 녹아 있는 감성 또는 의견을 파악 - Tokenization : 단어의 최소한의 의미를 파악하는 쪼개기 - Named Entity Recognition : 텍스트로부터 주제 파악하기 - Normalization : 의도된 오타 파악하기 - Dependenct Parsin : 문장 구성 성분의 분석 - Feature Analysis : 음성 데이터로부터 특징을 추출 - Language Model : 언어별로 갖고 있는 특성을 반영 - Deep Lea..
-
Certbot을 통해 무료 SSL 발급받기(임시 및 갱신)DEV/other things 2024. 8. 19. 18:01
certbot으로 ssl 발급 - 도메인은 미리 준비하자 - 가비아와 같은 서비스를 이용하면 저렴하게 이용 가능한 도메인이 존재함// apt updatesudo apt update// certbot 설치sudo apt install certbot python3-certbot-nginx// nginx에서 발급받아야 함.// systemctl status nginxsudo systemctl stop nginx// 방화벽 확인sudo ufw allow 80sudo ufw allow 443// 도메인은 미리 준비하자. (본인은 가비아 사용)sudo certbot --standalone -d certonly// 다음과 같이 진행됨// Saving debug log to /var/log/letsencrypt/le..
-
Zendesk ZCLI React App 생성DEV/other things 2024. 6. 14. 14:04
2025ver https://developer.zendesk.com/documentation/apps/build-an-app/using-react-in-a-support-app/ Using React in a Support appDeveloper documentation for products at Zendeskdeveloper.zendesk.com1. zcli 설정 후 앱 생성(하단의 2, 3, 4 항목까지 동일) - 앱을 생성한 후 해당 폴더에서 "npm install" 하는거 까먹지 않기.2. npm run build >> dist 폴더 생성함3. zcli apps:server dist >> 로컬에서 실행 - https://{zendesk domain}?zcli_apps=true 1. libsec..