분류 전체보기378 주가 예측에 사용되는 머신러닝 기술 회귀 분석 (Linear Regression) : 주가의 변동을 예측하기 위해 수학적 모델을 사용하여 미래 값을 예측하는 방법입니다. 결정 트리 (Decision Trees) : 주가 예측을 위한 통계적 방법으로, 트리 형태의 분류 모델을 사용하여 미래 값을 예측합니다. 랜덤 포레스트 (Random Forest) : 결정 트리를 여러 개 조합한 앙상블 방법으로, 다수의 결정 트리를 만들어 각 트리의 예측 결과를 종합하여 예측합니다. 신경망 (Neural Networks) : 인공 신경망을 사용하여 입력 데이터를 학습하여 주가의 미래 값을 예측하는 방법입니다. 서포트 벡터 머신 (Support Vector Machine) : 분류 모델로, 주가의 데이터를 분류하여 주가의 미래를 예측합니다. 나이브 베이즈 .. 2023. 2. 19. Spring boot Private field and method Test ReflectionTestUtils를 이용하여 private field or method 를 테스트 할 수 있다. public class Student { private int id; private String getFirstNameAndId(){ return getFirstName() + " " + getId(); } } @SpringBootTest class StudentTest { @Autowired Student student; @BeforeEach void studentBeforeEach(){ student.setFirstName("Eric"); student.setLastName("Roby"); student.setEmailAddress("asdfa@asdf.com"); student.setS.. 2022. 5. 22. Spring boot Throwing Exception test @SpringBootTest class StudentRepositoryTest { @Autowired Student student; @Autowired StudentGrades studentGrades; @MockBean private StudentRepository studentRepository; @Autowired private StudentService studentService; @Autowired private ApplicationContext context; @DisplayName("Throw runtime error") @Test void throwRuntimeError() { Student nullStudent = (Student)context.getBean("Student"); doTh.. 2022. 5. 22. Spring boot @MockBean Example @SpringBootTest class StudentRepositoryTest { @Autowired Student student; @Autowired StudentGrades studentGrades; @MockBean private StudentRepository studentRepository; @Autowired private StudentService studentService; @BeforeEach void beforeEach() { student.setFirstName("Eric"); student.setLastName("King"); student.setEmailAddress("eric.roby@asdf.com"); student.setStudentGrades(studentGrades); .. 2022. 5. 22. Spring boot @MockBean @MockBean - includes Mockito @Mock functionality - also adds mock bean to if existing bean is there, the mock bean will replace it - thus making the mock bean available for injection with @Autowired Using @Mock @SpringBootTest class StudentRepositoryTest { @Mock private StudentRepository studentRepository; @InjectMocks private StudentService studentService; } Using @MockBean @SpringBootTest clas.. 2022. 5. 22. Spring boot Mockito Example - @Mock & @InjectMocks @SpringBootTest class StudentRepositoryTest { @Autowired Student student; @Autowired StudentGrades studentGrades; @Mock private StudentRepository studentRepository; @InjectMocks // inject mock dependencies private StudentService studentService; @BeforeEach void beforeEach() { student.setFirstName("Eric"); student.setLastName("King"); student.setEmailAddress("eric.roby@asdf.com"); student.setStud.. 2022. 5. 22. 이전 1 ··· 7 8 9 10 11 12 13 ··· 63 다음