[React] 8 vulnerabilities (2 moderate, 6 high)
·
Develop/JavaScript
문제npm install 시 다음과 같은 문구 출력패키지 설치시 라이브러리 충돌로 인한 것으로 판단.검색하였을 때 react-scripts 라이브러리에서 발생.8 vulnerabilities (2 moderate, 6 high) To address all issues (including breaking changes), run:     npm audit fix --forceRun n±audit for details.  [관련 이슈] Npx create-react-app: 8 vulnerabilities (2 moderate, 6 high) · Issue #13607 · facebook/create-react-app Npx create-react-app: 8 vulnerabilities (2 mod..
[React] WSL에 Dockerfile로 React 환경 구축
·
Develop/JavaScript
React 프로젝트 생성npx create-react-app frontendDockerfile로 Image BuildFROM node:18-alpine# 유저 설정USER root# 작업 디렉토리를 /usr/src/app으로 설정WORKDIR /usr/src/app/frontend# 호스트의 package.json, package-lock.json 파일을 작업 디렉토리에 복사COPY package*.json .# 필요 패키지 설치RUN npm install# 컨테이너 외부로 노출할 포트 설정 (React dev server 기본값: 3000)EXPOSE 3000# 컨테이너 실행 시 npm start 명령 수행CMD ["npm", "start"]docker build -t react-image .Conta..
[DiPE-Linear] Disentangled Interpretable Representation for Efficient Long-term Time Series Forecasting
·
Paper Review
[Paper] [Github] 이 논문은 장기 시계열 예측(Long-term Time Series Forecasting, LTSF)을 위한 효율적이고 해석 가능한 DiPE-Linear(Disentangled interpretable-Parameter-Efficient Linear network)를 제안합니다. Introduction딥러닝 모델들은 높은 정확도를 제공하지만, 블랙박스(Black Box) 특성으로 인해 사용자 신뢰를 떨어뜨립니다.또한, 기존의 시계열 예측 방법(또는 기법)들은 다음과 같은 한계점을 가지고 있습니다.RNN : 병렬화가 어렵습니다.CNN : 높은 계산 비용을 요구합니다.Transformer : 여러 개선에도 불구하고 많은 수의 파라미터를 가지, 긴 입력 시퀀스에 쉽게 과적합됩니다..
[LTSF-Linear] / [DLinear, NLinear] Are Transformers Effective for Time Series Forecasting ?
·
Paper Review
[paper] [paper2] [Github] Transformer 기반 시계열 예측 모델의 문제점LTSF(Long-term Time Series Forecasting) 분야에서 Transformer 구조를 적용한 모델이 큰 주목을 받으면서 해당 논문 저자들은 다음과 같은 가설들로 "Transformer는 정말 시계열 예측 문제에서 효과적일까?" 하는 근본적인 의문을 가졌습니다. 그리고 여러 실험을 통해 Transformer 기반 모델들의 성능이 다소 과장되었다고 판단했습니다.1. 순서 정보의 상실LTSF에서 시간의 순서 정보는 예측에 있어 매우 중요합니다. Transformer는 이 순서 정보를 보존하기 위해 포지셔널 인코딩(Position Encoding) 같은 기법이 있지만, Self-Attenti..
[Python] win32api Error - ImportError: DLL load failed while importing win32api: 지정된 모듈을 찾을 수 없습니다.
·
Develop/Python
https://github.com/mhammond/pywin32/issues/1431 ImportError: DLL load failed while importing win32event: The specified module could not be found. · Issue #1431 · mhammond/pywI just installed Python 3.8.0 32-bit, then installed a few modules including pywin32 using pip. When I try "import win32event", I get the following error: Python 3.8.0 (tags/v3.8.0:fa919fd, Oct 14 ...github.com1. 이전 버전 설치pip..
[Python] VSCode Error - Sorry, something went wrong activating IntelliCode support for Python. Please check the "Python" and "VS IntelliCode" output windows for details.
·
Develop/Python
Sorry, something went wrong activating IntelliCode support for Python · Issue #50 · microsoft/pylance-release Sorry, something went wrong activating IntelliCode support for Python · Issue #50 · microsoft/pylance-releaseGetting the following error after installing pylance Sorry, something went wrong activating IntelliCode support for Python. Please check the "Python" and "VS IntelliCode" output w..
[Ubuntu] E: Unable to locate package
·
Develop/Linux
1. apt updatesudo apt-get update2. 패키지 명 확인3. 없는 패키지4. ubuntu 버전 확인
[Docker] Container Network 연결
·
Develop/Docker
현재 네트워크 목록docker netwokr ls네트워크 상세 정보docker network inspect bridge네트워크 생성docker network create --driver bridge mynetwork네트워크 연결docker run -it --network mynetwork [IMAGE:TAG]docker network connect mynetwork [CONTAINER]docker attach [CONTAINER]네트워크 연결 끊기docker network disconnect mynetwork [CONTAINER]docker attach [CONTAINER]네트워크 연결 확인docker inspect [NETWORK NAME]docker inspect [CONTAINER] -f "{{js..
욱근욱