Dropping Public Models

Does dropping a public/published model require any special syntax?
I'm trying the following:
CALL gds.model.drop("<model_name>_public")

The command does not fail, however, when I check the catalog again using:
CALL gds.model.list() YIELD modelName, creationTime, loaded, stored, published
the model still exists

Hello @elizabeth.louden ,
For public models to be dropped, you need to be the creator of the model.
But it should also fail if you are not the creator.

Maybe you stored the model also on disk?
In this case, you should also use gds.model.delete.