Created
September 4, 2020 14:05
-
-
Save pranjalAI/09c36d714f3ce04af2a4dac09271c8c2 to your computer and use it in GitHub Desktop.
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 numpy as np | |
import tensorflow as tf | |
import pickle | |
from tensorflow.keras import layers , activations , models , preprocessing | |
from tensorflow.keras import preprocessing , utils | |
import os | |
import yaml | |
import json | |
import pandas as pd | |
from tensorflow.keras.callbacks import ModelCheckpoint | |
import pandas as pd | |
docs=open(r'DATASET.txt',encoding='utf-8').read().split("\n") | |
c=docs[0].strip().split("\t") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment