There are no reviews yet. Be the first to send feedback to the community and the maintainers!
metabase-mongobi-connector
This repo contains the procedure for building a BI connector of Metabase which can be used to connect to the MongoDB Atlas cluster.neural-networks
This project is to train a feedforward neural network model to execute a binary coded decimal (BCD) adder problem. Ideally, we need to create a script to transform the 8-bit input into a 5-bit output which includes the carry forward bit. We are allowed to work on the design of the neural network model by experimenting with different combinations of hidden layers and neurons. We are expected to start simple and then increase the complexity as necessary.naivebayes-decisionboundaries
Naïve Bayes is a popular classification algorithm which is preferably used while dealing with datasets with categorical features. It can also be used with continuous variables but preferred when the inputs are categorical. Naïve Bayes works on an assumption that the existence of a feature in a particular class is independent of the existence of other features in all the other classes. With such assumptions made, this algorithm is referred to as Naïve. For the continuous datapoints it makes an assumption that the data is normally distributed. Naïve Bayes algorithm can outperform many other classification algorithms when working with huge datasets because of its simple functioning. The below equation is a simple Bayesian inference for finding out the posterior probabilities for winning the blackjack when getting an Ace card. P(A) = the probability of getting an Ace card P(BJ) = the probability of winning blackjack P(A | BJ) = P(BJ | A)*P(A)/P(BJ) Where, P(A | BJ) is the posterior probability P(BJ | A) is the likelihood P(A) is class prior probability P(BJ) is predictor prior probability.Love Open Source and this site? Check out how you can help us