반응형 인공지능28 Gamma AI 로 만든 수화 아바타 제작 가이드 2024. 12. 11. Gradio: Real Time Speech Recognition Real Time Speech RecognitionIntroductionAutomatic speech recognition (ASR), the conversion of spoken speech to text, is a very important and thriving area of machine learning. ASR algorithms run on practically every smartphone, and are becoming increasingly embedded in professional workflows, such as digital assistants for nurses and doctors. Because ASR algorithms are designed to be used direct.. 2024. 12. 9. How to Use Gradio Building Your First DemoYou can run Gradio in your favorite code editor, Jupyter notebook, Google Colab, or anywhere else you write Python. Let's write your first Gradio app:pip install gradio import gradio as grdef greet(name, intensity): return "Hello, " + name + "!" * int(intensity)demo = gr.Interface( fn=greet, inputs=["text", "slider"], outputs=["text"],)demo.launch() https:/.. 2024. 12. 9. Streamlit + VSCODE streamlit?: 기계학습, 데이터 사이언스 프로젝트를 위한 오픈소스 앱 프레임워크, python으로 데이터 분석을 위한 웹앱을 쉽게 만들어줌 설치법? anaconda에 가상환경 설정anaconda prompt에 아래 입력> pip install streamlit> streamlit hello 아래와 같이 각종 데모를 볼 수 있음VSCode에서 사용import streamlit as stimport pandas as pddef main(): st.title('Hello World!') df = pd.DataFrame({ 'first column': [1, 2, 3, 4], 'second column': [10, 20, 30, 40] }) st.wr.. 2024. 11. 15. 이전 1 2 3 4 ··· 7 다음 반응형