@samhenrigold Yeah, it def feels like a task that could really get the benefits of this kind of tech. At least for providing some kind of basic template framework for a user to start from.
I had to take a class on website accessibility compliance, and part of it focused on writing good image descriptor text; there are a lot of things that people don't even consider which are actually pretty important, and also a ton of stuff that people think is important to include in an image descriptor which is actually really unnecessary/unhelpful. At the very least, a tool providing some kind of heuristic GOOD/OK/BAD could be super useful and shouldn't be toooooo crazy hard to train. :thaenkin:
@ovmoro And, ya know, give that model a little nudge in the right direction.
```
if (altText.startsWith("An image of")) {
return Score.Awful
}
```