Skip to content

Commit 72d73fc

Browse files
changed default estimator batch size to 512
1 parent 5ba171a commit 72d73fc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

batchglm/train/tf/glm_beta/estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
2020
def __init__(
2121
self,
2222
input_data: InputDataGLM,
23-
batch_size: int = 500,
23+
batch_size: int = 512,
2424
graph: tf.Graph = None,
2525
init_model: Model = None,
2626
init_a: Union[np.ndarray, str] = "AUTO",

batchglm/train/tf/glm_nb/estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
2020
def __init__(
2121
self,
2222
input_data: InputDataGLM,
23-
batch_size: int = 500,
23+
batch_size: int = 512,
2424
graph: tf.Graph = None,
2525
init_model: Model = None,
2626
init_a: Union[np.ndarray, str] = "AUTO",

batchglm/train/tf/glm_norm/estimator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Estimator(TFEstimatorGLM, ProcessModel):
2222
def __init__(
2323
self,
2424
input_data: InputDataGLM,
25-
batch_size: int = 500,
25+
batch_size: int = 512,
2626
graph: tf.Graph = None,
2727
init_model: Model = None,
2828
init_a: Union[np.ndarray, str] = "AUTO",

0 commit comments

Comments
 (0)