본문 바로가기

Develop

(60)
jupyter에 가상환경, kernel 등록 기본적으로 작동하는 jupyter kernels 의 디렉토리를 찾아봐야 한다. /usr/local/share/jupyter/kernels /usr/share/jupyter/kernels /home/xxxxx/.local/share/jupyter/kernels 그다음 표시될 이름의 디렉토리를 만들고 기본 python3 폴더의 내용을 복사한다. (kernel.json logo-32x32.png logo-64x64.png logo-svg.svg) 그 다음 kernel.json 파일의 파이썬 실행 파일의 위치를 만들어 놓은 가상환경의 python 파일 경로를 입력해 준다. { "argv": [ "python", "-m", "ipykernel_launcher", "-f", "{connection_file}" ],..
Document Understanding 그리고 Information Extraction의 Approach, Multi-Modal Embedding https://blog.dramancompany.com/2022/03/document-understanding-information-extraction-multi-modal-embedding-layoutlm-docformer-vibertgrid/ 안녕하세요 드라마앤컴퍼니 빅데이터 센터의 AI Lab에서 일하고 있는 강민석입니다. 빅데이터 센터의 간략한 소개부터 하면 약 3.5억 장의 명함과 관계 데이터, 채용 정보를 활용해 비즈니스 도메인에서 더 높은 차원의 가치를 창출하기 위한 관련 연구와 관리 활동을 담당하는 조직입니다. 빅데이터 센터의 AI Lab은 Recommendation System, Ranking Model, Graph Neural Network, Natural Language Process..
AI 연구 개발을 위한 Docker 환경 구축 https://gzupark.dev/blog/A-guide-to-make-the-reproducible-environment-using-the-Docker-for-deep-learning-researcher/ 딥러닝 연구자를 위한 Docker를 사용하여 재구현 가능한 환경 만들기 A guide to make the reproducible environment using the Docker for deep learning researcher gzupark.dev 딥러닝 연구가 활발해지면서 SOTA(State of the art)를 갱신하는 새로운 네트워크 구조 혹은 획기적인 아이디어(예를 든다면 GAN)를 제안하고 실험 결과를 비교하는 것으로 논문을 평가하였습니다. 하루가 멀다하고 서로 더 좋은 결과를 제..
유용한 인공지능 블로그 링크 모음 https://deep-learning-study.tistory.com/ 딥러닝 공부방 까먹으면 다시 보려고 정리하는 블로그 deep-learning-study.tistory.com https://jiho-ml.com/weekly-nlp-1/ Week 1 - 컴퓨터에게 언어는 어떤 의미일까? 우리는 언어라는 것을 어떻게 인식하고 있을까요? 여러분에게 언어는 무엇인가요? jiho-ml.com https://seunghan96.github.io/ AAA (All About AI) Machine Learning, Deep Learning, Data Science, Data Engineering, Statistics.. seunghan96.github.io https://woosikyang.github.io/p..
jupyter magic command list https://sosomemo.tistory.com/60 Jupyter Notebook 자주 사용하는 매직 커맨드 (%커맨드) Jupyter Notebook 자주 사용하는 Magic Command 정리 Ipython (Jupyter Notebook) 에는 마법같은 기능을 제공해주는 Magic Command 가 내장되어 있습니다. 당장 Cell 에 %lsmagic 이라고 입력하면 다음과 같은 다.. sosomemo.tistory.com Ipython (Jupyter Notebook) 에는 마법같은 기능을 제공해주는 Magic Command 가 내장되어 있습니다. 당장 Cell 에 %lsmagic 이라고 입력하면 다음과 같은 다양한 Magic Command 목록이 나옵니다. %lsmagic Available..
multi table ocr https://pyimagesearch.com/2022/02/28/multi-column-table-ocr/ Multi-Column Table OCR by Adrian Rosebrock on February 28, 2022 Click here to download the source code to this post In this tutorial, you will: Discover a technique for associating rows and columns together Learn how to detect tables of text/data in an image Extract the detected table from an image OCR the text in the table Apply hiera..
PIP install -e https://suhwan.dev/2018/10/30/deep-dive-into-pip-2/ 지난 포스트에서는 pip의 기본에 대해서 알아보았다. 주로 requirements.txt에 대한 이야기를 했었는데, 우리가 막힌 부분은 pip install 의 -e 옵션에 대한 부분이었다. 이번 포스트에서는 지난 포스트에 이어서 pip install -e . 가 어떤 의미인지 알아볼 것이다. 그렇게 하기 위해서 우리는 setuptools에 대해서 알아야 한다. setuptools: Preview Basic setuptools 공식 다큐멘테이션에 따르면, setuptools는 파이썬의 distutils 이라는 라이브러리를 기반으로 개발자들이 자신들의 파이썬 패키지를 쉽게 배포할 수 있도록 도와주는 파이썬 라이브러..
GNN 관련 링크 https://data-newbie.tistory.com/706 GNN- 1탄 Graph 기본 개념 알아보기 2021.03.13 - [관심있는 주제] - GNN- 1탄 Graph 기본 개념 알아보기 2021.03.13 - [관심있는 주제] - GNN - 2탄 GNN 기본 개념 알아보기 그래프 신경망 (GNN)은 최근 그래프 구조 데이터를 분석하는 능력으로 인.. data-newbie.tistory.com https://data-newbie.tistory.com/707?category=884325 GNN - 2탄 GNN 기본 개념 알아보기 2021.03.13 - [관심있는 주제] - GNN- 1탄 Graph 기본 개념 알아보기 2021.03.13 - [관심있는 주제] - GNN - 2탄 GNN 기본 개념 ..