일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Materials
- GoCD
- Jupyter
- ubuntu
- ftp
- centos
- ssh
- rethinkdb
- postgresql
- PYTHON
- 실행권한
- STF
- 28015
- openpyxl
- perfect
- nGrinder
- SWIFT
- kitura
- port forwarding
- nohup
- appium
- appium server
- Jupyter Notebook
- STF_PortForwarding
- mysql
- insert
- nmap
- postgres
- sshpass
- create table
- Today
- Total
목록Python/Tensorflow (4)
don't stop believing
OpenAI Gym이 어떤 것이냐면 아래 써있습니다.[https://gym.openai.com/docs/]OpenAI Gym is a toolkit for developing and comparing reinforcement learning algorithms. It makes no assumptions about the structure of your agent, and is compatible with any numerical computation library, such as TensorFlow or Theano. You can use it from Python code, and soon from other languages. 강화학습을 배우면서 OpenAI Gym을 사용해 보게 되었습니다.우선 설..
모두를 위한 머신러닝/딥런닝 강의https://hunkim.github.io/ml/ Tensorflow API Documenthttps://www.tensorflow.org/api_docs/
Mac에 TensorFlow를 설치하는 건 Windows보다 간단합니다.개발 편의를 위해 Python 3.6.x로 설치합니다. $ python --version Python 3.6.3 이제 아래 명령으로 tensorflow를 설치합니다. $ pip3 install tensorflow 설치가 되는 것을 확인할 수 있습니다.이제 tensorflow가 정상적으로 설치 되었는지 확인해 봅시다.python 명령 실행 후 아래 코드를 실행해 봅니다. >>> import tensorflow as tf >>> hello = tf.constant('Hello, tongchun') >>> sess = tf.Session() >>> print(sess.run(hello)) b'Hello, tongchun' tensorflo..
인공지능이란 것을 배워 봅시다. 그중에서 가장 유명한 tensorflow를 설치하고 기본 예제를 따라해 봅시다. 언제 Windows에 python 3.5 이상의 버전이 설치되어 있어야 합니다. 윈도우 cmd에 python 버전을 확인해 봅니다. python --version Python 3.6.2 자.. 여기서부터 문제가 있었습니다. tensorflow는 Windows버전의 경우 python 3.5.x에서만 실행이 되고 있습니다. 그러니 python 3.5.4 버전을 설치해 주고 환경변수의 path를 다시 잡아 줬습니다. cmd 또는 PowerShell을 관리자 모드로 실행합니다. 그리고 다시 python 버전을 확인 합니다. python --version Python 3.5.4 3.5.4 버전이니 pi..