Jeff
Results
3
comments of
Jeff
The same for me for "2011 May 09 to 2011 June 28" with 0.10.2 Chronic.parse('2011 May 09 to 2011 June 28') => NoMethodError: undefined method `+' for nil:NilClass
I got the same error. My problem was: LabelEncoder used on training data but not on testing data. ```python # having X_train and X_valid encoders_pipeline.fit(X_train) X_train = encoders_pipeline.transform(X_train) X_valid =...