반응형 전체 글252 간단한 오디오 인식: 키워드 인식 https://www.tensorflow.org/tutorials/audio/simple_audio 2: assert len(spectrogram.shape) == 3 spectrogram = np.squeeze(spectrogram, axis=-1) # Convert the frequencies to log scale and transpose, so that the time is # represented on the x-axis (columns). # Add an epsilon to avoid taking a log of zero. log_spec = np.log(spectrogram.T + np.finfo(float).eps) height = log_spec.shape[0] width = log_sp.. 2022. 6. 13. jupyter notebook : kernel error python -m ipykernel install --user 2022. 6. 11. 파이썬으로 구글 Gmail 보내기 1편. SMTP의 개념과 구글 앱 비밀번호 발급받기 https://coding-kindergarten.tistory.com/204 [python/smtplib] 파이썬으로 구글 Gmail 보내기 1편. SMTP의 개념과 구글 앱 비밀번호 발급받기 안녕하세요, 왕초보 코린이를 위한 코딩유치원에 오신 것을 환영합니다. 코딩유치원에서는 파이썬 기초부터 사무자동화, 웹크롤링, 데이터 분석 등의 다양한 패키지까지 초보자도 알기 쉽도 coding-kindergarten.tistory.com 오늘은 파이썬으로 구글의 Gmail을 사용하는 방법에 대해서 공부해보겠습니다. 구글의 보안이 철저해서 별도의 설정 없이는 오늘 배울 smtplib 모듈을 제대로 다룰 수 없으므로, 간단하게 SMTP의 개념을 알아본 후, 구글에서 '2단계 인증'과 '앱 비밀번호' 설정을 함께 진행.. 2022. 6. 10. [matlab to C code]Generate Code for an Averaging Filter https://kr.mathworks.com/help/coder/gs/averaging-filter.html Generate Code for an Averaging Filter - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com Generate Code for an Averaging Filter This example shows the recommended workflow for generating C code from a MATLAB® function using the codegen command. These are the steps: 1. Add the %#codege.. 2022. 6. 5. 이전 1 ··· 29 30 31 32 33 34 35 ··· 63 다음 반응형