fix HUB download and train (#15896)
Signed-off-by: UltralyticsAssistant <web@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
5f01e15e7b
commit
0f9f7b806c
2 changed files with 5 additions and 2 deletions
|
|
@ -128,8 +128,10 @@ class Model(nn.Module):
|
|||
if self.is_hub_model(model):
|
||||
# Fetch model from HUB
|
||||
checks.check_requirements("hub-sdk>=0.0.8")
|
||||
self.session = HUBTrainingSession.create_session(model)
|
||||
model = self.session.model_file
|
||||
session = HUBTrainingSession.create_session(model)
|
||||
model = session.model_file
|
||||
if session.train_args: # training sent from HUB
|
||||
self.session = session
|
||||
|
||||
# Check if Triton Server model
|
||||
elif self.is_triton_model(model):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue