Temporarily remove unused files; make package work with Cbc

This commit is contained in:
2020-01-22 12:35:18 -06:00
parent ef14f42d01
commit f538356bf6
12 changed files with 189 additions and 192 deletions

View File

@@ -2,28 +2,42 @@
# Copyright (C) 2019-2020 Argonne National Laboratory. All rights reserved.
# Written by Alinson S. Xavier <axavier@anl.gov>
import tensorflow as tf
import tensorflow.keras as keras
from tensorflow.keras.models import Sequential
from tensorflow.keras.layers import Dense, Dropout, Flatten, Activation
import numpy as np
from sklearn.pipeline import make_pipeline
from sklearn.linear_model import LogisticRegression
from sklearn.preprocessing import StandardScaler
class WarmStartPredictor:
def __init__(self, model=None, threshold=0.80):
self.model = model
self.threshold = threshold
def fit(self, train_x, train_y):
pass
def predict(self, x):
if self.model is None: return None
assert isinstance(x, np.ndarray)
y = self.model.predict(x)
n_vars = y.shape[0]
ws = np.array([float("nan")] * n_vars)
ws[y[:,0] > self.threshold] = 1.0
ws[y[:,1] > self.threshold] = 0.0
return ws
def __init__(self,
thr_fix_zero=0.05,
thr_fix_one=0.95,
thr_predict=0.95):
self.model = None
self.thr_predict = thr_predict
self.thr_fix_zero = thr_fix_zero
self.thr_fix_one = thr_fix_one
def fit(self, x_train, y_train):
assert isinstance(x_train, np.ndarray)
assert isinstance(y_train, np.ndarray)
assert y_train.shape[1] == 2
assert y_train.shape[0] == x_train.shape[0]
y_hat = np.average(y_train[:, 1])
if y_hat < self.thr_fix_zero or y_hat > self.thr_fix_one:
self.model = int(y_hat)
else:
self.model = make_pipeline(StandardScaler(), LogisticRegression())
self.model.fit(x_train, y_train[:, 1].astype(int))
def predict(self, x_test):
assert isinstance(x_test, np.ndarray)
if isinstance(self.model, int):
p_test = np.array([[1 - self.model, self.model]
for _ in range(x_test.shape[0])])
else:
p_test = self.model.predict_proba(x_test)
p_test[p_test < self.thr_predict] = 0
p_test[p_test > 0] = 1
p_test = p_test.astype(int)
return p_test