Shuheng Liu
Shuheng Liu
In `one_nearest_neighbor.NaiveOneNearestNeighborScorer._set_score()`. the lines ```python length = len(self._argmin) total = sum(1 for k in range(length) if (k < length / 2) == (self._argmin[k] < length / 2)) self._score = total...
When initializing default `_alexnet` in `one_nearest_neighbor.AlexNetOneNearestNeighbor`, the call ```python self.session.run(tf.global_variables_initializer()) self._alexnet.load_model_pretrained(self.session) ``` results in all variables being initialized again. Consider calling the initializer for only variables in default alexnet.
When I tap into "Repositories -> Owned", I see multiple repositories that I do not own. They are identical repositories forked from a common repo by different users. In fact,...
Hi there, First, thanks for this awesome library! However, I have a minor confusion about the input type of PTY.write() and I'd appreciate your explanation. ```python from winpty import PTY...