Skip to content

Instantly share code, notes, and snippets.

@ModMaamari
Created September 28, 2018 23:35
Show Gist options
  • Save ModMaamari/03d040f0809b64f6e3921eedd98c9ea9 to your computer and use it in GitHub Desktop.
Save ModMaamari/03d040f0809b64f6e3921eedd98c9ea9 to your computer and use it in GitHub Desktop.
from keras.callbacks import ModelCheckpoint
from keras.models import Sequential
from keras.layers import Dense, Activation, Flatten
from sklearn.model_selection import train_test_split
from sklearn.ensemble import RandomForestRegressor
from sklearn.metrics import mean_absolute_error
from matplotlib import pyplot as plt
import seaborn as sb
import matplotlib.pyplot as plt
import pandas as pd
import numpy as np
import warnings
warnings.filterwarnings('ignore')
warnings.filterwarnings('ignore', category=DeprecationWarning)
from xgboost import XGBRegressor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment