Tobias Kolditz

Results 2 issues of Tobias Kolditz

I made a Rust translation of CISTEM for a project of mine: [cistemrs](https://github.com/kldtz/cistemrs). Probably you don't want to merge it into the repo, but maybe it's useful for other people...

There is a little issue in `cs230-code-examples/tensorflow/nlp/evaluate.py`: You use the dev set for evaluation: ```python path_eval_sentences = os.path.join(args.data_dir, 'dev/sentences.txt') path_eval_labels = os.path.join(args.data_dir, 'dev/labels.txt') ``` But later you iterate over the...