luminoth icon indicating copy to clipboard operation
luminoth copied to clipboard

Deep Learning toolkit for Computer Vision.

Results 63 luminoth issues
Sort by recently updated
recently updated
newest added

Bumps [tensorflow](https://github.com/tensorflow/tensorflow) from 1.5.0 to 2.7.2. Release notes Sourced from tensorflow's releases. TensorFlow 2.7.2 Release 2.7.2 This releases introduces several vulnerability fixes: Fixes a code injection in saved_model_cli (CVE-2022-29216) Fixes...

dependencies

Hello! I've found a performance issue in /luminoth/eval.py: `with tf.Session() as sess`[(here)](https://github.com/tryolabs/luminoth/blob/9109d8b98bcbb0ad4e8e0c928da0b20627fa774f/luminoth/eval.py#L312) is defined in the function `evaluate_once`[(here)](https://github.com/tryolabs/luminoth/blob/9109d8b98bcbb0ad4e8e0c928da0b20627fa774f/luminoth/eval.py#L282) which is repeatedly called in the loop `for checkpoint in checkpoints`[(here)](https://github.com/tryolabs/luminoth/blob/9109d8b98bcbb0ad4e8e0c928da0b20627fa774f/luminoth/eval.py#L193). `tf.Session`...

On the following lines, a list containing two times the pooled width and two times the pooled height (in that order) is provided to tf.image.crop_and_resize: https://github.com/tryolabs/luminoth/blob/9109d8b98bcbb0ad4e8e0c928da0b20627fa774f/luminoth/models/fasterrcnn/roi_pool.py#L75-L78 However, in the [crop_and_resize...

There is a small typo in luminoth/models/fasterrcnn/rpn_target.py. Should read `targets` rather than `targers`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

I'm getting above error while training fasterrcnn using luminoth. can someone provide solution for this. Error:- tensorflow.python.framework.errors_impl.InvalidArgumentError: Name: , Context feature 'depth' is required but could not be found. [[Node:...

Type: Needs Investigation
Type: Bug

This fixes an error we were getting when `tf.nn.softmax_cross_entropy_with_logits` received empty tensors. The error was quite elusive, as it only happened on GPUs and not CPUs. [This](https://github.com/tensorflow/tensorflow/issues/6766) is the issue...