반응형 연구/소원 - 팀장8 [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. [200721] 컴퓨터 오디오 접근 알아오기 과제,,, Java : https://stackoverrun.com/ko/q/10703531: stereo Mix라는 단서 발견 but 확실치 않음 https://stackoverrun.com/ko/q/1485826 -> https://namu.wiki/w/WASAPI : 레퍼런스에서 WASAPI라는것을 활용하면 가능할 수 있다했지만 이는 윈도우에서 제공하는 오디오 모듈로 이도 확실치 않ㅇ... https://gist.github.com/lifove/7e14530a56fcd870632cb8a471eee570 https://stackoverrun.com/ko/q/2262359 https://stackoverrun.com/ko/q/4196572 : 여기서는 자바에선 불가능하고 윈도우 PortAudio API쓰면 될거같.. 2020. 7. 21. [200721] Github 간단정리 1. 간단 필수 명령 git init : Github에 저장소 작성 git clone : Github에 저장소 복제 git add : 파일의 생성 git commit -m "filename" : 변경 결과를 로컬 저장소에 커밋 git remote add origin https://github.com/username/repositary git push origin master : 로컬 저장소를 밀어 원격 저장소에 반영 2. 브랜치 관리 git branch : 브랜치 목록 git branch asdf : asdf 라는 브랜치 생성 git checkout asdf : 지점의 이동 git checkout -b asdf : 지점만들기 및 이동 git merge asdf : 브랜치 결과 병합 git branch -.. 2020. 7. 21. [200715] STT 과제 - 안드로이드 google STT API 활용 1. AndroidManifest.xml 파일에 인터넷과 오디오 접근 허용을 위한 문장을 추가한다. 2. activity_main.xml 파일에 Textview 와 Button 을 하나씩 추가한다. Textview : stt 결과를 출력하기 위함 Button : stt 명령을 시작하기 위함 3. MainActivity.java 파일에 STT 기능을 추가한다. package com.example.testapp; import android.Manifest; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.speech.RecognitionListener; import android.sp.. 2020. 7. 18. 이전 1 2 다음 반응형