Replies: 1 comment 2 replies
-
We display both hashes (just page through them by clicking the arrow), and you can click a hash to copy it. We still need to scan everything retroactively to get the old hashes, but hope to have that done some time next week. As part of this we also added the ability to search by hash in both the API and the site. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
To make it easy for people to find models based on the Model Hash (a short identifier for a checkpoint), we should add Model Hash to the data associated with Models.
At this point there is a specific way they are hashing them, but it's already proven problematic as there are hash collisions based on the current hashing method: AUTOMATIC1111/stable-diffusion-webui#2459
A new way of hashing the models is currently being proposed, but the current conflict makes me believe that we should likely have the data schema support having multiple Hashes per model perhaps with some identifier for the type of hash. Something like:
That said, to properly generate these, we'll likely want to include this hashing as part of the scan done by the model-scanner and then have the scanner send back any/all of the hashes its generated for the
ckpt
files so that we can store the hashes alongside the models.Beta Was this translation helpful? Give feedback.
All reactions