This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// FloatingPanel.swift | |
// UITest | |
// | |
// Created by USER on 2021/04/07. | |
// | |
import SwiftUI | |
import Introspect |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://egg-money.tistory.com/115 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import speech_recognition as sr | |
import sys | |
from pydub import AudioSegment | |
if __name__ == "__main__": | |
args = sys.argv | |
if len(args) < 3: | |
print("Input filename, language(ex. ko-KR)") | |
exit(0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Pandas DataFrame을 사용 | |
train_df = pd.read_csv('../input/train.csv') | |
test_df = pd.read_csv('../input/test.csv') | |
combine = [train_df, test_df] | |
train_df.head() |