Archive
-
scipy.optimize.minimize 를 이용한 최적화 예시(BFGS, SLSQP)Archive/프로젝트 인사이트 2023. 1. 25. 14:14
https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.minimize.html scipy.optimize.minimize — SciPy v1.10.0 Manual [2] Wright M H. 1996. Direct search methods: Once scorned, now respectable, in Numerical Analysis 1995: Proceedings of the 1995 Dundee Biennial Conference in Numerical Analysis (Eds. D F Griffiths and G A Watson). Addison Wesley Longman, Harlow, UK. 191-20 docs.scipy.o..
-
[최적화] Numerical optimization based on the L-BFGS methodArchive/프로젝트 인사이트 2022. 12. 30. 15:01
https://medium.com/towards-data-science/numerical-optimization-based-on-the-l-bfgs-method-f6582135b0ca Numerical optimization based on the L-BFGS method We will inspect the Limited-memory Broyden, Fletcher, Goldfarb, and Shanno (L-BFGS) optimization method using one minimization example for… towardsdatascience.com https://aria42.com/blog/2014/12/understanding-lbfgs Numerical Optimization: Unders..
-
[논문 리뷰/최적화] Model of Price Optimization as a Part of Hotel Revenue Management- Stochastic ApproachArchive/프로젝트 인사이트 2022. 12. 20. 20:44
프로젝트를 하면서 수익을 최대화하는 프로세스를 짜는 것에 대해 고민이 많았다. 사실 엄밀히 말해 학문적인 최적화라기보다는 , 내가 짠 예측 함수에 대해 최대의 값을 뽑는 변수를 찾는 것에 더 가까웠지만, 이 시도는 예측 함수가 정확하지 않았기 때문에 잘 되지 않았다😥 그래서 deterministic 한 시도보다는, stochastic 한 시도로 옮겨 가기로 했고, 그 과정에서 해당 논문을 리뷰하게 되었다. 이 논문 또한 이론보다는 application에 초점을 맞추었다. 사실 굉장히 짧고 내용도 축약 되어 있어서 따라서 구현하는 데에 어려움을 겪었고, 그 어려움은 여전히 진행중이다. 또한 교수님께 여쭤봤을 때, 잘못 설명한 부분도 있는 것 같았다... 하지만 최적화를 실용적으로 풀어낸 논문은 거의 없다시..
-
최적화 linear programmingArchive/프로젝트 인사이트 2022. 12. 13. 14:59
https://datascienceschool.net/02%20mathematics/05.03%20%EC%84%A0%ED%98%95%EA%B3%84%ED%9A%8D%EB%B2%95%20%EB%AC%B8%EC%A0%9C%EC%99%80%20%EC%9D%B4%EC%B0%A8%EA%B3%84%ED%9A%8D%EB%B2%95%20%EB%AC%B8%EC%A0%9C.html 5.3 선형계획법 문제와 이차계획법 문제 — 데이터 사이언스 스쿨 .ipynb .pdf to have style consistency --> datascienceschool.net
-
Response Surface MethodsArchive/프로젝트 인사이트 2022. 12. 5. 16:11
https://medium.com/mlearning-ai/design-of-experiments-doe-with-python-be88f5c013f5 Design of Experiments (DOE) with python An introduction to Design of Experiments (DOE) with python with a simple case study with and without interactions. medium.com https://towardsdatascience.com/response-optimization-with-design-of-experiments-and-python-63f9afb3f26f Response Optimization with Design of Experime..
-
-
GBM - Partial Dependence Plots 관련 정리Archive/프로젝트 인사이트 2022. 9. 30. 18:42
http://uc-r.github.io/gbm_regression Gradient Boosting Machines · UC Business Analytics R Programming Guide ↩ Gradient Boosting Machines Gradient boosted machines (GBMs) are an extremely popular machine learning algorithm that have proven successful across many domains and is one of the leading methods for winning Kaggle competitions. Whereas random forests bu uc-r.github.io 예정...
-
계절 변동을 고려한: 시계열 회귀분석(2)Archive/통계&코딩이것저것 2022. 5. 31. 18:42
https://www.youtube.com/watch?v=5QnR4L3KGz4&list=PLpIPLT0Pf7IqSuMx237SHRdLd5ZA4AQwd&index=7 김성범 교수님 강의를 참고하였음!! Modeling Seasonal Variations Binary Variable Models 계절 변수는 어떻게 표현해? 이진 변수(0 or 1) 로 표현해! 그래프를 그렸을 때 변동이 증가하고 있었기 때문에 y에 ln을 취함.(상수로 바꿔준다) 12월은 굳이 더미로 만들 필요 없음(당연, 다 0이면 되니까) 베타2는 기준인 12월과 비교했을때 얼마나 증가/감소 했느냐에 대한 값. 적합해 봄! time변수는 증가하는 trend임을 알 수 있음. month beta 값들은? 12월에 비해 저만큼 증가하거나 감..