목록전체 글 (74)
잡동사니 블로그

https://www.acmicpc.net/problem/15686 15686번: 치킨 배달 크기가 N×N인 도시가 있다. 도시는 1×1크기의 칸으로 나누어져 있다. 도시의 각 칸은 빈 칸, 치킨집, 집 중 하나이다. 도시의 칸은 (r, c)와 같은 형태로 나타내고, r행 c열 또는 위에서부터 r번째 칸 www.acmicpc.net from itertools import combinations t, num1 = map(int, input().split()) chick_x_y = [] home_x_y = [] for i in range(t): coordinate = list(map(int, input().split())) for j in range(len(coordinate)) : if coordinate..

젯슨 나노는 세계 최대 그래픽카드 제조회사 Nvidia에서 제작한 싱글보드 컴퓨터로 라즈베리파이와 비슷한 오픈소스 하드웨어이다. https://developer.nvidia.com/embedded/downloads Jetson Download Center Get downloadable documentation, software, and other resources for the NVIDIA Jetson ecosystem. developer.nvidia.com https://docs.nvidia.com/deeplearning/frameworks/install-tf-jetson-platform-release-notes/tf-jetson-rel.html TensorFlow for Jetson Platform ..

프로젝트를 진행하며 불량과 양품의 구분을 모델링 하였을 때 결과가 기대했던것 만큼 좋게 나오지는 않아서 차원축소를 통한 시각화로 EDA를 하고자 썼었다. 논문에 따르면 T-SNE 기법은 다른 Isomap 및 지역적선형임베딩(Locally Linear Embedding)기술보다 우수한 시각화 효과를 나타내었으며 거의 모든 데이터셋 에 적용된다고 한다. 기본적으로 정규분포를 쓰는 확률적 이웃 임베딩(stochastic neighbor embedding)에서 t-Distributed 함수를 써서 활용한것이 T-SNE라고 한다. 내가 프로젝트에서 활용 하였던 데이터셋을 활용 하였다. import pandas as pd import numpy as np from sklearn.manifold import TSNE..

파이썬 입문한지 약 3달째 연습데이터로 하기 좋은 Kaggle에 신용카드 사기 분류 데이터로 연습해보았다. 데이터셋 다운로드는 아래 링크로. https://www.kaggle.com/datasets/mlg-ulb/creditcardfraud Credit Card Fraud Detection Anonymized credit card transactions labeled as fraudulent or genuine www.kaggle.com from sklearn.preprocessing import RobustScaler from sklearn.model_selection import train_test_split from sklearn.metrics import confusion_matrix, accur..