From 40526eed352f0765c9a357bc62ed2bb5690018e7 Mon Sep 17 00:00:00 2001 From: Joey Ballentine Date: Sat, 18 Nov 2023 15:21:29 -0500 Subject: [PATCH] Update readme to be accurate --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e66dba9..0f7d379c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ loaded_model.output_channels loaded_model.size_requirements ``` -You can also just use this helper class for inference the same way you would with the `model` directly, so for example you could do `result = loaded_model(img)` and it will automatically call the forward method of the model. It also supports moving it to other devices, so you can call `.to` on it just like you would the direct model. +ModelDescriptors also support moving the model to other devices directly, so you can call `.to` on it just like you would the direct model, for convenience. ## Model Architecture Support