분류 전체보기
-
Mac OS / Windows Ollama로 eeve 모델 설치하여 사용하기DEV/nlp 2024. 9. 25. 18:04
M1, M2, M3 실리콘 맥 시리즈에서 Ollama로 eeve를 등록하여 사용해 보았습니다.(Windows도 동작 확인 완료) ollama install : https://github.com/ollama/ollama GitHub - ollama/ollama: Get up and running with Llama 3.1, Mistral, Gemma 2, and other large language models.Get up and running with Llama 3.1, Mistral, Gemma 2, and other large language models. - ollama/ollamagithub.com 그 다음 사용할 모델인 eeve를 준비합니다. (https://huggingface.co/heegy..
-
일본 자차여행 1. 부산항, 시모노세키, 미네시, 히로시마 그리고 일본 국도Car/mx5 (23.~) 2024. 9. 25. 17:21
*이상하게 본인 구글 지도 타임라인은 직선이 하나 더 생김, 이 점 미리 알림9월 12일 목요일 친구를 데리러 구로(회사)에서 충주로 이동하였다.이후 숙면...9월 13일 금요일 배를 타기 위해 부산으로 이동하였다. 배는 "부관훼리(부산훼리)"를 이용...! 점심은 부산에서 유명하다는 "이재모 피자"를 먹었다. 그냥 맛있는 시장 피자 정도의 느낌이지만 치즈크러스트는 꼭 먹어보시는 걸 추천한다...!(피자 손잡이 강추...!) 아마 부관훼리를 이용하면 차량 임시 수출입 고객은 2시 반까지 터미널로 오라고 안내를 해준다. 터미널 주차장을 이용하시면 되며 주차비는 비싸지 않았다. 나중에 세관 앞에 차량을 잠시 정차하고 서류 작업을 진행하는데 바이크 같은 경우는 해당 위치에 미리 주차하시는 분들도 보았다. 공..
-
trumbowyg color picker bugDEV/other things 2024. 9. 4. 15:17
Problem with color selection. trumbowyg.color.js// Original codefunction colorTagHandler(element, trumbowyg) { var tags = []; if (!element.style) { return tags; } // background color if (element.style.backgroundColor !== '') { var backColor = colorToHex(element.style.backgroundColor); if (trumbowyg.o.plugins.colors.colorList.indexOf(backColor) >= 0) { ..
-
trumbowyg table bugDEV/other things 2024. 9. 4. 15:15
How to fix a bug where the table width changes randomly. trumbowyg.table.js// Original codevar setColWidths = function ($table, tableState, isUnitPercent = false) { var $colgroup = $('colgroup', $table); var $cols = $('col', $colgroup); var tableWidth = $table[0].offsetWidth; $table.css({ maxWidth: $table[0].offsetWidth, }); var columnCount = tableState[0].length; var..
-
Node js/Redis Node(Javascript) 환경에서 Redis를 연결하고 사용하기.DEV/node js 2024. 8. 29. 17:41
결론부터 말씀 드리면... (코드만 보실 분은 해당 코드 참조, 본문은 아래로 이동)////////////// 1. 연결 //////////////const redis = require('redis');const client = redis.createClient();client.on('error', (error) => { console.log('Redis error : ', error); });client.on('connect', () => { console.log("Redis connected") });client.connect();////////////// 2. SET //////////////// >> SET(key, value)await client.set('data', data);////////..