Email or username:

Password:

Forgot your password?
Top-level
Kevin T

@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:​

2 comments
sam henri gold

@ovmoro And, ya know, give that model a little nudge in the right direction.

```
if (altText.startsWith("An image of")) {
return Score.Awful
}
```

Kevin T

@samhenrigold lol, there are def some worse ways to start a descriptor. But yeah, at the very least "a photo of", "a drawing of", and "a screenshot of" need to rank higher than just "it's a picture" XP

Go Up