Skip to content
  1. Feb 22, 2022
  2. Nov 03, 2021
  3. Oct 14, 2021
  4. Oct 05, 2021
  5. Sep 10, 2021
  6. Jun 16, 2021
  7. Jun 09, 2021
  8. May 10, 2021
    • Amir MOHAMMADI's avatar
      Replace SequentialLayer with Sequential Model · a61605d2
      Amir MOHAMMADI authored
      The Sequentiallayer was introducing more problems
      than the ones it solved. Unfortunately, the old checkpoints
      will not be compatible but they can be easily converted using:
      ```python
      old_model = tf.keras.models.load_model()
      new_model = bob.learn.tensorflow.models.incepetion_resenet_v2.IncepetionResnetV2()
      new_model.set_weights(old_model.get_weights)
      new_model.save(".../new_checkpoint")
      ```
      a61605d2
  9. Apr 26, 2021
  10. Apr 22, 2021
  11. Apr 15, 2021
  12. Apr 13, 2021
  13. Mar 25, 2021
  14. Jan 28, 2021
  15. Jan 26, 2021
  16. Dec 09, 2020
  17. Dec 04, 2020
  18. Nov 13, 2020
Loading