We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1816b76 commit 9d7c48aCopy full SHA for 9d7c48a
app/dashapp/shapes_to_segmentations.py
@@ -88,7 +88,7 @@ def compute_segmentations(
88
# do segmentation and return this
89
t1 = time()
90
clf = RandomForestClassifier(
91
- n_estimators=50, n_jobs=-1, max_depth=8, max_samples=0.05
+ n_estimators=50, n_jobs=-1, max_depth=8, max_samples=0.05, random_state=42
92
)
93
seg_matrix, clf = fit_segmenter(mask, features, clf)
94
t2 = time()
0 commit comments