Imagination is more important than knowledge (지식보다 상상)

Sources

Posts

97 posts

가장 쉬운 superlearner [ML-Ensemble (mlens) library]

가장 쉬운 superlearner 기존에 알려진 9개 학습모델을 모두 활용한다. 사용하는 방법은 각각의 방법과 완전하게 동일하게 만들어 버릴 수 있다.결국, 하나의 학습모델을 활용하는 것과 완전히 동일해진다. ML-Ensemble (mlens) library provides a convenient implementation that allows the superlearner to be fit and used in just a few lines of code. It is specifically designed to work with scikit-learn models.ML-Ensemble combines a Scikit-learn high-level API with a low-level computatio

가장 쉬운 dynamic classifier selection algorithms

가장 쉬운 dynamic classifier selection algorithms 기존에 알려진 학습모델을 모두 활용한다. 사용하는 방법은 각각의 방법과 완전하게 동일하게 만들어 버릴 수 있다.결국, 하나의 학습모델을 활용하는 것과 완전히 동일해진다. 가장 쉬운 회귀:http://incredible.egloos.com/7481904가장 쉬운 LightGBM 회귀, 분류:http://incredible.egloos.com/7479081 Dynamic classifier selection algorithms choose one from among many models to make a prediction for each new example.How to develop and evaluate dynamic

파일에 데이터 적기, 읽기 [파이썬3][python3]

파이썬 언어로 파일에 데이터 적기,파이썬 언어로 파일 속의 자료 읽어 들이기 이 두 가지 방법은 아주 중요한 것이다. 일반적으로 파이썬으로 어떠한 계산을 하던지, 대부분의 경우, 결국에는 위에서 나열한 두 가지 일들과 마주하게 된다. 파일에 데이터를 적는 방법, 예제일차원 데이터, 배열 X[]을적는 방법, 스트링으로 변환하여 적는다.x_decoded[] 데이터를 스트링으로 변환하여 적는다. ifile=1for i in range(nsamples1): fname=str(ifile).zfill(5)+'_fin' ; fname=fname.strip() afile=open(fname,"w") afile.write('# 9 1 200\n') for j inrange(original_dim)

QR4Office

QR4Office 워드(2019) 프로그램에서 추가기능 가져오기로 몇 가지 프로그램을 설치할 수 있다. 아래 그림에서처럼, scriben 영어 문법 테스트 프로그램을 사용할 수 있다.아울러, QR4Office 를 이용하면 QR 코드를 만들 수 있다. 가장 쉬운 ppt 단축키: 를 활용한 타이머:http://incredible.egloos.com/4075317

anaconda, 파이썬 설치와 딥러닝 준비 [keras --> tf.keras]

아나콘다? 아나콘다는 패키지 관리와 디플로이를 단순케 할 목적으로 과학 계산을 위해 파이썬과 R 프로그래밍 언어의 자유-오픈 소스 배포판이다. 패키지 버전들은 패키지 관리 시스템 conda를 통해 관리된다. 아나콘다 배포판은 1300만 명 이상의 사용자들이 사용하며 윈도우, 리눅스, macOS에 적합한 1,400개 이상의 유명 데이터 과학 패키지가 포함되어 있다. anaconda, 파이썬 설치와 딥러닝 준비 [keras --> tf.keras] 아나콘다에 텐서플로를 설치하면 곧바로 딥러닝을 시작할 수 있다. Tensorflow 2.0으로 새롭게 시작하는 tensorflow keras --> tf.keras 파이썬 실행환경 구축, 딥러닝 환경구축:anaconda 설치 [32bi