Skip to content

Commit 8a9f8f9

Browse files
committed
Turn down the particle counts
1 parent 4746344 commit 8a9f8f9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/murfey/util/processing_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class SPAParameters(BaseModel):
8282

8383

8484
class TomographyParameters(BaseModel):
85-
batch_size_2d: int = 10000
85+
batch_size_2d: int = 5000
8686
nr_classes_2d: int = 5
8787

8888

tests/workflows/tomo/test_tomo_picking.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def test_picked_tomogram_run_class2d_with_diameter(
173173
"particle_diameter": 200,
174174
},
175175
)
176-
for particle in range(10001):
176+
for particle in range(5001):
177177
get_or_create_db_entry(
178178
murfey_db_session,
179179
ParticleSizes,
@@ -220,7 +220,7 @@ def test_picked_tomogram_run_class2d_with_diameter(
220220
"node_creator_queue": "node_creator",
221221
"session_id": message["session_id"],
222222
"autoproc_program_id": 0,
223-
"batch_size": 10000,
223+
"batch_size": 5000,
224224
"nr_classes": 5,
225225
"picker_id": None,
226226
"class2d_grp_uuid": 6,
@@ -257,7 +257,7 @@ def test_picked_tomogram_run_class2d_estimate_diameter(
257257
"particle_diameter": None,
258258
},
259259
)
260-
for particle in range(10001):
260+
for particle in range(5001):
261261
get_or_create_db_entry(
262262
murfey_db_session,
263263
ParticleSizes,
@@ -310,7 +310,7 @@ def test_picked_tomogram_run_class2d_estimate_diameter(
310310
"node_creator_queue": "node_creator",
311311
"session_id": message["session_id"],
312312
"autoproc_program_id": 0,
313-
"batch_size": 10000,
313+
"batch_size": 5000,
314314
"nr_classes": 5,
315315
"picker_id": None,
316316
"class2d_grp_uuid": 12,
@@ -334,7 +334,7 @@ def test_picked_tomogram_run_class2d_estimate_diameter(
334334
"node_creator_queue": "node_creator",
335335
"session_id": message["session_id"],
336336
"autoproc_program_id": 0,
337-
"batch_size": 10000,
337+
"batch_size": 5000,
338338
"nr_classes": 5,
339339
"picker_id": None,
340340
"class2d_grp_uuid": 18,

0 commit comments

Comments
 (0)