목록분류 전체보기 (189)
정화 코딩
https://www.acmicpc.net/problem/1504 #include #include #include using namespace std;int INTMAX = 1000000;int n, e, v1, v2;vector>> edge;int dijkstra(int s, int e) { vector dst(n + 1, INTMAX); priority_queue> pq; dst[s] = 0; pq.emplace(0, s); while (!pq.empty()) { int cost = -pq.top().first; int cur = pq.top().second; pq.pop(); for (auto nxt: edge[cur]) ..
Simple Two Hidden Layer Deep Learningimport tensorflow as tffrom sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay, accuracy_scorefrom sklearn.model_selection import train_test_splitimport numpy as npimport matplotlib.pyplot as plt# MNIST 데이터셋 로드(X_train_full, y_train_full), (X_test, y_test) = tf.keras.datasets.mnist.load_data()# 데이터 전처리: 픽셀 값을 0~1 사이로 스케일링X_train_full = X_train_fu..
https://www.acmicpc.net/problem/1967 #include #include using namespace std;vector>> g;vector vst;int maxc = 0;void dfs(int cur, int cnt) { vst[cur] = true; if (cnt > maxc) maxc = cnt; for (auto nxt: g[cur]) { if (!vst[nxt.first]) dfs(nxt.first, cnt + nxt.second); }}int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n; cin >> n; g = vector..
저번에 파인튜닝을 제대로 시켰다고 생각했는데 이상한 기계음만 들리고 결국 실패했다. 그래서 깃허브 이슈들을 쭉 보고 있었는데 충격적인 글 발견..!!! https://github.com/SWivid/F5-TTS/discussions/57#discussioncomment-10980454 Finetune practice · SWivid F5-TTS · Discussion #57Full finetune is currently supported, lora or adapter not yet. Set checkpoint_path to pretrained model dir in test_train.py, model/trainer.py will load from there to resume. Reuse the voc..
아나콘다 설치하기https://www.anaconda.com/ Anaconda | The Operating System for AIDemocratize AI innovation with the world’s most trusted open ecosystem for data science and AI development.www.anaconda.com 우측 상단에 Free Download를 클릭한다. 메일 인증을 완료하면 다운받을 수 있는 페이지로 이동한다. 일단 계속 Next 누르면 된다. 위와 같이 옵션을 선택해주고 Install 해주었다. F5-TTS 설치https://github.com/SWivid/F5-TTS GitHub - SWivid/F5-TTS: Official code for "F5-T..
pip install youtube-dl 윈도우 명령 프롬프트에서 youtube-dl 설치하기youtube-dl -x --audio-format mp3 https://www.youtube.com/watch?v=ekr2nIex040유튜브 영상에서 오디오만 mp3 형식으로 추출하기 위한 명령어 이렇게 하면 된다고 했는데 오류 발생...찾아보니 최신 버전이 있고 이름이 yt-dlp로 바뀌었다고..!!pip uninstall youtube-dl 일단 다시 삭제 아래의 yt-dlp 최신 릴리즈 사이트로 이동한다.https://github.com/yt-dlp/yt-dlp/releases여기서 yt-dlp.exe 파일을 설치한다. 다운받은 yt-dlp.exe 파일을 C:\Windows\System32 폴더로 이동시..
jest 패키지 설치...apps\admin-backend> pnpm i -D ts-jest @types/jestjest 관련 패키지들을 dev dependencies로 설치해준다. jest 설정 파일 생성...apps\admin-backend> npx ts-jest config:init명령어를 실행하면 package.json 파일에 jest 부분이 추가되거나 따로 별도의 jest.config.json 파일이 생성된다. 나는 초기 세팅시에 만들어져서 변화가 없었다. 별도의 파일로 분리하는 것이 편할 것 같아 package.json 파일에 있던 jest 부분을 삭제하고 다시 명령어를 실행시켜주었다. jest.config.json 파일이 잘 생성된 것을 확인할 수 있다. CommonJS 형식으로 인식할 ..
https://www.acmicpc.net/problem/13549 #include #include #include using namespace std;bool vst[300001];int dx[] = {1, -1};int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, k; cin >> n >> k; queue> q; int cur, cnt; bool fin = false; q.emplace(n, 0); vst[n + 100000] = true; while (!fin) { cur = q.front().first; cnt = q.front()...