Download the windows image you want.
AWS vmimport supported versions: Microsoft Windows 10 (Professional, Enterprise, Education) (US English) (64-bit only)
So Home wont work.
# Toy examples that demonstrate how to configure | |
# nolearn.lasagne.NeuralNet and what data to send in for | |
# classification problems with single and multiple classes, and | |
# regression problems with and without multiple targets. | |
from lasagne.layers import DenseLayer | |
from lasagne.layers import InputLayer | |
from lasagne.nonlinearities import softmax | |
from nolearn.lasagne import NeuralNet | |
import numpy as np |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import sys | |
import math | |
import numpy as np | |
sys.path.append('xgboost/wrapper/') | |
import xgboost as xgb |