Hello, I have the following code:
import csv
def carregar_acessos():
X = []
Y = []
arquivo = open('acesso_pagina.csv', 'rb')
leitor = csv.reader(arquivo)
next(leitor)
for home,como_funciona,contato,comprou in leito...
I would like to understand how I can put into practice in some system, the model that I create with Deep learning or machine learning. I see several tutorials teaching to create a very simple structure of deep learning, and in the end bringing r...
I would like to create a neural network that returns 1 (one) for a specific case and 0 (zero) for all the others.
The idea would be:
import numpy as np
import pandas as pd
from sklearn.preprocessing import MaxAbsScaler
from sklearn.neural_n...
Weak AI is about building software in a smart way. Can all logic processed by a computer be considered as weak AI? or only falls within this category those structures that we see or hear speak in this discipline, For example: Genetic Algorithms,...
I'm learning machine learning techniques to predict (numeric) sheet size values from multiple (numeric) predictors. However, leaf sizes are conditioned to the way of life, (trees or grams), which are not balanced. At the moment, I'm creating dat...
Good evening!
I'm trying to build a neural network in python using tensorflow and its other libraries, my doubt and, I have 4 classes and I need to do a training of them I have many images for each class, I need to use neural network CNN I un...
I would like to know how the probabilistic topic model, Latent Dirichlet allocation (LDA) works:
What applications does it have?
Example of implementation in a programming language?
I'm trying to apply the NMF algorithm in a csv and then extract the phrases attached to each topic
import pandas
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.decomposition import NMF
def display_topics(model, featu...
I'm new to Python and new to Machine Learning. I built an algorithm for it to be trained to classify texts. So you can predict in which category a particular text fits.
Training and score are working. Now, my question is with regard to new da...
I am a layman in machine-learning I started a course in Alura about system class using pip however does not solve my problem, I would like a library for a system recommendation , I would collect data related to each game of an electronic ga...