24 lines
828 B
Markdown
24 lines
828 B
Markdown
# StockPredictor
|
||
|
||
|
||
## Reference
|
||
* Vision Transormers 참고
|
||
* https://github.com/NielsRogge/Transformers-Tutorials/blob/master/VisionTransformer/Fine_tuning_the_Vision_Transformer_on_CIFAR_10_with_the_%F0%9F%A4%97_Trainer.ipynb
|
||
* How to convert datasets from a python dictionary
|
||
* https://huggingface.co/docs/datasets/v1.1.1/loading_datasets.html
|
||
* numpy -> tensor -> PILImage 변환 방법
|
||
* https://qlsenddl-lab.tistory.com/37
|
||
* Image Classification Models
|
||
* https://github.com/weiaicunzai/awesome-image-classification
|
||
|
||
## Troubleshoot
|
||
1. OMP: Error #15: Initializing libiomp5.dylib, but found libiomp5.dylib already initialized.
|
||
```
|
||
import os
|
||
os.environ[‘KMP_DUPLICATE_LIB_OK’]=’True’
|
||
```
|
||
추가하거나 다음 패키지를 설치한다.
|
||
```
|
||
> conda install nomkl
|
||
```
|