You could argue that this is another onion in the varnish, but I prefer some over any. It's one less syllable to say in my head when reading.
-----
> [...] some, which returns true if the function is true of any element; [...]
Also, although this shouldn't matter much, 'any' is the name of this function in Python.
But one good reason is that "some" can be ordinarily used in some declarative senses in which "any" doesn't work. For example, compare:
"I see some of these numbers are odd."
and
"I see any of these numbers are odd."
And even if the second way was ordinary usage, it would seem to imply that all the numbers are odd.
Since "some" has this quality, you can mentally parse Arc statements using "some" into statements like the one above.