A Byte of Python 한글판 PDF http://byteofpython-korean.sourceforge.net/byte_of_python.pdf HTML http://byteofpython-korean.sourceforge.net/byte_of_python.html Sourceforge https://sourceforge.net/projects/byteofpython-korean/ 원저 : https://python.swaroopch.com/ 개발/Python 2020.02.24
Tensorflow2.x libnvinfer.so.6 libnvinfer_plugin.so.6 error >>> import tensorflow as tf 2020-02-23 23:40:33.293827: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer.so.6'; dlerror: libnvinfer.so.6: cannot open shared object file: No such file or directory 2020-02-23 23:40:33.293931: W tensorflow/stream_executor/platform/default/dso_loader.cc:55] Could not load dynamic library 'libnvinfer_plugin.so.. OS/Linux 2020.02.23
Tensorflow install System install $ pip3 install --user --upgrade tensorflow # install in $HOME Verify the install: $ python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))" Virtualenv install (venv) $ pip install --upgrade tensorflow Verify the install: (venv) $ python -c "import tensorflow as tf;print(tf.reduce_sum(tf.random.normal([1000, 1000])))" https://www.tensorflow.org/in.. OS/Linux 2020.02.23
Install TensorFlow 2 # Requires the latest pip $ pip install --upgrade pip # Current stable release for CPU and GPU $ pip install tensorflow # Or try the preview build (unstable) $ pip install tf-nightly https://www.tensorflow.org/install OS/Linux 2020.02.23
Ubuntu desktop shortcut 1. editor use gedit doublecmd.desktop --------------------------------------------------------------------------------------- [Desktop Entry] Version=1.0 Type=Application Name=doublecmd Icon=/home/user/app/doublecmd/doublecmd.png Exec=/home/user/app/doublecmd/doublecmd.sh Comment=Double Commander Terminal=false -------------------------------------------------------------------------------------.. OS/Ubuntu 2020.02.19
top 특정 프로세스 모니터링 Top으로 특정 프로세스의 모니터링 $ top -p (pid) 프로세스 이름으로 PID 검색 $ ps -ef | grep (process name) | grep -v grep | awk '{print $2}' OS/Linux 2020.01.16
pip3/pip install pip3 install $ sudo apt install python3-pip pip install $ sudo apt install python-pip pip upgrade $ python -m pip install --upgrade pip $ pip install --upgrade pip OS/Ubuntu 2019.12.10
Machine Learning / Deep Learning site 1. TensorFlow https://www.tensorflow.org/ TensorFlow 엔드 투 엔드 오픈소스 머신러닝 플랫폼 www.tensorflow.org 2. Keras https://keras.io/ Home - Keras Documentation Keras: The Python Deep Learning library You have just found Keras. Keras is a high-level neural networks API, written in Python and capable of running on top of TensorFlow, CNTK, or Theano. It was developed with a focus on enabling fast experimentati.. AI/Machine Learning, Deep Learning 2019.12.10
tensorflow install 1. pip3 use (python 3.x version) 1.1 tensorflow cpu version $ pip3 install tensorflow (uninstall $ pip3 uninstall tensorflow) 1.2 tensorflow gpu version $ pip3 install tensorflow-gpu (uninstall $ pip3 uninstall tensorflow-gpu) 2. pip use (python 2.x version) 2.1 tensorflow cpu version $ pip install tensorflow (uninstall $ pip uninstall tensorflow) 2.2 tensorflow gpu version $ pip install tensorf.. OS/Ubuntu 2019.11.24