KT AIVLE SCHOOL13 [KT AIVLE] mlflow를 활용한 MLOps 기초 배우기 주제 AI를 활용해 수어를 번역해주는 웹 사이트 제작 활용 데이터 아키텍쳐 분석, mlflow MLFLOW 사용 방법 MLflow : 머신러닝 모델을 관리할 수 있는 DB 사이트. 최신/성능이 가장 좋은 모델을 선택해 업데이트하게 해줌 https://mlflow.org/ MLflow - A platform for the machine learning lifecycle An open source platform for the end-to-end machine learning lifecycle mlflow.org 로컬 db 사용 코드 실행 mlflow_uri = "sqlite:///mlflow.db" mlflow.set_tracking_uri(mlflow_uri) 2. 코드 실행 with mlflow.sta.. 2023. 9. 11. [colab] MFCC 오디오 모델 변수 정리 python 변수 이름/의미/예시 정리 no name 의미 예시 1 label label or class # label = 16 2 height Input image height(mfcc의 이미지 높이) height = 48 3 width Input image width(mfcc의 이미지 너비) width = 173 4 SR sample_rate Hz, 주파수를 의미, 보통 44100 사용 SR = 44100 5 stft 오디오를 스펙토그램으로 만든 것 stft = librosa.stft(audio_file) 6 n_fft 오디오 프레임 사이즈 n_fft = 2048 7 n_hop hop_length hop_size window가 움직이는 너비, 프레임 간격 Librosa default is n_fft // 4 ⇒ .. 2023. 6. 27. [BIG PROJECT] Audio classification 데이터 정리 1. UrbanSound8K Urban Sound 8K는 air_conditioner, car_horn, children_playing, dog_bark, drilling, Enginge_idling, gun_shot, jackhammer, siren 및 street_music의 10개 클래스에서 도시 소리의 레이블이 지정된 **8732개의 사운드 발췌( 2023. 6. 27. [KT AIVLE] 웹프로그래밍 기초 mongo DB 사용법 create database use mongo; db; //database list show dbs; // create document(row) db.user.insert({name:'andy', age:29, email:'andy@gmail.com'}); show dbs; // server>databases>collections> documents //collection list show collections; // CRUD:create read ubdate delete // database, collections(table), documents(row) > CRUD CREATE collections > 이름 db.createCollection('test'); show collections; // ca.. 2023. 4. 28. [KT AIVLE] 웹프로그래밍 JAVASCRIPT 기초 문법 Javascript - 사용목적 : cpu, RAM, SSD(HDD)자원을 활용 변수선언 : RAM 사용 문법 : RAM 저장공간을 만들어 데이터 저장 데이터타입 : RAM 효율적 사용 문법 : 쓸데없는 공간의 낭비를 줄임 연산자 : CPU 사용 문법 : 산술, 비교, 논리, 할당, 삼항 조건문 : 조건 따라서 다른 코드 실행 반복문 : 특정 코드를 반복적으로 실행 함수 : 중복코드를 묶어서 코드 작성 실행 > 코드 유지보수 향상 객체 : 식별자 1개로 여러 개의 데이터 저장(컬렉션) : 변수, 함수를 묶어서 코드 작성(클래스) 문법 개요 웹브라우져에서 동작되는 동적으로 페이지를 수정하고 이벤트를 처리하는 언어 인터프리터, 동적 타이핑, 객체지향 코드작성(문자열) > 컴파일러 > 컴퓨터(이진수) 컴파일러.. 2023. 4. 26. [KT AIVLE] 웹 프로그래밍 기초 정리 및 VSCODE 환경설정 vs code 환경설정 1. Extensions 설치 javascript debugger beautify css Pytest IntelliSense Live Preview code runner *code runner 설치시 python 한글 문자열이 깨지는걸 막기 위해 설정 2. node js 설치 Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 18.16버전 설치 후 껐다 켜서 출력 되는지 확인 3. HTML 코드 작성 test.html 파일 생성 html : 5 또는 ! 자동완성 클릭 ←기본구조 meta : 웹 페이지의 기본 데이터 = 검색 엔진 노출과 관련 http-equiv : 웹브.. 2023. 4. 25. 이전 1 2 3 다음