본문 바로가기
반응형

Python56

Automation: Youtube Search https://gosmcom.tistory.com/67 [파이썬 레시피 - 웹 활용 입문편] 02. 웹 자동화 - B. 유튜브 키워드 검색 검색 키워드 자동입력 유튜브의 키워드 검색창의 경로를 알아봅시다. selenium에서는 대체로 xpath로 경로를 계산하여 요소에 탐색합니다. 먼저 크롬 개발자 도구로 검색창의 xpath를 알아내봅시다. gosmcom.tistory.com https://gorokke.tistory.com/8 [selenium] 크롤링 selenium 셀레니움 사용법, 명령어 모음 #0. 셀레니움 실행을 위한 chrome 드라이버 다운로드 사용중인 chrome 버전으로 드라이버를 다운로드 한다. 크롬 버전 확인 (주소창에 복붙) chrome://version 크롬 드라이버 다운로드 링.. 2023. 1. 11.
10 minutes to pandas https://pandas.pydata.org/docs/user_guide/10min.html 10 minutes to pandas — pandas 1.5.2 documentation 10 minutes to pandas This is a short introduction to pandas, geared mainly for new users. You can see more complex recipes in the Cookbook. Customarily, we import as follows: In [1]: import numpy as np In [2]: import pandas as pd Object creation See the In pandas.pydata.org This is a short intr.. 2023. 1. 10.
이미지 처리와 텍스트 인식 python pillow & tesseract Pillow https://pillow.readthedocs.io/en/stable/installation.html Installation Warnings: Python Support: Pillow supports these Python versions.,,,,,,,,, Python, 3.10, 3.9, 3.8, 3.7, 3.6, 3.5, 3.4, 2.7,,, Pillow >= 9.0, Yes, Yes, Yes, Yes,,,,,, Pillow 8.3.2 - 8.4, Yes, Yes, Ye... pillow.readthedocs.io > pip install pillow from PIL import Image, ImageFilter kitten=Image.open("kitten.jpg") blurryKit.. 2022. 9. 20.
딥러닝 음성인식에 필요한 wav 훈련 데이터 다루기(잡음중첩) , DSP를 이용한 음성인식, TinyML 음성인식(호출어 감지) 모델 훈련하기 https://engineering.linecorp.com/ko/blog/voice-waveform-arbitrary-signal-to-noise-ratio-python/ 딥 러닝 음성 인식에 필요한 훈련 데이터를 직접 만들어보자 2022-LINE-engineering-site engineering.linecorp.com 딥 러닝 음성 인식에 필요한 훈련 데이터를 직접 만들어보자 Kunihiko Sato2018-10-01 광고 플랫폼을 개발하는 소프트웨어 엔지니어입니다. 안녕하세요, LINE에서 광고 플랫폼 개발을 맡고 있는 1년차 신입사원 Kunihiko Sato입니다. 이번 블로그에서는 Python을 사용해서 임의의 Signal-to-Noise ratio(SN비)를 가진 음성 파형을 만드는 방법을 소.. 2022. 8. 16.
반응형