Answered step by step
Verified Expert Solution
Question
1 Approved Answer
def naivebayesPY ( X , Y ) : naivebayesPY ( X , Y ) returns [ pos , neg ] Computation of
def naivebayesPYX Y:
naivebayesPYX Y returns posneg
Computation of PY
Input:
X : n input vectors of d dimensions nxd
Y : n labels or nx
Output:
pos: probability py
neg: probability py
# add one positive and negative example to avoid division by zero plusone smoothing"
Y npconcatenateY
n lenY
# YOUR CODE HERE
raise NotImplementedError
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started