Fix python binary descriptions

PiperOrigin-RevId: 305731938
Change-Id: I1389cdfeaf5606aa6e36267e2df94427dadc5628
This commit is contained in:
Meghna Natraj 2020-04-09 12:06:33 -07:00 committed by TensorFlower Gardener
parent d3fdebcec3
commit c4101036a8
2 changed files with 8 additions and 4 deletions

View File

@ -12,10 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Randomize all weights in a tflite file.
r"""Randomize all weights in a tflite file.
Example usage:
python randomize_weights.py foo.tflite foo_randomized.tflite
python randomize_weights.py \
--input_tflite_file=foo.tflite \
--output_tflite_file=foo_randomized.tflite
"""
from __future__ import absolute_import

View File

@ -12,10 +12,12 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
"""Strips all nonessential strings from a tflite file.
r"""Strips all nonessential strings from a tflite file.
Example usage:
python strip_strings.py foo.tflite foo_stripped.tflite
python strip_strings.py \
--input_tflite_file=foo.tflite \
--output_tflite_file=foo_stripped.tflite
"""
from __future__ import absolute_import