This file contains 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
# -*- coding: utf-8 -*- | |
################################################################################ | |
## Form generated from reading UI file 'main.ui' | |
## | |
## Created by: Qt User Interface Compiler version 6.5.0 | |
## | |
## WARNING! All changes made in this file will be lost when recompiling UI file! | |
################################################################################ |
This file contains 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 tensorflow as tf | |
import numpy as np | |
# Definindo o modelo da rede neural | |
model = tf.keras.Sequential([ | |
tf.keras.layers.Dense(9, activation='relu', input_shape=(9,)), | |
tf.keras.layers.Dense(9, activation='relu'), | |
tf.keras.layers.Dense(1, activation='sigmoid') | |
]) |
This file contains 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
mport requests | |
import time | |
headers = { | |
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:100.0) Gecko/20100101 Firefox/100.0', | |
'Accept': 'application/json', | |
'Accept-Language': 'pt-BR,pt;q=0.8,en-US;q=0.5,en;q=0.3', | |
'Origin': 'https://temp-mail.org', | |
'Connection': 'keep-alive', | |
'Referer': 'https://temp-mail.org/', |