pablovela5620 commited on
Commit
db14f97
·
verified ·
1 Parent(s): 7254aba

Upload gradio_app.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. gradio_app.py +1 -1
gradio_app.py CHANGED
@@ -31,7 +31,7 @@ except ImportError:
31
  title = "# Depth Comparison"
32
  description1 = """Demo to help compare different depth models. Including both Scale | Shift Invariant and Metric Depth types."""
33
  description2 = """Invariant models mean they have no true scale and are only relative, where as Metric models have a true scale and are absolute (meters)."""
34
- description3 = """![GitHub Repo stars](https://img.shields.io/github/stars/pablovela5620/monoprior)"""
35
  model_load_status: str = "Models loaded and ready to use!"
36
  DEVICE: Literal["cuda"] | Literal["cpu"] = (
37
  "cuda" if torch.cuda.is_available() else "cpu"
 
31
  title = "# Depth Comparison"
32
  description1 = """Demo to help compare different depth models. Including both Scale | Shift Invariant and Metric Depth types."""
33
  description2 = """Invariant models mean they have no true scale and are only relative, where as Metric models have a true scale and are absolute (meters)."""
34
+ description3 = """Checkout the [Github Repo](https://github.com/pablovela5620/monoprior) [![GitHub Repo stars](https://img.shields.io/github/stars/pablovela5620/monoprior)](https://github.com/pablovela5620/monoprior)"""
35
  model_load_status: str = "Models loaded and ready to use!"
36
  DEVICE: Literal["cuda"] | Literal["cpu"] = (
37
  "cuda" if torch.cuda.is_available() else "cpu"