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
Thank you for the library. I am using it to compress the underlying data in the Dictionary library on ESP32 and ESP8266 microcontrollers (you can reference those platforms as "works on" from now on).
While playing with specific training data set I noticed that generate_compressor_model.py produced this kind of strings:
Note all the "None"'s in the code.
Obviously C compiler didn't know what to do with this.
I replaced the None's with 0's manually and it compiled and worked (compressed) the strings, so I assume those are meant to be zeros but I am not sure.
The training dataset is attached (it's a test data set for random key-value creation. Also attached is the resulting model generated with None's.
Hi guys,
Thank you for the library. I am using it to compress the underlying data in the Dictionary library on ESP32 and ESP8266 microcontrollers (you can reference those platforms as "works on" from now on).
While playing with specific training data set I noticed that generate_compressor_model.py produced this kind of strings:
Note all the "None"'s in the code.
Obviously C compiler didn't know what to do with this.
I replaced the None's with 0's manually and it compiled and worked (compressed) the strings, so I assume those are meant to be zeros but I am not sure.
The training dataset is attached (it's a test data set for random key-value creation. Also attached is the resulting model generated with None's.
Hope you can fix this.
dictionary-test.txt
dictioanry-test.h.txt
The text was updated successfully, but these errors were encountered: