100일 챌린지/빅데이터기반 인공지능 융합 서비스 개발자 93

Day 92 - 머신러닝을 활용하는 웹 서비스 만들기

from pickle import dumpwith open("filename.pkl", "wb") as f: dump(clf, f, protocol=5)from pickle import loadwith open("filename.pkl", "rb") as f: clf = load(f)skmain.pyhttps://scikit-learn.org/1.5/model_persistence.html#pickle-joblib-and-cloudpickle 9. Model persistenceSummary of model persistence methods:,,, Persistence method, Pros, Risks / Cons,,, ONNX, Serve models without a Python env..

Day 92 - CNN과 RNN

CNNfrom tensorflow.keras.datasets import mnistimport numpy as npimport matplotlib.pyplot as pltlen(mnist.load_data()[0][0][0])plt.imshow(mnist.load_data()[0][0][0])len(mnist.load_data()[0][0]),len(mnist.load_data()[0][1]),len(mnist.load_data()[1][0]),len(mnist.load_data()[1][1]),(x_train, y_train), (x_test, y_test) = mnist.load_data()print("x_train shape", x_train.shape)print("y_train shape", y_..

Day 91 - Tensorflow

https://teachablemachine.withgoogle.com/ Teachable MachineTrain a computer to recognize your own images, sounds, & poses. A fast, easy way to create machine learning models for your sites, apps, and more – no expertise or coding required.teachablemachine.withgoogle.comhttps://thebook.io/080244/0207/ 모두의 인공지능 with 파이썬: 1 개발 환경 만들기더북(TheBook): (주)도서출판 길벗에서 제공하는 IT 도서 열람 서비스입니다.thebook.io

Day 91 - 앙상블(Ensamble) 사용하기

https://scikit-learn.org/stable/modules/generated/sklearn.datasets.load_breast_cancer.html#sklearn.datasets.load_breast_cancer load_breast_cancerGallery examples: Post pruning decision trees with cost complexity pruning Model-based and sequential feature selection Permutation Importance with Multicollinear or Correlated Features Effect of v...scikit-learn.org 데이터 전처리from sklearn.datasets import ..

Day 89 - 데이터 활용해서 모델 만들기

https://azure.microsoft.com/ko-kr/products/machine-learning 공공 데이터 포털 사용하기https://eunchankim-dev.tistory.com/16 [Data Science] 공공데이터 사이트 모음(국내 사이트, 해외 사이트)빅데이터 시대에서 데이터는 하나의 중요한 자산이 되었습니다. 데이터를 파는 회사도 생겨나고 데이터를 구입해 분석한 결과를 판매하는 회사도 생겨나고 있습니다. 데이터를 개인이 직접 수eunchankim-dev.tistory.com https://www.kaggle.com/datasets Find Open Datasets and Machine Learning Projects | KaggleDownload Open Datasets on ..

Day 89 - web scraping (2)

https://www.crummy.com/software/BeautifulSoup/bs4/doc/ Beautiful Soup Documentation — Beautiful Soup 4.12.0 documentationBeautiful Soup Documentation Beautiful Soup is a Python library for pulling data out of HTML and XML files. It works with your favorite parser to provide idiomatic ways of navigating, searching, and modifying the parse tree. It commonly saves programmers hwww.crummy.com import..