Tensorflow 2.0 Keras Custom Generator by 홍정모 about Keras
디지털 시대를 열다, 클로드 섀넌 - [야만인] 인공지능 탄생의 뒷이야기 by 허령
- 섀넌은 그 아이디어로 < A Symbolic Analysis of Relay and Switching Circuits >라는 논문을 씁니다
- 전쟁이 끝나고 1948년 클로드 섀넌은 < 통신의 수학적 이론 Mathematical Theory of Communication >라는 논문을 발표하여 정보이론의 토대를 마련합니다
- 32세의 나이에 정보이론 Information Theory을 완성한 클로드 섀넌은 1956년에 MIT 교수로 부임합니다
sql rollback commit 연산과 작업 단위 by 조경완 about SQL
- ID가 1000인 학생이 2006년에 들은 수업에 대한 정보는 다음과 같이 업데이트 되었을 겁니다
- 2006년에 들은 수업에 대해서 A+로 업데이트 하라는 작업이 시작되었고
- 쿼리가 수행되기 이전의 상태로 돌아갔다는 것을 의미합니다
Pybind11 numpy return by 홍정모
PyBind11 Class by 홍정모
#8 : Controller by 맹인영
- @Controller public class HomeController { private static final Logger logger = LoggerFactory
- GET) public ModelAndView home() { ModelAndView model = new ModelAndView(); Date date = new Date(); DateFormat dateFormat = DateFormat
- @Controller @RequestMapping("/home") public class HomeController { private static final Logger logger = LoggerFactory
Amazon EventBridge 스키마 레지스트리 정식 출시 by AWS Korea
- FraudCheck 팀은 AWS Command Line Interface(CLI)에서 put-code-binding 명령을 사용하여 코드 바인딩을 생성(아직 생성되지 않은 경우)한 다음 코드 바인딩을 다운로드하여 이 이벤트를 처리할 수 있습니다
- FraudCheck 팀에서 사용할 수 있는 또 다른 옵션은 검색된 스키마의 Content 를 복사하고 이스케이프되지 않은 JSON 문자열 뒤에 붙여 넣는 방법으로 AWS 계정에 새 사용자 지정 스키마를 생성하는 것입니다
- 스키마 레지스트리 리소스 정책을 사용하면 이벤트 기반 아키텍처에서 정보를 공유하는 여러 팀의 작업을 조정하기가 훨씬 쉬워집니다
AWS DeepRacer 가상 FORMULA 1 ProAm 특별 경기에 참여하세요! by AWS Korea
- AWS DeepRacer 리그는 재미 있게 강화 학습에 대해 배우면서 우승 상품을 거머쥘 수 있는 경주에 참여할 기회를 제공합니다
- 지난 몇 시즌 동안 AWS는 Formula 1 팀과 협력하여 기계 학습을 사용하여 경주차를 더욱 빠르게 만들고 연료 효율을 높이는 방법을 연구했습니다(자세한 내용은 The Fastest Cars Deserve the Fastest Cloud 및 Formula 1 Works with AWS to Develop Next Generation Race Car 참조)
- DeepRacer 콘솔을 사용한 훈련과 평가는 이벤트 기간 동안 무료(이용 약관 적용)로 사용할 수 있으므로 유용한 신규 기술을 배우면서 재미를 느낄 수 있는 멋진 기회를 놓치지 마시기 바랍니다
[Java] Using Thread by 이민호
- public static void main(String[] args) throws InterruptedException { CalculatorRunnable runnable = new CalculatorRunnable(1000000000L); Thread t1 = new Thread(runnable); t1
- public static void main(String[] args) throws InterruptedException { CalculatorRunnable runnable = new CalculatorRunnable(1000000000L); Thread t1 = new Thread(runnable); t1
- public static void main(String[] args) throws InterruptedException { CalculatorRunnable runnable = new CalculatorRunnable(1000000000L); Thread t1 = new Thread(runnable); t1
[JPA] 엔티티 설계시 주의사항들 by 한건국 about JPA
- order N: member 1 관계에서 select o from order; 이 결과 100개의 order 결과가 있으면
- order조회 쿼리 1 번에 따른 100번(N)번의 결과 값에 대한 쿼리가 추가로 발생한다
- Member 1 : Order N 인 상황에서 Order 엔티티에서 setMember를 편의 메서드로 만들게 되면 다음과 같다
java Stream의 사용 by 이종립 about Java
- Classes to support functional-style operations on streams of elements
- performance gains from parallelism are best on streams over ArrayList
- and ConcurrentHashMap instances; arrays; int ranges; and long ranges