본문 바로가기
반응형

연구23

[200929] STT -> 형태소분석 //첫번째 에러 (env) C:\Users\kyung\stt_ass>python stt_test1.py Traceback (most recent call last): File "stt_test1.py", line 32, in from google.cloud import speech ModuleNotFoundError: No module named 'google' 이라는 에러를 제일 처음 만날 것이다. 해결 : 오류뜬 장소에서 1) pip install --upgrade google-cloud-storage 2) pip install google-cloud-speech 3) gcloud auth activate-service-account --key-file="경로\파일명" (경로에 아까 다운받은 .jso.. 2020. 9. 29.
[200809] 머신러닝 개발환경 구축 1) anaconda prompt 실행(그냥 cmd에서 하면 안됨ㅜ) 2) pip install tensorflow 명령어 입력하여 텐서플로우 설치 3) 설치 완료되면 python 입력하여 파이썬 커맨드 라인으로 입장 4) import tensorflow as tf hello = tf.constant('hello world') tf.print(hello) 실행하여 tensorflow가 잘 작동되는지 확인 2020. 8. 12.
TensorFlow정리 TensorFlow is an end-to-end open source platform for machine learning. It has a comprehensive, flexible ecosystem of tools, libraries, and community resources that lets researchers push the state-of-the-art in ML and developers easily build and deploy ML-powered applications. TensorFlow provides stable Python and C++ APIs, as well as non-guaranteed backward compatible API for other languages. ->.. 2020. 7. 26.
[200725] Google STT 실행파일 만들기 (with 경환&재홍) 앞선 글에서 Google API를 활용한 STT 기능 구현 방법에 대해 알아보았습니다.(STT 기능 구현 방법이 궁금하다면 아래 링크를 통해 확인) https://for-sign.tistory.com/6 [200715] STT 과제 - Google STT 활용 (20200723 수정) 1. Google Cloud Platform 1) 주소창에 https://console.cloud.google.com을 작성한 후 2) 파란 상단바에 My First Project를 클릭하면 프로젝트를 선택할 수 있는 박스가 뜬다. 우측 상단의 새 프로젝트를 누르고.. for-sign.tistory.com 이번에는 Google API를 이용해 STT를 구현한 파이선 파일(.py)을 실행파일(.exe)로 바꾸는 방법에 대해 .. 2020. 7. 25.
반응형