iNLyze
iNLyze
Dear @bckenstler , recently I stumbled across an issue with CLR calling from keras 2.1.5: I ran using ```CyclicLR(base_lr=1e-5, max_lr=8e-4, mode='triangular2', step_size=trn_steps//10, scale_mode='iterations')``` where ```trn_steps``` is equal to ```steps_per_epoch``` in...
Recently, I migrated my python environment to 3.6 and updated bcolz along with it. Now I have trouble opening bcolz containers I created with the python 2.7 environment. I get...
In chapter 05 when setting up the fields for training an Embedding on IMDB data you propose: ```python TEXT = data.Field(lower=True, include_lengths=True, \ batch_first=False, tokenize='spacy') LABEL = data.LabelField() ``` However,...