Skip to content

Instantly share code, notes, and snippets.

View irmscher9's full-sized avatar

irmscher irmscher9

  • Riga
View GitHub Profile
@irmscher9
irmscher9 / fit.py
Created December 26, 2020 14:38 — forked from MaxHalford/fit.py
Keras fit/predict scikit-learn pipeline
import os
from keras import backend as K
from keras import callbacks
from keras import layers
from keras import models
from keras.wrappers.scikit_learn import KerasClassifier
import pandas as pd
import tensorflow as tf
from sklearn import metrics