Skip to content

Commit

Permalink
changed default estimator batch size to 512
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsebfischer committed Aug 25, 2019
1 parent 5ba171a commit 72d73fc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion batchglm/train/tf/glm_beta/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
def __init__(
self,
input_data: InputDataGLM,
batch_size: int = 500,
batch_size: int = 512,
graph: tf.Graph = None,
init_model: Model = None,
init_a: Union[np.ndarray, str] = "AUTO",
Expand Down
2 changes: 1 addition & 1 deletion batchglm/train/tf/glm_nb/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
def __init__(
self,
input_data: InputDataGLM,
batch_size: int = 500,
batch_size: int = 512,
graph: tf.Graph = None,
init_model: Model = None,
init_a: Union[np.ndarray, str] = "AUTO",
Expand Down
2 changes: 1 addition & 1 deletion batchglm/train/tf/glm_norm/estimator.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
def __init__(
self,
input_data: InputDataGLM,
batch_size: int = 500,
batch_size: int = 512,
graph: tf.Graph = None,
init_model: Model = None,
init_a: Union[np.ndarray, str] = "AUTO",
Expand Down

0 comments on commit 72d73fc

Please sign in to comment.