et al/AI Tech 6
-
[react]et al/AI Tech 6 2024. 3. 10. 11:48
react/my-app에서 npm install react-router-dom@6 To address all issues (including breaking changes), run: npm audit fix --force Run `npm audit` for details. 설치하려고 보니, 위와 같은 에러가 떴는데, 이는 패키지 의존성에 있어서 취약해질 수 있다는 경고다. package-lock.json을 살펴보니 이미 설치된 패키기라서 에러가 떴었다. router란 무엇인가? 라우팅의 개념을 간단하게 알아보면 사용자가 요청한 링크주소 즉, URL에 맞는 페이지를 찾아서 보여주는 것 MPA 방식에서는 여러페이지를 분리해두고 페이지간의 이동으로 이 라우트 시스템을 구축을 하지만, 그러나 SPA 방식의 리..
-
[Airflow] airflow.exceptions.AirflowException: The webserver is already running under PID 에러 해결et al/AI Tech 6 2024. 3. 3. 10:39
* airflow webserver 에러 로컬에서 python3 venv 가상환경에서 airflow를 실행시키려고 하는데, airflow webserver --port 8080 아래와 같은 에러가 떴다. AirflowException(f"The {process_name} is already running under PID {pid}.") airflow.exceptions.AirflowException: The webserver is already running under PID 계속 이미 진행중인 PID가 있다는 것인데 kill -9 PID 명령어로 프로세스를 종료시키려고해도 소용이 없어서, 더 찾아보니 아래와 같은 명령어로 해결할 수 있었다. killall -9 airflow ps aux |grep 명..
-
-
[week11-12] 네부캠 ai tech 11주차, 12주차 회고et al/AI Tech 6 2024. 1. 29. 10:54
2024.01.26. 금요일 네이버 부스트코스 ai tech 6기에 참여하고 12주가 흘렀다. 11주차 작성을 깜빡해서 12주차와 같이 작성한다. 주차별 학습 내용 목차. 더보기 1주차 : 파이썬 기초 문법, 객체 지향 프로그래밍, 넘파이, 판다스, 기초 통계(MLE, 베이즈통계), 기초 선형대수학, AI기초(경사하강법, CNN, RNN) 2주차 : pytorch 3주차 : DL basic(~transformer, Genertive models) 4주차 : 기본 모델들(AlexNet ~EfficientNet, Semantic Segmentation, Object Detection ) 5주차 : cnn visualization ~ 3D 6주차 : 분류대회 7주차 : 분류대회 8주차 : ai 서비스 개발 기..
-
Annotation Tool - LABELMEet al/AI Tech 6 2024. 1. 23. 21:53
annotation tool을 사용해서 데이터를 만져보려고 한다. 팀원들과 아래 세 가지 tool중에 하나씩 tool을 사용해보고 편리한 걸 찾아보자고 했다. 나는 그 중에 LABELME를 써보기로 했다. LABELME CVAT Supervisely * LABELME 설치법 sudo apt-get install labelme * 단축키 사각형의 bounding box를 만드려면 ctrl + r 폴라곤 bbox는 ctrl + n 결론 : 그닥 ux나 사용성, 협업에 있어서 좋지 않은 것 같다.
-
streamlit으로 배포 하기et al/AI Tech 6 2024. 1. 13. 03:16
https://yeomss.tistory.com/301 [Streamlit] 설치 및 시작하기 + 배포 개요 공식 사이트 https://streamlit.io/ Streamlit • The fastest way to build and share data apps Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful web apps in minutes. streamlit.io streamlit 공 yeomss.tistory.com 위 블로그를 보고 웹 배포 했다. 배포 시 유의사항을 몇 가지 기록해둔다. 0. streamlit 설치 pip3 install streamlit s..