Not able to load conchv1_5 model
I got access to conch v1.5 model and I am trying to load the model in the following way :
import timm
model = timm.create_model("hf_hub:MahmoodLab/conchv1_5", pretrained=True)
While doing this i am getting the following error :
13 frames
HTTPError: 404 Client Error: Not Found for url: https://huggingface.co/MahmoodLab/conchv1_5/resolve/main/config.json
The above exception was the direct cause of the following exception:
EntryNotFoundError Traceback (most recent call last)
/usr/local/lib/python3.12/dist-packages/huggingface_hub/utils/_http.py in hf_raise_for_status(response, endpoint_name)
411 elif error_code == "EntryNotFound":
412 message = f"{response.status_code} Client Error." + "\n\n" + f"Entry Not Found for url: {response.url}."
--> 413 raise _format(EntryNotFoundError, message, response) from e
414
415 elif error_code == "GatedRepo":
EntryNotFoundError: 404 Client Error. (Request ID: Root=1-694b879d-5d03879972806bf92f4da4e0;ac71ebff-4715-4fa4-ac6b-7c11f7a3e098)
Entry Not Found for url: https://huggingface.co/MahmoodLab/conchv1_5/resolve/main/config.json.
Hi @bsarma
Make sure that you have been granted access to our model.
You can also use this repo (https://github.com/mahmoodlab/TRIDENT) to extract CONCHv1.5 features.
Hope this helps,
Andrew