Isabella Tromba
Isabella Tromba
This happens here: ``` let min = self.histogram.iter().next().unwrap().0.get(); ``` https://github.com/tangramdotdev/tangram/blob/d3472c217f0177872d40628425ea0241bb3afb24/crates/core/stats.rs#L365
hi @spullara. You should definitely be able to configure the max unique values so that your column with 117 unique values would be an enum column. Currently, the only way...
training output on current release: ``` ✅ Inferring train table columns. 0ms ✅ Loading train table. 0ms ✅ Shuffling. 0ms warning: The train dataset is very small. It has only...
Thanks for the issue! @spullara what functionality would you like? We will be adding boolean column types but have not yet.
The tokenizer will tokenize the string in the following way: | words | tokens | |------| -------| |This, That, And the Other | `this` `,` `that` `,` `and` `the` `other`...
You would need to pre-process your csv using another tool. Alternatively, you can use an `enum` column by using a custom config file as described here: https://www.modelfox.dev/docs/guides/train_with_custom_configuration. In the example...