Notice
Recent Posts
Recent Comments
Link
- Arawn's Dev Blog
- Outsider's Dev Story
- Toby's Epril
- Benelog
- NHN 개발자 블로그
- SK 플래닛 기술 블로그
- OLC CENTER
- 소프트웨어 경영/공학 블로그
- 모바일 컨버전스
- KOSR - Korea Operating System …
- 넥스트리 블로그
- 리버스코어 ReverseCore
- SLiPP
- 개발자를 위하여... (Nextree 임병인 수석)
- "트위터 부트스트랩: 디자이너도 놀라워할 매끈하고 직관…
- Learning English - The English…
- real-english.com
- 'DataScience/Deep Learning' 카테…
- Deep Learning Summer School, M…
- Deep Learning Courses
민서네집
How to get python module(file) location (inspect 모듈 사용) 본문
Where is python tensorflow mnist source file
$ python -m tensorflow.models.image.mnist.convolutional (Execution)
How to get Python module(file) location
$ python -c "import os; import inspect; import tensorflow; print(os.path.dirname(inspect.getfile(tensorflow)))"
[Result] /usr/local/lib/python2.7/dist-packages/tensorflow
$ python -c "import os; import inspect; from tensorflow.models.image.mnist import convolutional; print(os.path.dirname(inspect.getfile(convolutional)))"
[Result] /usr/local/lib/python2.7/dist-packages/tensorflow/models/image/mnist
'Python' 카테고리의 다른 글
[밑바닥부터 시작하는 데이터 사이언스] (0) | 2016.08.27 |
---|---|
Eclipse with PyDev - Remote Debugging (0) | 2016.08.22 |
[2016-08-18][Study] 딥엘라스틱: 파트 3 (0) | 2016.08.19 |
[python] Image Crop/Resize , JPEG Image를 TensorFlow 입력으로 변환 (0) | 2016.08.18 |
PyCharm 원격 빌드 설정 (0) | 2016.08.15 |
Comments