반응형 AI5 ImportError: Image transformations require SciPy. Install SciPy. conda list scipy conda install scipy=1.8.1 -c conda-forge 2023. 1. 14. CUDA_ERROR_NO_BINARY_FOR_GPU 환경구성 python 3.8.12 tensorflow-gpu 2.4.1 조치 결과 1. config 설정(실패_적용해도 동일한 에러발생 ) ``` import tensorflow as tf config = tf.compat.v1.ConfigProto() config.gpu_options.allow_growth = True session = tf.compat.v1.Session(config=config) ``` 2. 신규 버전 version 설치 (성공) conda create -n tf_gpu python=3.8.15 python3 -m pip install tensorflow-gpu==2.4.0 conda install pandas 2023. 1. 12. 이진 분류 알고리즘 Two Class Classification Algorithm https://www.youtube.com/watch?v=8hxewuzAhnc&list=PLV__TJh4WgdCI-qAyw6Jcnl4oIoY5Vj02&index=9 2021. 12. 12. How to select algorithms for Azure Machine Learning A common question is “Which machine learning algorithm should I use?” The algorithm you select depends primarily on two different aspects of your data science scenario: What you want to do with your data? Specifically, what is the business question you want to answer by learning from your past data? What are the requirements of your data science scenario? Specifically, what is the accuracy, trai.. 2021. 12. 12. 이전 1 2 다음 반응형