본문 바로가기

Git 명령어 정리 git init : 현재 디렉토리를 Git이 관리하는 프로젝트 디렉토리(=working directory)로 설정하고 그 안에 레포지토리(.git 디렉토리) 생성 git config user.name 'codeit' : 현재 사용자의 아이디를 'codeit'으로 설정(커밋할 때 필요한 정보) git config user.email 'teacher@codeit.kr' : 현재 사용자의 이메일 주소를 'teacher@codeit.kr'로 설정(커밋할 때 필요한 정보) git add [파일 이름] : 수정사항이 있는 특정 파일을 staging area에 올리기 git add [디렉토리명] : 해당 디렉토리 내에서 수정사항이 있는 모든 파일들을 staging area에 올리기 git add . : working..
python pickle 기본 사용법 import pickle my_list = ['a','b','c'] ## Save pickle with open("data.pickle","wb") as fw: pickle.dump(my_list, fw) ## Load pickle with open("data.pickle","rb") as fr: data = pickle.load(fr) print(data) #['a', 'b', 'c']
VS CODE (Code-server) Debugging launch.json https://demun.github.io/vscode-tutorial/debug/#launchjson Debug - Visual Studio Code tutorial vscode debugging vscode 에서 디버깅은 핵심기능중 하나입니다. vscode 에는 node.js 런타임에 대한 디버깅 지원기능이 내장되어 있어 JavaScript, TypeScript 및 JavaScript로 변환된 다른 언어를 디버깅 할 수 있 demun.github.io https://goodthings4me.tistory.com/21 VS Code로 Python 코드 디버깅 시 launch.json Visual Studio Code에서 Python 코드를 디버깅 할 때 launch.json을 생성해야 한다. Pytho..
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..