Add HUB-SDK Docs reference section (#7781)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com> Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com>
This commit is contained in:
parent
5941128835
commit
ee88882874
25 changed files with 142 additions and 47 deletions
|
|
@ -277,7 +277,7 @@ class HUBTrainingSession:
|
|||
timeout: The maximum timeout duration.
|
||||
|
||||
Returns:
|
||||
str: The retry message.
|
||||
(str): The retry message.
|
||||
"""
|
||||
if self._should_retry(response.status_code):
|
||||
return f"Retrying {retry}x for {timeout}s." if retry else ""
|
||||
|
|
@ -341,7 +341,7 @@ class HUBTrainingSession:
|
|||
response (requests.Response): The response object from the file download request.
|
||||
|
||||
Returns:
|
||||
(None)
|
||||
None
|
||||
"""
|
||||
with TQDM(total=content_length, unit="B", unit_scale=True, unit_divisor=1024) as pbar:
|
||||
for data in response.iter_content(chunk_size=1024):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue