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
import tensorflow as tf | |
# These are the "givens" from the issue - essentially they're set to mimic | |
# the actual values that I ran into this issue with | |
ABSURDLY_LARGE_NUMBER = 2 * 10**17 | |
YOUR_CSV_PATH = "temp-data.csv" | |
LABEL_COLUMN = "label" | |
INPUT_SIZE = 300 | |
INPUT_COLUMNS = [ str(x) for x in range(INPUT_SIZE) ] |