jbobym commited on
Commit
6ad17a8
·
verified ·
1 Parent(s): 4f8132f

Restore 'Developed, trained, and deployed by' byline at top of title block

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -54,17 +54,17 @@ SPACE_URL = "https://huggingface.co/spaces/jbobym/wound-classifier"
54
  TITLE: dict[str, str] = {
55
  "en": (
56
  "# Chronic Wound Classifier\n"
 
57
  "A model I trained to look at a wound photo and guess which of four types it is. "
58
  "It's right roughly 8 times out of 10; this page also tells you when not to trust it.\n\n"
59
- "By **John Boby Mesadieu**.\n\n"
60
  f"**Share this demo:** [{SPACE_URL}]({SPACE_URL})"
61
  ),
62
  "fr": (
63
  "# Classification des plaies chroniques\n"
 
64
  "Un modèle que j'ai entraîné pour regarder une photo de plaie et deviner lequel des quatre "
65
  "types c'est. Il a raison environ 8 fois sur 10 ; cette page vous dit aussi quand ne pas "
66
  "lui faire confiance.\n\n"
67
- "Par **John Boby Mesadieu**.\n\n"
68
  f"**Partager cette démo :** [{SPACE_URL}]({SPACE_URL})"
69
  ),
70
  }
 
54
  TITLE: dict[str, str] = {
55
  "en": (
56
  "# Chronic Wound Classifier\n"
57
+ "*Developed, trained, and deployed by **John Boby Mesadieu**.*\n\n"
58
  "A model I trained to look at a wound photo and guess which of four types it is. "
59
  "It's right roughly 8 times out of 10; this page also tells you when not to trust it.\n\n"
 
60
  f"**Share this demo:** [{SPACE_URL}]({SPACE_URL})"
61
  ),
62
  "fr": (
63
  "# Classification des plaies chroniques\n"
64
+ "*Conçu, entraîné et déployé par **John Boby Mesadieu**.*\n\n"
65
  "Un modèle que j'ai entraîné pour regarder une photo de plaie et deviner lequel des quatre "
66
  "types c'est. Il a raison environ 8 fois sur 10 ; cette page vous dit aussi quand ne pas "
67
  "lui faire confiance.\n\n"
 
68
  f"**Partager cette démo :** [{SPACE_URL}]({SPACE_URL})"
69
  ),
70
  }