stack overflow란?

왜 에러가 없지?

전체 글 63

Langchain시작

Langchain 주요모듈-모델I/O : 프롬프트,언어모델,출력파서-데이터연결 : 문서가져오기/변환/임베딩, 벡터저장소, 검색기-체인-메모리-에이전트/툴 출처 : https://github.com/gilbutITbook/080413 소스 코드" data-og-description=" 소스 코드. Contribute to gilbutITbook/080413 development by creating an account on GitHub." data-og-host="github.com" data-og-source-url="https://github.com/gilbutITbook/080413" data-og-url="https://github.com/gilbutITbook/080413" data-og-imag..

LLM 2024.10.09

XGBoost

XGBoost (2016) : eXtreme Gradient Boosting (https://arxiv.org/pdf/1603.02754)Optimized version of GBM enabling 성능의 저하는 약간은 있을 수 있으나(approximate), 데이터를 더 많이 사용하고, 병렬처리함 Scalability (확장성) : 다양한 분야에 활용tree boosting, split finding algorithm, system design가능한 모든 경우의 수를 탐색(Greedy)하여 최적의 해를 찾아야 하고 병렬처리가 안됨 전체영역을 몇개로 분할하여 split point를 찾아Approximate를 적용하면 더 빨리 best split point를 찾을 수 있다. 그러나 못찾을수도 있다.    ..

Machine Learning 2024.04.17