I've been playing with skops for a bit and I noticed that I'm able to zip the files to get them smaller on disk. The original .skops file was 96.1 Mb (it contains tfidf vectorizer and svd) while the zipped version, handled by MacOS, is 45.1 on disk. That seems like a big difference and I wonder if this might be handled natively.
Related question: I've manually set all the internal numpy arrays to float16. This led to a difference from 238.2 Mb to 96.1 Mb. Might pruning also be a relevant feature for skops?
I've been playing with skops for a bit and I noticed that I'm able to zip the files to get them smaller on disk. The original
.skopsfile was 96.1 Mb (it contains tfidf vectorizer and svd) while the zipped version, handled by MacOS, is 45.1 on disk. That seems like a big difference and I wonder if this might be handled natively.Related question: I've manually set all the internal numpy arrays to
float16. This led to a difference from 238.2 Mb to 96.1 Mb. Might pruning also be a relevant feature for skops?