Skip to content

Commit

Permalink
If disable_small_model is set to false, make sure the flag is set for…
Browse files Browse the repository at this point in the history
… run_deepvariant.

PiperOrigin-RevId: 695370255
  • Loading branch information
pichuan authored and copybara-github committed Nov 11, 2024
1 parent 39cf496 commit 57e45ff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/inference_deepvariant.sh
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,10 @@ function setup_args() {
fi
if [[ "${DISABLE_SMALL_MODEL}" = true ]]; then
echo "Disabling small model"
extra_args+=( --disable_small_model "true")
extra_args+=( --disable_small_model )
else
echo "Enabling small model"
extra_args+=( --nodisable_small_model )
fi
# If you're running an older version (before 1.2) that doesn't have this flag,
# you'll need to comment out this line.
Expand Down

0 comments on commit 57e45ff

Please sign in to comment.