[Tex/LaTex] How to a draw branch of a backpropagation neural network

tikz-arrowstikz-graphdrawingtikz-pgf

I need exactly this diagram drawn in LaTeX but frankly, I have absolutely no idea how to do it. I would greatly appreciate if anyone can draw it out in latex for me or could point me to a tool where I can draw it out graphically and the LaTeX is generated. Thank you so much!
enter image description here

Best Answer

From this question indexed letters inside circles there is a possibility also with tikz-cd.

enter image description here

\documentclass[12pt]{article}
\usepackage{tikz-cd,amssymb,mathtools}
\usepackage{tikz}

\newcommand\encircle[1]{%
  \tikz[baseline=(X.base)] 
    \node (X) [draw, shape=circle, inner sep=0] {\strut #1};}

\begin{document}
\begin{tikzcd}[column sep=huge]
\encircle{A} \arrow[r, "W_{AB}"] \arrow[rd, "W_{AC}",sloped,near start] & \encircle{B} \arrow[r] & \mathrm{Output}_{\text B}\\
 & \encircle{C} \arrow[r] & \mathrm{Output}_{\text C} 
\end{tikzcd}
\end{document}
Related Question