Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Tests failing with tensorflow 2.12.0 #293

Closed
dstansby opened this issue Mar 24, 2023 · 6 comments
Closed

[BUG] Tests failing with tensorflow 2.12.0 #293

dstansby opened this issue Mar 24, 2023 · 6 comments
Labels
bug Something isn't working cellfinder-core Issue concerns the core backend

Comments

@dstansby
Copy link
Member

The release of tensorflow 2.12.0 is causing some of our tests to fail. See e.g. https://github.com/brainglobe/cellfinder-core/actions/runs/4503578523/jobs/7926945458.

I don't have time to investigate now, so I'll pin to tensorflow<2.12.0 in dependencies for now.

@dstansby
Copy link
Member Author

One of the traces is

  _____________________________ test_detection_full ______________________________
  
  signal_array = dask.array<stack, shape=(30, 510, 667), dtype=uint16, chunksize=(1, 510, 667), chunktype=numpy.ndarray>
  background_array = dask.array<stack, shape=(30, 510, 667), dtype=uint16, chunksize=(1, 510, 667), chunktype=numpy.ndarray>
  
      @pytest.mark.slow
      def test_detection_full(signal_array, background_array):
  >       cells_test = main(
              signal_array,
              background_array,
              voxel_sizes,
              n_free_cpus=0,
          )
  
  tests/tests/test_integration/test_detection.py:35: 
  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
  .tox/py310/lib/python3.10/site-packages/cellfinder_core/main.py:95: in main
      points = classify.main(
  .tox/py310/lib/python3.10/site-packages/cellfinder_core/classify/classify.py:74: in main
      predictions = model.predict(
  .tox/py310/lib/python3.10/site-packages/keras/utils/traceback_utils.py:70: in error_handler
      raise e.with_traceback(filtered_tb) from None
  _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
  
  iterator = <tensorflow.python.data.ops.iterator_ops.OwnedIterator object at 0x7f536c61c550>
  
      def tf__predict_function(iterator):
          """Runs an evaluation execution with a single step."""
          with ag__.FunctionScope('predict_function', 'fscope', ag__.ConversionOptions(recursive=True, user_requested=True, optional_features=(), internal_convert_user_code=True)) as fscope:
              do_return = False
              retval_ = ag__.UndefinedReturnValue()
              try:
                  do_return = True
  >               retval_ = ag__.converted_call(ag__.ld(step_function), (ag__.ld(self), ag__.ld(iterator)), None, fscope)
  E               TypeError: in user code:
  E               
  E                   File "/home/runner/work/cellfinder-core/cellfinder-core/.tox/py310/lib/python3.10/site-packages/keras/engine/training.py", line 2169, in predict_function  *
  E                       return step_function(self, iterator)
  E                   File "/home/runner/work/cellfinder-core/cellfinder-core/.tox/py310/lib/python3.10/site-packages/keras/engine/training.py", line 2155, in step_function  **
  E                       outputs = model.distribute_strategy.run(run_step, args=(data,))
  E                   File "/home/runner/work/cellfinder-core/cellfinder-core/.tox/py310/lib/python3.10/site-packages/keras/engine/training.py", line 2143, in run_step  **
  E                       outputs = model.predict_step(data)
  E                   File "/home/runner/work/cellfinder-core/cellfinder-core/.tox/py310/lib/python3.10/site-packages/keras/engine/training.py", line 2111, in predict_step
  E                       return self(x, training=False)
  E                   File "/home/runner/work/cellfinder-core/cellfinder-core/.tox/py310/lib/python3.10/site-packages/keras/utils/traceback_utils.py", line 70, in error_handler
  E                       raise e.with_traceback(filtered_tb) from None
  E               
  E                   TypeError: Exception encountered when calling layer 'conv1_bn' (type BatchNormalization).
  E                   
  E                   Failed to convert elements of [1, 1, 1, None, 1] to Tensor. Consider casting elements to a supported type. See https://www.tensorflow.org/api_docs/python/tf/dtypes for supported TF dtypes.
  E                   
  E                   Call arguments received by layer 'conv1_bn' (type BatchNormalization):
  Einputs=tf.Tensor(shape=(None, None, None, None, 64), dtype=float32)
  Etraining=False
  Emask=None
  
  /tmp/__autograph_generated_filerbzi9zef.py:15: TypeError

@dstansby
Copy link
Member Author

I've opened tensorflow/tensorflow#60102 for this

@dstansby
Copy link
Member Author

I spent about half an hour trying to work towards a self-contianed reproducible example of this, and struggled - I think working this out is going to take quite a bit of time getting used to how the classification code works and interfaces with tensorflow.

@dstansby
Copy link
Member Author

dstansby commented Jun 22, 2023

Here's a small example to reproduce the error. I'll edit this if I manage to get it any smaller.

from pathlib import Path

import numpy as np
from imlib.cells.cells import Cell

from cellfinder_core.classify.cube_generator import CubeGeneratorFromFile
from cellfinder_core.classify.tools import get_model

points = [Cell((50, 50, 50), 1)]
signal_array = np.random.rand(100, 100, 100)
background_array = signal_array
voxel_sizes = [5, 2, 2]
network_voxel_sizes = (5, 1, 1)

inference_generator = CubeGeneratorFromFile(
    points,
    signal_array,
    background_array,
    voxel_sizes,
    network_voxel_sizes,
)

model_weights = Path(
    "/Users/dstansby/.cellfinder/model_weights/resnet50_tv.h5"
)
model = get_model(
    existing_model=None,
    model_weights=model_weights,
    network_depth="50-layer",
    inference=True,
)

predictions = model.predict(
    inference_generator,
)

willGraham01 referenced this issue in brainglobe/cellfinder-core Aug 24, 2023
Add progress bar when saving curated cells
@willGraham01 willGraham01 added the cellfinder-core Issue concerns the core backend label Jan 3, 2024
@willGraham01 willGraham01 transferred this issue from brainglobe/cellfinder-core Jan 3, 2024
@adamltyson
Copy link
Member

Closing now we've moved to torch, this issue no longer exists 🎉

@adamltyson adamltyson closed this as not planned Won't fix, can't repro, duplicate, stale May 31, 2024
@dstansby
Copy link
Member Author

🥳

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working cellfinder-core Issue concerns the core backend
Projects
Status: Done
Development

No branches or pull requests

3 participants