소개: pip 라이브러리로 cookiecutter라는게 있다.(cookiecutter에 대한 내용 https://github.com/audreyr/cookiecutter) django와 vue로 초기 설정을 할 때, 해당 라이브러리(https://github.com/vchaptsev/cookiecutter-django-vue)를 이용하여 설정을 해보려고 한다.(해당 라이브러리는 cookiecutter를 base로하여 django와 vue를 사용할 수 있도록 설정하는 라이브러리다.) 순서cookiecutter를 설치한다. (pip install cookiecutter)cookiecutter url을 이용하여 원하는 라이브러리를 불러온다.ex) cookiecutter gh:vchaptsev/cookiecut..
boto3을 이용한 client를 통한 invoke 메소드 호출 시, 비동기냐 동기냐에 대한 정의는 해당 파라미터를 통해서 정해진다. InvocationType 종류는, event, requestResponse, dryRun이 있으며, event를 이용하는 경우, 비동기로 처리된다. 간단히 메모하면- RequestResponse: API용- Event: 비동기 호출용- DryRun: 인증용lan.invoke(FunctionName='{}-{}-{}'.format(service, stage, func), InvocationType='Event', Payload=json.dumps(payload)) 참조: http://boto3.readthedocs.io/en/latest/reference/services/..
참조: https://blog.naver.com/parkjy76/30167615254 Python에서는 static(정적) 메소드를 데코레이터로 정의 할 수 있는데 @staticmethod, @classmethod를 사용한다. 이 둘의 차이점은 classmethod의 경우는 첫번째 인수가 클래스를 지정하는데 반해 staticmethod는 이런 룰이 없다. 이로 인해 상속받는 경우 동작이 달라진다. class foo(object): name = 'foo' @staticmethod def get_name_static(): print foo.name @classmethod def get_name_class(cls): print cls.name 실행 결과는 아래와 같다.>>> foo.get_name_static..
참조: http://hamait.tistory.com/827 Python에서는 Protected와 Private에 대한 개념이 없다. 그래서 __변수명(private), _변수명(protected)와 같은 방식으로 개발자끼리 약속하여 변수명을 지정한다. 그러다보니 변수값 설정할 때, 특정 범위를 넘어가면 에러가 발생하도록 처리할 수 없을 것이다. 이를 구현하기 위한 것이 @Property 이다. 아래와 같은 방식으로 구현하여 특정 변수값에 제한을 둔다.class Celsius: def __init__(self): pass def to_fahrenheit(self): return (self._temperature * 1.8) + 32 @property def temperature(self): print("..
첨자의 위치가 위: 참조 데이터 인덱스(트레이닝 데이터) 첨자의 위치가 아래: 참조할 데이터의 개수(키, 몸무게, 성별...) Min * Max 정규화 : (value - min(value)) / (max(value) - min(value)): 데이터값을 비교했을 경우, 차이가 많이 나는 경우가 발생한다. 그런 경우 해당 정규화를 사용하면 0 ~ 1사이의 실수값들을 얻을 수 있다. 주식 가격을 예측 해보자. 아래는 소스 코드 샘플해당 url의 데이터를 사용했음.데이터 사용: https://raw.githubusercontent.com/hunkim/DeepLearningZeroToAll/master/data-02-stock_daily.csvimport tensorflow as tf import numpy ..
- Maven
- Java
- TDD
- mysql
- serverless
- AWS
- Docker
- mybatis
- tensorflow
- 중앙정보처리학원
- executor
- memory
- javascript
- 머신러닝
- 파이썬
- BigData
- Error
- web
- ML
- API
- 모두의딥러닝
- Configuration
- Gradle
- AI
- spark
- spring
- 점프투파이썬
- 텐서플로우
- NIO
- python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |