Fix python binary descriptions
PiperOrigin-RevId: 305731938 Change-Id: I1389cdfeaf5606aa6e36267e2df94427dadc5628
This commit is contained in:
parent
d3fdebcec3
commit
c4101036a8
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user