Notice
Recent Posts
Recent Comments
Tags
- strayrobots
- regression model
- Data-driven
- Time Series Forecasting
- confidence score
- multi loss
- 시계열 클러스터링
- 시계열
- stray scanner
- time series clustering
- time series data
- time series
- tslearn
- indoor positioning
- indoor navigation
- data augmentation
- cudnn
- pytorch
- multimodal learning
- LiDAR
- GitHub
- physics-based
- AR Kit
- 실내측위
- model reliability
- odometry
- LSTM
- model calibration
- keras
- GRU
- Today
- Total
목록Programming/Python (2)
EZI 기술 블로그 JU
view, reshape, transpose, permute함수
https://sanghyu.tistory.com/3 [PyTorch] view, reshape, transpose, permute함수의 차이와 contiguous의 의미 (본 포스팅은 이 글 번역 + 마지막에 제 생각을 덧붙였습니다.) PyTorch는 tensor의 type(형)변환을 위한 다양한 방법들을 제공하고 있다. 몇몇의 방법들은 초심자들에게 헷갈릴 수 있다. 그래서 view() v sanghyu.tistory.com
Programming/Python
2023. 3. 16. 18:05
유용한 코드 스크랩
learning rate active하게 조정 (https://lcyking.tistory.com/78) from tensorflow.keras.callbacks import ReduceLROnPlateau, EarlyStopping # 3번 반복내에 validation loss가 줄어들지 않으면 learning rate를 0.2 감소 lr_cb = ReduceLROnPlateau(monitor='val_loss', factor=0.2, patience=3, mode='min', verbose=1) # 5번 반복내에 validation loss가 줄어들지 않으면 강제종료 st_cb = EarlyStopping(monitor='val_loss', patience=5, mode='min', verbose=1..
Programming/Python
2023. 3. 15. 18:18