프로그래밍/기계학습
-
RuntimeError: CUDA error: no kernel image is available for execution on the device프로그래밍/기계학습 2022. 9. 11. 19:28
RTX3090로 교체하고 pytorch 설치 후 아래와 같은 에러가 발생하였다. $ python3 Python 3.8.10 (default, Jun 22 2022, 20:18:18) [GCC 9.4.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import torch >>> torch.rand(10).to("cuda") /home/.local/lib/python3.8/site-packages/torch/cuda/__init__.py:146: UserWarning: NVIDIA GeForce RTX 3090 with CUDA capability sm_86 is not compatible with t..
-
MLP에서 적절한 hidden unit 개수 산정하기프로그래밍/기계학습 2021. 1. 25. 20:23
sklearn MLP 알고리즘에서 적절한 hidden unit 개수 산정하기 skearn에서 MLP classifier나 regressor를 사용할때 hiddenunit 개수를 몇 개로 시작해야 해야하는지에 대해서 좋은 대답이 있어서 기록해둔다. model_mlp = MLPClassifier(solver='lbfgs', alpha=1e-5, hidden_layer_sizes=(hiddenunit, 5), random_state=1) If the NN is a regressor, then the output layer has a single node. If the NN is a classifier, then it also has a single node unless softmax is used in whi..
-
pandas : TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'Index'프로그래밍/기계학습 2020. 10. 14. 21:47
pandas 에러 처리 TypeError: Only valid with DatetimeIndex, TimedeltaIndex or PeriodIndex, but got an instance of 'Index' 기계학습 실험을 하기 위해 그냥 평상시처럼 csv 파일을 아래와 같이 읽어왔다. rawdata = pd.read_csv("/data/training.csv", parse_dates =["date"], index_col ="date", sep='\t', encoding='utf-8') ... ds['vacancy'].resample(rule='M').mean().plot('bar') 필드별 통계를 보기위해 resample을 했는데 아래와 같은 에러가 발생하는 것이다?! pandas : TypeErro..