분류 전체보기
-
[neurokit] Biosignal python toolLibrary (python) 2022. 8. 21. 17:10
These day, i analyse biosignal like PPG and ECG. So, i needed to use python package that handles them. There are two famous tools Package - nuerokit - heartpy Neurokit They support many biosignals. I usually use PPG, ECG. PPG This ppg func. docs is broken down into 3 part; Main, Preprocessing and Analysis. Main - ppg_process() - ppg_analyze() - ppg_simulate() - ppg_plot() Preprocessing - ppg_cle..
-
소인수분해 라이브러리 (sympy.ntheory)Library (python) 2022. 4. 7. 15:49
====================== 핵심 소인수분해하는 오픈라이브러리 사용법 from sympy.ntheory import factorint factorint(14719) =============================== 프로젝트하다가 긴 시퀀스 데이터를 이미지화할 일이 생김. 14xxx 되는거 같은데 이거를 이미지화 하려면 WxH로 만들어야 함. 그래서 저 숫자의 소인수들이 궁금한거. 근데 결론적으로 zero-padding 써서 채워서 소인수가 도움되지는 않음 . 어쨋든, 궁금해서 알아봄 옛날에 교육기관 다닐때, 소인수 분해 (prime factorization)하는 거 코드로 raw로 짜보는게 과제?였었는데... 추억이넵 그때 아마 Big O 가 (n) 나온듯 좀 무식한 방법으로 짯던 기..
-
Endnote usage [to manage references]자유 2022. 3. 16. 17:28
Tutorial video: https://www.youtube.com/watch?v=yT8IhCw_U58 - Inserting ref in manual - Deletion of duplication [(select refs), Library> Find duplicates] - Uploading reference Opening the endnote app, Click endnote file - Labeling as a group - Smart group
-
PIllow (PIL : Python Imaging Library)vision 2021. 5. 17. 02:06
i like reading python library documentation. Today is sunday ,so i started finding which documentation i'm gonna read in this week,doing object detection project, i saw some pil functions that handled image in code. In point of handling image, i think there're these libraries ;PIL, torchvision(in torch),OpenCv In this post , I'm gonna introduce PIL ! (it may have prejudice opinions) In near futu..
-
What is "Object detection" ?vision/Object detection 2021. 4. 30. 22:06
I'm in the situation I have to implement paper that is about object detection. That makes me so interesting ...but the problem is ..time is short So i started researching about this area. Summary of what i learned Object detection = Localization + classification In doing this , There're two kind of methods 1. 1-stage method (simultaneously) 2. 2-stage method (classification after getting resiona..
-
과학기술의 탐구 | 연구에 대한 철학 그리고 통찰자유 2021. 4. 26. 08:35
www.youtube.com/watch?v=JvQMoLtoFg8 이 교수님을 개인적으로 모르는 사람이다만 영상을 보고 그 철학관에 대하여 굉장히 존경스러웠다. 찾아보게된 계기는 fashionMNIST DATASET 에 대하여 state of the art 를 찍고있는 (≓가장 좋은 performance 를 내는) 것이 무엇인지 보다가 Fine-tuning DARTS[1] 가 1위를 찍고 있었다(2021.4.26 기준) paper를 보려고하는데 저자에 kaist 가 있어서 오 국내발이 구나하고 나라에 대한 자긍심을 3초간 느끼고 3분중 한국인 사람의 이력을 검색하다보니 위와같은 영상이 뜨게 되어 보게되었다. 그리고 이와 같은 철학을 유지하며 그 꾸준함을 인생에서 지속하고 자하는 생각이 들었다. fundam..
-
[1week] machine learning overall scenario & end to end codeData-Science/ml&dl lecture 2021. 4. 9. 20:22
0. Goal of this lecture 1. Overall scenario of data analysis (ml/dl) 1.1 what is Machine Learning & Deep learning 1.2 kinds of ml supervised learning / unsupervised / reinforcement 1.3 problems in ml (point of Data) not enough data doesn't have enough Representativeness . bad quality data (error ,noisy , outlier) not related features (Feature engineering can solve this problem) (point of Mod..