Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion reeds/input_processing/WriteHintage.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,10 @@
# Time the operation of this script
tic = datetime.datetime.now()

# ignore ConvergenceWarnings that occur in this file from the kmeans function
# ignore ConvergenceWarnings and Windows+MKL memory leak warnings that
# occur in this file from the kmeans function
warnings.filterwarnings("ignore", category=ConvergenceWarning)
warnings.filterwarnings("ignore", message="KMeans is known to have a memory leak")


#%% ===========================================================================
Expand Down
Loading