Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.3k
feature: add TensorFlow 1.13 support#860
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
ab0fcae632c5c6aa2b998b4a6f6cfcbb7a6f56c4b0171c6de89c58fbFile filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -123,6 +123,18 @@ def get_config_value(key_path, config): | ||
| return current_section | ||
| def get_short_version(framework_version): | ||
laurenyu marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| """Return short version in the format of x.x | ||
| Args: | ||
| framework_version: The version string to be shortened. | ||
| Returns: | ||
| str: The short version string | ||
| """ | ||
| return ".".join(framework_version.split(".")[:2]) | ||
| def to_str(value): | ||
| """Convert the input to a string, unless it is a unicode string in Python 2. | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.