This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Replace BRANCH and USERNAME with your branch name and GitHub username respectively | |
| git clone -b BRANCH https://github.com/USERNAME/keras.git | |
| cd keras | |
| pip install -r requirements.txt | |
| pip uninstall -y keras-nightly | |
| pip installβ--upgrade tf-nightly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir keras_installation | |
| cd keras_installation | |
| mkdir keras_env | |
| python3 -m venv keras_env | |
| source keras_env/bin/activate |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Install the latest version of Bazel. At the time of writing, the latest version was 4.2.1. | |
| wget https://github.com/bazelbuild/bazel/releases/download/4.2.1/bazel-4.2.1-installer-linux-x86_64.sh | |
| chmod +x bazel-4.2.1-installer-linux-x86_64.sh | |
| ./bazel-4.2.1-installer-linux-x86_64.sh | |
| export PATH="$PATH:$HOME/bin" | |
| bazel |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| βββ train/ | |
| β βββ n01440764/ | |
| β β βββ n01440764_001.JPEG | |
| β β βββ n01440764_002.JPEG | |
| β β βββ ... | |
| β βββ n01943899/ | |
| β β βββ ... | |
| β βββ n02105056/ | |
| β β βββ ... |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """Script to make and save TFRecords from ImageNet files""" | |
| import tensorflow as tf | |
| import os | |
| import random | |
| import json | |
| import math | |
| import time | |
| from .image_utils import * |
NewerOlder