Python

· Python
1. 미니콘다 설치 https://docs.anaconda.com/free/miniconda/ Miniconda — Anaconda documentation These three commands quickly and quietly install the latest 64-bit version of the installer and then clean up after themselves. To install a different version or architecture of Miniconda for Windows, change the name of the .exe installer in the curl comma docs.anaconda.com 각자 환경에 맞는 미니콘다를 설치하면 된다. 설치 시 Just ..
장고로 이미지 업로드 하는 방법을 찾아보면 대부분은 모델에 이미지 필드를 추가하고 폼을 생성하여 사용자에게 사진을 받는 방식으로 진행된다. 혹시나 그 방법이 궁금해서 들어온 방문자가 있을까 해당 방법과 동시에 필자가 이번에 찾아본 필드 추가 없이 업로드를 하는 방법을 정리할 것이다. 이미지 필드로 업로드 def avatar_path(instance, filename): return 'avatar/u/'+instance.user.username+ '/' + randstr(4) + '.' + filename.split('.')[-1] class Profile(models.Model): user = models.OneToOneField(User, on_delete=models.CASCADE) avatar = ..
· Python/Error
tensorflow/keras를 사용하면서 자주 만나는 에러이다. 올바른 방법인지는 모르겠으나 구글검색 결과 다음과 같이 하면 해결되었다. 원래의 코드가 from keras.blahblah import something 이었다면 다음과 같이 변경한다. from tensorflow.keras.blahblah import something 물론 바꿔서 오류가 나는 항목도 있었으나.. 나의 경우에는 오류나는 하나 외에는 다 저렇게 수정하니 해결되었다. 아이디어 출처: https://github.com/keras-team/keras/issues/12379
noodle-dev
'Python' 카테고리의 글 목록