def get(self): export_model('R') return {'result': True, 'modelName': 'model.pkl'}
def make_model(): if request.method == 'POST': #모델 재 생성 export_model('R') return render_template('index.html', md_label='모델 재생성 완료')