packing-box / docker-packing-box

Docker image gathering packers and tools for making datasets of packed executables and training machine learning models for packing detection
GNU General Public License v3.0
44 stars 10 forks source link

Add dimensionality reduction parameters to exported image name. #53

Closed smarbal closed 1 year ago

smarbal commented 1 year ago

Improvement suggestion

To make comparison between visualizations easier, it would be nice to have the PCA/t-SNE parameters in the name of the exported file. For now, visualizations with different parameters will have the same file name and a new visualization will overwrite the previous visualization.

dhondta commented 1 year ago

Hi @smarbal Good point. Can you provide an example of 2 such filenames ?

smarbal commented 1 year ago

For a file currently named fs-upx_pe32-pe64_1909_kmeans_f15.png, where :

It could be interesting to have it named : fs-upx_pe32-pe64_1909_kmeans_f15_p20_t2.png .

Having the perplexity parameter of t-SNE could also be interesting but could make the naming a bit confusing. Maybe having fs-upx_pe32-pe64_1909_kmeans_f15_p20_t2-30.png would be interesting, where 30 is the perplexity.

dhondta commented 1 year ago

@smarbal Please test.

smarbal commented 1 year ago

Works as intended. Thank you.