Skip to content

Instantly share code, notes, and snippets.

View oiacrasec's full-sized avatar

Caio César Lima Borges oiacrasec

  • Datasync
  • Goiânia - GO
View GitHub Profile
<ows:ExceptionReport
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:ows="http://www.opengis.net/ows"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0.0" xsi:schemaLocation="http://www.opengis.net/ows http://IP:PORT(I removed)/geoserver/schemas/ows/1.0.0/owsExceptionReport.xsd">
<ows:Exception exceptionCode="NoApplicableCode">
<ows:ExceptionText>No such feature type http://IP:PORT(I REMOVED)/geoserver/CARBONITA:bairros</ows:ExceptionText>
</ows:Exception>
</ows:ExceptionReport>
from unittest import TestCase
import numpy as np
import matplotlib.pyplot as plt
class Perceptron(object):
def __init__(self, numero_entradas, loop=100, taxa_aprendizado=0.01, bias=1.0, pesos=None):
self.threshold = loop
self.learning_rate = taxa_aprendizado
@oiacrasec
oiacrasec / keras-mlp.ipynb
Created May 5, 2019 20:19
Keras-MLP.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.