"tests/git@developer.sourcefind.cn:OpenDAS/mmdetection3d.git" did not exist on "d4d7af24c94995299634a6fa086f9b9ae353c1b3"
Commit 18e5ce8d authored by Damien Vincent's avatar Damien Vincent
Browse files

Remove names in TODO.

parent 120b1fb6
...@@ -39,7 +39,7 @@ def LoadBinaryCode(input_config, batch_size): ...@@ -39,7 +39,7 @@ def LoadBinaryCode(input_config, batch_size):
""" """
data = input_config.data data = input_config.data
# TODO(damienv): Possibly use multiple files (instead of just one). # TODO: Possibly use multiple files (instead of just one).
file_list = [data] file_list = [data]
filename_queue = tf.train.string_input_producer(file_list, filename_queue = tf.train.string_input_producer(file_list,
capacity=4) capacity=4)
......
...@@ -222,7 +222,6 @@ class NN(block_base.BlockBase): ...@@ -222,7 +222,6 @@ class NN(block_base.BlockBase):
self._bias = BiasAdd(bias) if bias else PassThrough() self._bias = BiasAdd(bias) if bias else PassThrough()
self._act = act if act else PassThrough() self._act = act if act else PassThrough()
# TODO(sjhwang): Stop using **kwargs, if we ever switch to python3.
def _Apply(self, *args): def _Apply(self, *args):
if not self._matrices: if not self._matrices:
self._matrices = [ self._matrices = [
......
...@@ -136,7 +136,6 @@ class BlocksStdTest(tf.test.TestCase): ...@@ -136,7 +136,6 @@ class BlocksStdTest(tf.test.TestCase):
def testLinearShared(self): def testLinearShared(self):
# Create a linear map which is applied twice on different inputs # Create a linear map which is applied twice on different inputs
# (i.e. the weights of the map are shared). # (i.e. the weights of the map are shared).
# TODO(sjhwang): Make this test deterministic.
linear_map = blocks_std.Linear(6) linear_map = blocks_std.Linear(6)
x1 = tf.random_normal(shape=[1, 5]) x1 = tf.random_normal(shape=[1, 5])
x2 = tf.random_normal(shape=[1, 5]) x2 = tf.random_normal(shape=[1, 5])
......
...@@ -43,7 +43,7 @@ class EntropyCoderModel(object): ...@@ -43,7 +43,7 @@ class EntropyCoderModel(object):
corresponding to the codes to compress. corresponding to the codes to compress.
The input codes are {-1, +1} codes. The input codes are {-1, +1} codes.
""" """
# TODO(damienv): # TODO:
# - consider switching to {0, 1} codes. # - consider switching to {0, 1} codes.
# - consider passing an extra tensor which gives for each (b, y, x) # - consider passing an extra tensor which gives for each (b, y, x)
# what is the actual depth (which would allow to use more or less bits # what is the actual depth (which would allow to use more or less bits
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment