Skip to content

Commit

Permalink
remove download_checkpoints arg
Browse files Browse the repository at this point in the history
  • Loading branch information
deigen committed Jan 27, 2025
1 parent aa89fd4 commit 3a75123
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions clarifai/runners/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,11 @@ def main():
required=True,
help='The path to the model directory that contains implemention of the model.',
)
parser.add_argument(
'--download_checkpoints',
action='store_true',
help='Downloads any remote checkpoints specified in the config',
)

parsed_args = parser.parse_args()

builder = ModelBuilder(parsed_args.model_path)

if parsed_args.download_checkpoints:
builder.download_checkpoints()

model = builder.create_model_instance()

# Setup the grpc server for local development.
Expand Down

0 comments on commit 3a75123

Please sign in to comment.