Skip to content

Commit

Permalink
Switch to the new collection
Browse files Browse the repository at this point in the history
  • Loading branch information
oeway authored Jun 12, 2024
1 parent f73b340 commit bc50eea
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/convert_all_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
if __name__ == "__main__":

response = requests.get(
"https://raw.githubusercontent.com/bioimage-io/collection-bioimage-io/gh-pages/rdf.json"
"https://uk1s3.embassy.ebi.ac.uk/public-datasets/bioimage.io/collection.json"
)
summary = json.loads(response.content)
collection = summary["collection"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/download_all_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
if __name__ == "__main__":

response = requests.get(
"https://raw.githubusercontent.com/bioimage-io/collection-bioimage-io/gh-pages/rdf.json"
"https://uk1s3.embassy.ebi.ac.uk/public-datasets/bioimage.io/collection.json"
)
summary = json.loads(response.content)
collection = summary["collection"]
Expand Down
2 changes: 1 addition & 1 deletion scripts/export_model_to_triton.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_backend_and_source(weights):


def get_models():
response = requests.get("https://raw.githubusercontent.com/bioimage-io/collection-bioimage-io/gh-pages/rdf.json")
response = requests.get("https://uk1s3.embassy.ebi.ac.uk/public-datasets/bioimage.io/collection.json")
summary = json.loads(response.content)
collection = summary["collection"]
models = []
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_model_ids.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

if __name__ == "__main__":
response = requests.get(
"https://raw.githubusercontent.com/bioimage-io/collection-bioimage-io/gh-pages/rdf.json"
"https://uk1s3.embassy.ebi.ac.uk/public-datasets/bioimage.io/collection.json"
)
summary = json.loads(response.content)
collection = summary["collection"]
Expand Down
2 changes: 1 addition & 1 deletion tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

def get_models():
response = requests.get(
"https://raw.githubusercontent.com/bioimage-io/collection-bioimage-io/gh-pages/rdf.json"
"https://uk1s3.embassy.ebi.ac.uk/public-datasets/bioimage.io/collection.json"
)
summary = json.loads(response.content)
collection = summary["collection"]
Expand Down

0 comments on commit bc50eea

Please sign in to comment.