목록전체 글 (71)
잡동사니 블로그
https://arxiv.org/abs/1908.07442 TabNet: Attentive Interpretable Tabular Learning We propose a novel high-performance and interpretable canonical deep tabular data learning architecture, TabNet. TabNet uses sequential attention to choose which features to reason from at each decision step, enabling interpretability and more efficient le arxiv.org Abstract Tabular data(정형데이터)에 적용이 가능하고 성능이 우수하며 동..
맨날 Python만 하다보니 심심해서 Ruby로 푸는데 검색 해보면 정보가 많이 없었어서, 그냥 백준 하면서 필요했던 것들 개인적으로 정리. 생각날 때 마다 추가 예정. 컴파일 사이트https://www.mycompiler.io/ko/new/ruby 새 Ruby 프로그램 만들기 - 마이컴파일러 - myCompiler실행 코드 코드 저장 기존 코드를 유지하시겠습니까? 에디터에 코드가 있는 동안 언어를 전환하려고 합니다. 이를 유지하려면 “기존 코드 유지”를 선택합니다. 예제로 바꾸려면 “예제로 바www.mycompiler.io입력#int형a=gets.chomp.to_i#str형a=gets.chomp.to_s#여러개 입력 받기# ex.) 1 2 3 4 5a = gets.chomp.split.map(&:to_..
Folium은 Leaflet.js를 기반으로 만들어져 지도를 유연하게 시각화 할 수 있게 함. 라이브러리 설치 !pip install folium 서울 표시 import folium seoul_latitude = 37.5665 seoul_longitude = 126.9780 seoul_map = folium.Map(location=[seoul_latitude, seoul_longitude], zoom_start=12) seoul_map folium.Marker를 이용한 위치 표시 import pandas as pd df = pd.read_excel('./서울지역대학교위치.xlsx', engine='openpyxl', index_col=0) df.head() seoul_map = folium.Map(loc..
https://www.acmicpc.net/problem/5349 5349번: Duplicate SSN The U.S. Social Security Administration has made a terrible mistake. When assigning new Social Security numbers (SSN) to U.S. citizens they accidently assigned some duplicate numbers. Fortunately, they caught this mistake early and have a list all the poss www.acmicpc.net 문제 The U.S. Social Security Administration has made a terrible mist..