Log into your server with ssh, something like
ssh -i "my_secret.pem" [email protected]
If it's a new server, you'll need to install a few things.
Install conda with
############################################################# | |
##################### New Code to include ################### | |
# Run this at the start of class locally or in colab # | |
############################################################# | |
%pylab inline | |
import gensim.downloader as api | |
google_vec_file = api.load("word2vec-google-news-300", return_path=True) |
import keras | |
import numpy as np | |
import tensorflow as tf | |
from keras import backend as K | |
import seaborn as sns | |
import matplotlib.pyplot as plt | |
from sklearn import metrics | |
import functools | |
Log into your server with ssh, something like
ssh -i "my_secret.pem" [email protected]
If it's a new server, you'll need to install a few things.
Install conda with
region | area | palmitic | palmitoleic | stearic | oleic | linoleic | linolenic | arachidic | eicosenoic | ||
---|---|---|---|---|---|---|---|---|---|---|---|
1.North-Apulia | 1 | 1 | 1075 | 75 | 226 | 7823 | 672 | 36 | 60 | 29 | |
2.North-Apulia | 1 | 1 | 1088 | 73 | 224 | 7709 | 781 | 31 | 61 | 29 | |
3.North-Apulia | 1 | 1 | 911 | 54 | 246 | 8113 | 549 | 31 | 63 | 29 | |
4.North-Apulia | 1 | 1 | 966 | 57 | 240 | 7952 | 619 | 50 | 78 | 35 | |
5.North-Apulia | 1 | 1 | 1051 | 67 | 259 | 7771 | 672 | 50 | 80 | 46 | |
6.North-Apulia | 1 | 1 | 911 | 49 | 268 | 7924 | 678 | 51 | 70 | 44 | |
7.North-Apulia | 1 | 1 | 922 | 66 | 264 | 7990 | 618 | 49 | 56 | 29 | |
8.North-Apulia | 1 | 1 | 1100 | 61 | 235 | 7728 | 734 | 39 | 64 | 35 | |
9.North-Apulia | 1 | 1 | 1082 | 60 | 239 | 7745 | 709 | 46 | 83 | 33 |
import glob | |
import os | |
import time | |
import markdown2 | |
from flask import Flask, redirect, request | |
app = Flask(__name__) | |