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 streamlit as st | |
# regular imports for the model | |
st.write('# Sketch to Color Image Generation using Conditional GANs') | |
# to store the model creation to cache | |
@st.cache() | |
def load_model(): | |
# load the generator model | |
return generator |
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
from time import sleep | |
from selenium import webdriver | |
from selenium.common.exceptions import ElementNotVisibleException | |
from selenium.common.exceptions import NoSuchElementException | |
import pandas as pd | |
import random | |
# define scraping function | |
def scrape_indeed(search,loc, limit = 50, canada=False): | |
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
#Import needed libraries | |
from bs4 import BeautifulSoup as bs | |
import requests as rq | |
import pygal | |
import time | |
import pygal | |
from IPython.display import display, HTML | |
base_html = """ | |
<!DOCTYPE html> |
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
################################### Keras2DML: Parallely training neural network with SystemML####################################### | |
import tensorflow as tf | |
import keras | |
from keras.models import Sequential | |
from keras.layers import Input, Dense, Conv1D, Conv2D, MaxPooling2D, Dropout,Flatten | |
from keras import backend as K | |
from keras.models import Model | |
import numpy as np | |
import matplotlib.pyplot as plt |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.