Skip to content

Commit

Permalink
change default cache from ram to disk (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsikka authored Jul 12, 2023
1 parent 4ced38d commit 9c7d037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparsify/auto/tasks/object_detection/yolov5/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class _Yolov5BaseTrainArgs(BaseArgs):
noautoanchor: bool = Field(default=False, description="disable AutoAnchor")
bucket: str = Field(default="", description="gsutil bucket")
cache: str = Field(
default="ram", description='--cache images in "ram" (default) or "disk"'
default="disk", description='--cache images in "ram" or "disk" (default)'
)
image_weights: bool = Field(
default=False, description="use weighted image selection for training"
Expand Down

0 comments on commit 9c7d037

Please sign in to comment.