본문 바로가기

python49

ChatGPT 슬기로운 활용법! 5 가지! ( 음성 지원, 검색 기능 ) 1. ChatGPT for Google 제일 인기 있는 ChatGPT 확장도구 입니다. 구글에서 검색하면 기존 웹 사이트 결과 뿐만 아니라 ChatGPT의 결과도 같이 확인할 수 있습니다. ( 갑자기 호떡이 먹고 싶어서 물어봤습니다... ) 자신의 구글 계정에 연동된 ChatGPT를 사용하기 때문에 구글에서 검색한 내용이 세션에 남습니다. 구글 검색을 세션에 남기지 않기 위해 옵션에서 조정할 수 있습니다. ( 하지만 해당 기능이 활성화 되지 않는 이슈가 현재 등록되어 있습니다. ) 2. Promptheus - Converse with ChatGPT 음성인식을 사용하여 GPT에 명령을 보냅니다. "스페이스"바를 누르고 있으면 음성을 인식하고 키를 떼면 인식된 명령이 보내집니다. 하지만, 영어 발음이 부정확.. 2023. 2. 20.
python - 랜덤 범주형(Categorical) 데이터 생성하기 ( numpy ) np.random.choice 함수를 사용하여 Categorical data를 랜덤으로 생성합니다. np.random.choice random_data = np.random.choice( a=['a', 'b', 'c', 'd'], size=687, p=[0.1, 0.2, 0.3, 0.4] # 합이 1이 아닌 경우 오류 ) unique, counts = np.unique(random_data, return_counts=True) counts = (counts / len(random_data) * 100).round(2) for _class, _count in zip(unique, counts): print(_class, _count)output a .. 2022. 12. 7.
Pandas query 사용, 다중 조건, Like 검색 등 예제 Pandas Query¶ Query함수를 사용하여 데이터 조건식 적용 In [1]: import pandas as pd In [2]: # Set up data dataset_url= "https://archive.ics.uci.edu/ml/machine-learning-databases/car/car.data" df = pd.read_csv(dataset_url, names=['buying', 'maint', 'doors', 'persons', 'lug_boot', 'safety'], header=None) df.reset_index(drop=True, inplace=True) 데이터 출처 In [3]: df.head(5) Out[3]: buying maint doors persons lug_boot s.. 2022. 11. 9.
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.