태그>tensorflow(총 24개의 글)
'tensorflow' 관련 최근글
-
- tensorflow 실행시 sse3, sse4.1, sse4.2, avx, avx2, fma warn..
-
Kandalama01 by Kandalama01|2017/04/23 16:02
글에 앞서, 서버 환경은 다음과 같다. - Ubuntu server 16.04- Python 2.7- Tensorflow 1.0.1- GTX Titan X Tensorflow 실행시 다음과 같은 warning 이 뜰 수 있다. The TensorFlow library was compiled to use SSE4.1 instructions, but these aren't avail..
- tensorflow 실행시 sse3, sse4.1, sse4.2, avx, avx2, fma warn..
-
- tensorflow 학습, 실행 시간
-
공부가 본업. by 언제나19|2016/12/05 22:15
#.o2z4bcj7i Inception-v3. This model was trained for several weeks on multiple GPUs on ImageNet. Transfer learning does not require GPUs to trainTraining across the full training set (40,000 images) took less than a minute on my M..
- tensorflow 학습, 실행 시간
-
- ubuntu 16.04에 2 nvidia 1080 cards SLI 연결하고 DNN용 drivers설치
-
공부가 본업. by 언제나19|2016/11/30 16:43
을 참고하되, 최신 driver를 썼다. nvidia-370, cuda를 설치했을 때에는 nvidia graphic card로는 모니터에 신호가 없었고, 내장 GPU로는 black screen이었다. ubuntu 16.04LTS1 을 설치하고, nvidia driver부터 설치해 봤다.처음에는 내장 GPU에 모니터를 연..
tensorflow, DNN, cuda, nvidia, ubuntu
- ubuntu 16.04에 2 nvidia 1080 cards SLI 연결하고 DNN용 drivers설치
-
- Tensorflow 설치(기계학습)
-
블루오션 [BLUE OCEAN] by 장땡|2016/10/12 12:37
Tensorflow는 기계학습 및 시각화 도구이다. 구글에서 개발하여 배포 했다. 데이터 흐름을 그래프로 표시하여 수치연산을 한다.프로그램은 따로 배워야한다. 예제가 많으니 소스 바꾸어가면서 배우면 될 것이..
- Tensorflow 설치(기계학습)
-
- tensorflow categorical value feature vectorizor
-
공부가 본업. by 언제나19|2016/07/25 00:20
#.j824odvfy def one_hot_categorical_model(X, y): features = skflow.ops.one_hot_matrix(X, n_classes) return skflow.models.logistic_regression(tf.squeeze(features, [1]), y) 등이 유용해 보이네. 에서는 CountVectoriz..
tensorflow, ai, dnn, skflow, vectorizer
- tensorflow categorical value feature vectorizor
-
- skflow, sklearn 섞어 쓰기
-
공부가 본업. by 언제나19|2016/07/25 00:20
Cannot import sklearn in python conda install scikit-learn pip install scipy 를 해야 할 지도 모르는데, jupyter를 restart해야 반영된다. skflow가 tensorflow/tensorflow/contrib/learn/python/learn/로 이동했다. classifier = learn.LinearRegresso..
tensorflow, skflow, sklearn, jupyter, AI
- skflow, sklearn 섞어 쓰기
-
- google syntaxnet
-
공부가 본업. by 언제나19|2016/06/27 15:23
python 2.7만 지원하네pip2 install . python 2.7:python 3 support is not available yetbazel:versions 0.2.0 - 0.2.2b, NOT 0.2.3follow the instructions here. 설치하면, echo 'Bob brought the pizza to Alice.' | syntaxnet/demo.shInput: Bob br..
- google syntaxnet
-
- Tensorflow관련한 허접한것들 (미완)
-
새가 나무에 앉으면 버드나무 by Jinwoo|2016/06/11 16:59
기본적으로 3가지 종류의 node(?)가 있는듯Constant, Variable, Operation(function) 이중에서 constant는 제곧내 상수처럼 사용함.Variable은 변수인데 반드시 원하는 operation전에 초기화 필요함. 만들어 두고 세션 시작전이나 시작 직후 바로 초기화하는게 ..
- Tensorflow관련한 허접한것들 (미완)
-
- tensorflow text에 써 보기. sample codes
-
공부가 본업. by 언제나19|2016/04/10 18:02
Deep MNIST for Expertstutorial대로 적으면, code는 돌아가겠지만, parameter의 의미를 몰라서 내 case에 쓰기가 어렵다. sklearn 방식으로 coding할 수 있게 해주는 skflow에 sample code도 있다. Text Classification Using Recurrent Neural Networks..
- tensorflow text에 써 보기. sample codes