분류 전체보기 130

Houdini에서 외부 Python module 설치하기

후디니에 pip 설치하기python module 설치하기제대로 작동하는것을 볼 수 있다. Linux(Ubuntu)에서 작업 시 Shell 윈도우가 열리지 않을 때Houdini의 Windows->Shell 작업은 `xterm`이라는 터미널 에뮬레이터를 사용한다. 따라서 우분투 시스템에 `xterm`이 설치가 되지 않았을 경우 윈도우가 열리지 않게 된다. 해결 방법은 터미널에서 xterm을 설치하면 된다.sudo apt update && sudo apt install xterm

Houdini Tips 2025.01.16

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