VenkteshV

Results 8 comments of VenkteshV

use .get on dictionary instead of indexing it will solve the error

change this line text = [ self.dict[char.lower() if self._ignore_case else char] for char in text ] in utils.py to text = [ self.dict.get(char.lower() if self._ignore_case else char) for char in...

## Review checklist for @VenkteshV ### Conflict of interest - [x] I confirm that I have read the [JOSS conflict of interest (COI) policy](https://github.com/openjournals/joss/blob/master/COI.md) and that: I have no COIs...

> @VenkteshV, can you please update us on how it's going with your review? Greetings. I am working on the same and will complete the first round of reviews by...

> > @VenkteshV, can you please update us on how it's going with your review? > > Greetings. I am working on the same and will complete the first round...

> > > @VenkteshV, can you please update us on how it's going with your review? > > > > > > Greetings. I am working on the same and...

> > HIi, thanks for releasing the code. I had one query. wouldn't the code calculating f1 score in train and val loop throw an error as it is being...