블로그
- Mapped Statements collection already contains value for * 에러 문구 : Mapped Statements collection already contains value for ~ * 원인 1. mapper id 가 틀린 경우. 2. 자세히 끝까지 보니 Caused by: org.springframework.core.NestedIOException: Failed to parse config resource: class
- 모두를 위한 딥러닝 (3) results - multinomial (diff from multivariate) : define 3 logistic regression models each for each class of sigmoid * softmax = (e^yi / sum (e^yi)) - and then apply one hot encoding (argmax : finding max value
- [영진전문대학 컴퓨터정보계열] 자료구조 실습 the value of roof */ public Card getRoof() { return roof; } /** * Set the value of roof * * @param roof new value of roof */ public void setRoof(Card roof) { this.roof = roof; } public vo.......
- [영진전문대학 컴퓨터정보계열] 자료구조 실습 of left * * @return the value of left */ public Card getLeft() { return left; } /** * Set the value of left * * @param left new value of left */ publi.......
- [영진전문대학 컴퓨터정보게열] 안드로이드 실습 package com.example.android.lunarlander; public class Scroll { public Scroll() { super(); } public Scroll ) { _Speed = value; } public int getSpeed() { return _.......
- Javascript : 함수(function) 다시 보기 대부분 자바스크립트에서 함수를 설명할 때 “자바스크립트에서 함수는 first-class object(또는 citizen, value)다”라는 정의는 항상 빠지지 않고 등장......
- China Market and Policy is Focus of New SEMI Microsite semiconductor imports, concerns about dependence on foreign sources, and aspirations to move up the technology value chain, China is making significant and coordinated investment to establish a diverse world-class semiconductor
- CString 문자열 조작 메소드~~~ 퍼온곳: http://blog.search.co.kr/tb.blog/41/380 CString class CString 은 CObject에서 상속을 받지않고 Simple Value CString은 TCHAR 데이터 타입을 기초로 하고 있다. n CString Class Members Ø Construction CString - CString의 생성자 ( CString
- [스크랩] Color Picker for Android MultiColorPicker.java - color picker implementation which allows user to pick multiple colors with adjacent hue value UsageColor Picker has been implemented as an extension of a View class.
- [영진전문대학 컴퓨터정보계열] 자바 Thread class Counter{ private int value = 0; public void increment() { value++;} public void decrement() { value --;} public void printCounter() { System.out.println(value);} } class MyThread extends Thread{ Counter