hubconf.py 697 B

1234567891011121314151617181920212223242526272829303132333435
  1. def relocated():
  2. raise ValueError(
  3. "NVIDIA entrypoints moved to branch torchhub \n"
  4. "Use torch.hub.load('NVIDIA/DeepLearningExamples:torchhub', ...) to access the models"
  5. )
  6. def nvidia_ncf(**kwargs):
  7. """Entrypoints moved to branch torchhub
  8. """
  9. relocated()
  10. def nvidia_tacotron2(**kwargs):
  11. """Entrypoints moved to branch torchhub
  12. """
  13. relocated()
  14. def nvidia_waveglow(**kwargs):
  15. """Entrypoints moved to branch torchhub
  16. """
  17. relocated()
  18. def nvidia_ssd_processing_utils():
  19. """Entrypoints moved to branch torchhub
  20. """
  21. relocated()
  22. def nvidia_ssd(**kwargs):
  23. """Entrypoints moved to branch torchhub
  24. """
  25. relocated()