본문 바로가기

python/머신러닝A.I3

ChatGPT 슬기로운 활용법! 5 가지! ( 음성 지원, 검색 기능 ) 1. ChatGPT for Google 제일 인기 있는 ChatGPT 확장도구 입니다. 구글에서 검색하면 기존 웹 사이트 결과 뿐만 아니라 ChatGPT의 결과도 같이 확인할 수 있습니다. ( 갑자기 호떡이 먹고 싶어서 물어봤습니다... ) 자신의 구글 계정에 연동된 ChatGPT를 사용하기 때문에 구글에서 검색한 내용이 세션에 남습니다. 구글 검색을 세션에 남기지 않기 위해 옵션에서 조정할 수 있습니다. ( 하지만 해당 기능이 활성화 되지 않는 이슈가 현재 등록되어 있습니다. ) 2. Promptheus - Converse with ChatGPT 음성인식을 사용하여 GPT에 명령을 보냅니다. "스페이스"바를 누르고 있으면 음성을 인식하고 키를 떼면 인식된 명령이 보내집니다. 하지만, 영어 발음이 부정확.. 2023. 2. 20.
Python - pip install shap 오류 발생 시. MacBook환경에 shap 패키지 설치 중 의존성 오류 발생 시 해결방법. shap 패키지 설치 python -m pip install shap 다음의 오류 발생 ERROR: Failed building wheel for numba Running setup.py clean for numba Building wheel for llvmlite (setup.py) ... error ERROR: Command errored out with exit status 1: ... 중략 ... ERROR: Failed building wheel for llvmlite Running setup.py clean for llvmlite Successfully built shap Failed to build numba llv.. 2022. 9. 30.
x and y can be no greater than 2-D, but have shapes (2,) and (2, 1, 1) plt.scatter(train_input, train_target) plt.plot([15, 50], [15*lr.coef_+lr.intercept_, 50*lr.coef_+lr.intercept_]) plt.scatter(50, 1241.8, marker='^') plt.xlabel('length') plt.ylabel('weight') plt.show() 위 구문에서 다음과 같은 오류 발생 ~\AppData\Local\Programs\Python\Python39\lib\site-packages\matplotlib\axes\_base.py in _plot_args(self, tup, kwargs) 343 f"have shapes {x.shape} and {y.shape}") 344 if x.ndim .. 2021. 3. 2.