분류 전체보기(224)
-
[RASA] 오류 Error:Requested URL /webhooks/rest/webhook not found
✔️ 상황 정상 과정은 아래와 같다 클라이언트 -> 엔진 -> 코어 문제 상황 엔진까지 들어오고 코어로 들오오는데 오류발생 오류 코드: Error:Requested URL /webhooks/rest/webhook not found ✔️ 해결방안 1.endpoint.yml 2.credential.yml 3. 엔진 상태 off일 경우 => 코어를 바라보게 지정해놔야댐! https도 사용하면 안된다! 4. 재학습 rasa train nlu rasa train core 여기서 오류떠서 그런 경우도 있음
2023.12.11 -
[RASA] 오류 error running graph component for node train_unexpectedintentpolicy2
상황 명령어: rasa train core RASA CORE Train시 오류 발생 오류코드 마지막 error running graph component for node train_unexpectedintentpolicy2 Traceback (most recent call last): File "C:\Users\choiyounghyun\AppData\Local\Programs\Python\Python39\lib\runpy.py", line 197, in _run_module_as_main return _run_code(code, main_globals, None, File "C:\Users\choiyounghyun\AppData\Local\Programs\Python\Python39\lib\runpy.p..
2023.12.11 -
[Ubuntu] Aws ufw(우분투 방화벽)설정 후 인스턴스 실행이 안될 때
https://gksdudrb922.tistory.com/202 [AWS] EC2, ufw enable 후 ssh 접속 불가 문제 Ubuntu는 기본 방화벽으로 ufw를 사용한다. 이 때, ufw를 disable 했다가 enable 했을 때, ssh 접속이 다시 되지 않는 경우가 있다. 사실 무시하고 넘어갔겠지만 ufw를 enable 할 때, ssh 접속이 끊어질 수 있다 gksdudrb922.tistory.com https://shuu.tistory.com/141 [AWS/Ubuntu] UFW 데몬 활성화로 인해 SSH 접속 차단 시, 해결 방법 1) UFW (Ubuntu 방화벽) 활성화로 인해 SSH 접속 차단 시, 해결 방법 (1) 개요 AWS에서 제공되는 Ubuntu 이미지로 EC2를 생성하게 되..
2023.12.07 -
[Sheetjs] 1개의 시트에 여러개의 테이블 넣기
상황 1. html 테이블이 동적으로 생성 되는 중 2. 동적 table을 클라이언트 단에서 엑셀파일로 만들고 싶었음 (굳이 서버를 거쳐야하나..?) 3. name 혹은 table 요소 선택자로 다 가져와서 sheetjs로 엑셀파일을 만들수 있게 하고 싶었음 //개발가이드 액셀 다운로드 기능 function excelDown() { //객체 생성(excel) var wb = XLSX.utils.book_new(); //html 모든 테이블 선택 var tables = document.querySelectorAll('table'); // 1개의 배열에 모든 데이터를 담기 위해 var combinedData = []; tables.forEach(function (table, index) { var ws = ..
2023.12.04 -
[MYSQL] Safe mode 해제
상황 DELETE a,b FROM chatbot_scenario as a JOIN chatbot_sc_ca_mapping b ON a.scenario_id = b.scenario_id WHERE a.scenario_id = '데이터' 에러 Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column. To disable safe mode, toggle the option in Preferences -> SQL Editor and reconnect. 해결 방안 1. 안전 모드 해제 Workbench 우측 상단 -> Edit -> Preferences ->..
2023.11.29 -
[javascript]sortable 사용법
https://velog.io/@tmdgp0212/TIL230119JS-Sortable-JS TIL230119📝JS)Sortable JS 드래그로 목록의 순서를 바꿀 수 있도록 해주는 Sortable JS velog.io
2023.11.20