본문 바로가기
반응형

전체 글273

[Python]Saving ML Models # https://machinelearningmastery.com/save-load-machine-learning-models-python-scikit-learn/# Save Model Using Pickleimport pandasfrom sklearn import model_selectionfrom sklearn.linear_model import LogisticRegressionimport pickleurl = "https://raw.githubusercontent.com/jbrownlee/Datasets/master/pima-indians-diabetes.data.csv"names = ['preg', 'plas', 'pres', 'skin', 'test', 'mass', 'pedi', 'age', .. 2024. 4. 25.
[Python]Convolutional Neural Network (CNN) & Computer Vision https://medium.com/@kaanerdenn/convolutional-neural-network-cnn-computer-vision-75f17400b261 Convolutional Neural Network (CNN) & Computer VisionIn this exploration of Convolutional Neural Networks (CNNs) and their pivotal role in the field of computer vision, we aim to lay the…medium.com  In this exploration of Convolutional Neural Networks (CNNs) and their pivotal role in the field of computer.. 2024. 4. 25.
[Python]Python GUI PyQt UI 생성 및 연결(Python GUI) https://realpython.com/lessons/pyqt-layouts-overview/ Creating PyQt Layouts for GUI Applications (Overview) – Real PythonHello there! In this course, we are going to create flexible GUIs in PyQt5. Specifically, here’s what we are going to make. We are going to create some GUIs that scale in the horizontal axis, some that scale on the vertical axis, some that scale on…realpython.com .. 2024. 4. 24.
Linux Package 관리 # apt-get 명령어 apt-get update Repository를 최신으로 업데이트 apt-get upgrade Repository를 비교하여 최신 버전으로 업그레이드 apt-get dist-upgrade 의존성을 검사하여 패키지를 업그레이드 apt-get install 패키지명 패키지명 설치 apt-get purge 패키지명 패키지를 삭제 (설정파일 까지 삭제) apt-get remove 패키지명 패키지를 삭제 (설정파일은 남는다.) apt-cache search 패키지명 Repository에서 설치 가능한 패키지를 검색 apt-cache dist-upgrade Repository 에서 설치 의존성을 검사하며 설치 apt-cache install 패키지명 -y 설치시 Y/N 선택지에서 자동으로 .. 2024. 4. 22.
반응형