Mark Nuttall-Smith

Results 16 comments of Mark Nuttall-Smith

Hey @MderM great that using TLS allows us to use more streams, but did you ever manage to get around the hard coded limit of 100 in Chrome?

That is great to hear! I was slightly worried this project was no longer being maintained, which would have been sad as it's really useful. Thanks for your work 🙌

just change 10_data_loader as follows ``` features = pd.get_dummies(transaction_df[feature_cols], columns=cat_cols).fillna(0) ``` to ``` features = pd.get_dummies(transaction_df[feature_cols], columns=cat_cols, dtype=float).fillna(0) ```

I'm not sure why yet, but making `_sp_session` a public field in the `ChatSnowflakeCortex` model makes this problem go away. Just replace `_sp_session` with `sp_session` everywhere in snowflake.py