You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bin/feature.py script is currently consuming substantial memory and has slow processing times. We need to optimize this script to improve its performance, focusing on pandas usage optimization and reducing processing time for specific functions.
Current Performance Issues
Memory Usage
Pandas consumes more memory than the file size after pd.read_csv operations.
Significant memory increments observed for various dataframe operations.
Time Consumption
The apply function on varDf takes 27.9% of the total time.
The hgmdSymMatch function consumes 65.0% of the total time.
The text was updated successfully, but these errors were encountered:
Description
The
bin/feature.py
script is currently consuming substantial memory and has slow processing times. We need to optimize this script to improve its performance, focusing on pandas usage optimization and reducing processing time for specific functions.Current Performance Issues
Memory Usage
pd.read_csv
operations.Time Consumption
apply
function onvarDf
takes 27.9% of the total time.hgmdSymMatch
function consumes 65.0% of the total time.The text was updated successfully, but these errors were encountered: