본문 바로가기

Computer55

[이수안컴퓨터연구소] 순환 신경망 Recurrent Neural Network https://www.youtube.com/watch?v=hGuUFVZ_tSs&list=PL7ZVZgsnLwEEoHQAElEPg7l7T6nt25I3N&index=8 https://colab.research.google.com/drive/1PELxaO_9Pzov6svb0LlVLtCkNlTb_dFi?usp=sharing _8 순환 신경망(Recurrent Neural Network).ipynb Colaboratory notebook colab.research.google.com 순환 신경망 (Recurrent Neural Network, RNN) 순서가 있는 데이터를 입력으로 받음 변화하는 입력에 대한 출력을 얻음 시계열(날씨, 주가 등), 자연어와 같이 시간의 흐름에 따라 변화하고, 그 변화가 의미를 갖는.. 2022. 1. 10.
[이수안컴퓨터연구소] 임베딩 Embedding https://www.youtube.com/watch?v=hR8Rvp-YNGg&list=PL7ZVZgsnLwEEoHQAElEPg7l7T6nt25I3N&index=7 https://colab.research.google.com/drive/1mBJgcpLrcyJeytlgarr2Gftff8JROPd8?usp=sharing _7 임베딩(Embedding).ipynb Colaboratory notebook colab.research.google.com 임베딩(Embedding) 워드 임베딩은 단어를 컴퓨터가 이해하고, 효율적으로 처리할 수 있도록 단어를 벡터화하는 기술 워드 임베딩은 단어의 의미를 잘 표현해야만 하며, 현재까지도 많은 표현 방법이 연구 워드 임베딩을 거쳐 잘 표현된 단어 벡터들은 계산이 가능하며,.. 2022. 1. 8.
[이수안컴퓨터연구소] 토픽 모델링 Topic Modeling https://www.youtube.com/watch?v=Xt607xhpF6U https://colab.research.google.com/drive/1mIm9o41JOa-oFodaj0j26SjLx6y1xNVD?usp=sharing _6 토픽 모델링(Topic Modeling).ipynb Colaboratory notebook colab.research.google.com 토픽 모델링(Topic Modeling) 토픽 모델링은 문서 집합에서 주제를 찾아내기 위한 기술 토픽 모델링은 '특정 주제에 관한 문서에서는 특정 단어가 자주 등장할 것이다'라는 직관을 기반 예를 들어, 주제가 '개'인 문서에서는 개의 품종, 개의 특성을 나타내는 단어가 다른 문서에 비해 많이 등장 주로 사용되는 토픽 모델링 방법은 잠.. 2022. 1. 8.
[seaborn] 예쁜 그래프를 만들 수 있는 커스텀 팔레트 만들기! Custom Color Palettes for Seaborn Plots — Michael Blow (michaeljblow.com) Custom Color Palettes for Seaborn Plots — Michael Blow Being in data science, I’ve always been drawn to creating compelling visuals. It is likely due to being a photographer prior to my data science career. I have gained a profound appreciation for visual storytelling. Creating compelling visuals and communi www.michaeljbl.. 2022. 1. 5.
[python] 가상환경(Ubuntu)에서 matplotlib 한글폰트 사용하기 안녕하세요! 오늘은 Virtual Machine에서 쥬피터 노트북을 돌리는 경우, matplotlib에서 한글 폰트 깨짐이 발생할 때 해결 방법을 알려드리겠습니다 :) 데이터 분석을 하다보면 대용량 데이터, 그리고 어마어마한 양의 연산을 노트북이 감당하기 어려워, 서버를 사용하는 경우가 많이 있습니다. 저는 이전에 웹 어플리케이션을 인터넷에 올리기 위해서 클라우드를 사용한 이후에 서버를 사용하는 것도 처음이고, 또 서버에서 쥬피터노트북을 돌리는 건 처음이라 더욱 헤맸는데, 이 게시물을 읽으시는 분들은 바로 문제를 해결하실 수 있었으면 좋겠습니다 :) 한글 폰트를 설정하지 않은 경우, 파이썬은 한글 대신 네모로 대체하게 되는데요, 이후 다시 한글 폰트를 설정한 이후에도 다음과 같은 오류를 보게 되는 경우도.. 2021. 11. 4.
[python] groupby 이중 사용시 컬럼의 모든 변수값 포함하는 법 pandas의 groupby 함수는 데이터프레임의 특정 변수를 기준으로 묶은 데이터프레임을 반환해줍니다. pandas.DataFrame.groupby — pandas 1.3.4 documentation (pydata.org) pandas.DataFrame.groupby — pandas 1.3.4 documentation Used to determine the groups for the groupby. If by is a function, it’s called on each value of the object’s index. If a dict or Series is passed, the Series or dict VALUES will be used to determine the groups (the Ser.. 2021. 10. 28.