본문 바로가기

전체 글

(132)
Gurobi license 받는법 1. Gurobi 웹사이트로 들어가서 로그인 https://www.gurobi.com The Leader in Decision Intelligence Technology - Gurobi Optimization Decision Intelligence, Across the Enterprise Data Professionals Operations Researchers Business Leaders Academics Consultants and ISVs Optimization for Data Professionals Data Professionals By combining machine learning and optimization, you can go beyond www.gurobi.com 2. Named-U..
Things to do in Ithaca 이타카에서 할거 추천목록 TODO Do glamping in Firelight Camps : (highly recommended). https://goo.gl/maps/ojLqP8ER4wDYCfgT8 Inns of Aurora: (people say dine in is also good) https://goo.gl/maps/EsojvvX1WLafWMfK6 Lindseth Climbing Center: indoor climbing https://goo.gl/maps/EbPUeGr4T2RSxdik7 Indian Creek Farm: apple/crop picking https://goo.gl/maps/VNYDQJw4xGLTTsGy9 Pickleball Mania https://goo.gl/maps/zDq5R1vGUDyma7uH9 R..
커버 레터 쓰는법 (How to write cover letter) 커버 레터를 쓰는 이유 Job application, research position, fellowship, academic job 등등 지원할때 종종 요구된다. 커버레터는 Resume/CV 혹은 SOP와 다른데 나의 개인적인 이야기를 더 할 수 있는 기회이다. 특히 미국 문화에서 중요한데 정량적인 것, 스펙의 나열을 넘어서서 나라는 사람이 어떤지 보여줄 수 있는 수단으로 쓸 수 있다. 템플릿 [Paragraph 1] 내가 누구인지 (background/qualification), 왜 내가 이 자리에 관심 있는지, how I learn how the position [Paragraph 2, 3] Resume 에서 더 강조하고 싶은 셀링 포인트 (예를 들자면 skill, experience related ..
Operations Research Cheat Sheet Technical Interview This is a cheat sheet in operations research for preparing technical interviews. We will skim through the types of Mathematical Program that is commonly used and the solution techniques for the programing. Types of Mathematical Program¶ Objective function Constraints Variable Solution approach Linear Program Linear Linear real Simplex method Mixed Integer Linear Program Linear Linear integer & r..
Kepler.gl 이용해서 지도상에 h3 index 시각화하기 우버에서 개발된 Keplergl 이라는 공간 정보 시각화 라이브러리를 이용한다. 우리는 파이썬과 파이썬 라이브러리 Pandas 와 GeoPandas 를 활용해 시각화할 것이다. 우선 라이브러리를 다운받자. 주의사항: pip install keplergl==0.3.0 를 사용한다. 0.3.2를 사용했을때는 렌더링 오류가 계속 해결되지 않고 지도가 흰색으로 나오는 현상이 해결되지 않았다 . import pandas as pd import keplergl import geopandas as gpd 사용한 데이터 형태는 다음과 같다. 파이썬 데이터 프레임 형태로 데이터를 구성했고 컬럼명이 hex_id 또는 hexagon_id 로 되어있어야 Kepler 라이브러리가 자동으로 인지해서 시각화해준다. 예제 데이터를 ..
Game theory 게임이론 기본 용어 정리 Nash equilibrium Common knowledge rationality: 모든 게임 참여자가 보수와 규칙을 정확히 인지하고 있으며, 상대 참여자들이 그들 자신에게 최적의 선택을 할 것이라는 가정하에 자신에게 최선의 선택을 하는 것. 이때 경기자들이 자신들의 전략을 고수하고, 아무도 그 전략을 바꾸지 않으면 이것은 Nash equillibrium (내쉬 균형) 상태이다. 유명한 죄수의 딜레마 예시에서 볼 수 있듯이 내쉬 균형이 반드시 Pareto optimality (파레토 최적) 인 것은 아니다. Dominant strategy (우월전략): 다른 참가자가 어떤 선택을 하든 나에게 최선의 선택이 되는 하나의 전략. 우월 전략이 존재하지 않는 경우에도 내쉬 균형은 여러개 존재 할 수 있다. Mi..
아마존 박사과정 여름방학 리서치 인턴쉽 두번째 인터뷰 후기 보호되어 있는 글입니다.
nonlinear convex optimization을 푸는 CVXOPT 솔버 https://cvxopt.org/userguide/solvers.html Nonlinear Convex Optimization — CVXOPT User's Guide F(x), with x a dense real matrix of size (, 1), returns a tuple (f, Df). f is a dense real matrix of size (, 1), with f[k] equal to . (If is zero, f can also be returned as a number.) Df is a dense or sparse real matrix of size ( + 1, ) with Df[k,:] equal cvxopt.org nonlinear convex optimization 문제를 위한 ..