I want horizontal lines between each row in the table. I use this code for the table. However, it shows only vertical lines.
Here is my code(Please ignore the values inside table)
\begin{table}[h]
\caption{Comparison of Accuracy, Precision and Recall}
\label{table_example}
\begin{tabular}{|c||c|c|c|c|c|c|}
\hline
Method & Accuracy & Precision & Recall \\
\hline
Author 1 (2019) & 97.93 & 76.72 & 76.72\\
\hline
Author 2 (2017) & 93.36 & 0.78 & 76.72\\
\hline
Author 3 (2019) & 0.91 & 0.90 & 76.72\\
\hline
Author 4 (2019) & 0.91 & 0.90 & 76.72\\
\hline
Author 5 (2018) & 0.91 & 0.90 & 76.72\\
\hline
Author 6 & 0.91 & 0.90 & 76.72\\
\hline
\end{tabular}
\end{table}
This is how it shows up. I tried using other browsers to view it, yet there are no horizontal lines.

Addendum: Here's what is in the preamble:
\documentclass[conference]{IEEEtran}
\usepackage[pdftex]{graphicx}
\graphicspath{{../pdf/}{../jpeg/}}
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\usepackage[cmex10]{amsmath}
\usepackage{tabularx}
\usepackage{colortbl}
\usepackage{mathabx}
\usepackage{algorithmic}
\usepackage{array}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{eqparbox}
\usepackage{url}
Edit- [SOLVED] by removing the mdwtab package

\hlines are present but white, but maybe something redefined\hline. The error is in the stuff left out of the question. Provide a short but complete sample document. – Donald Arseneau May 08 '20 at 06:36\documentclass[conference]{IEEEtran}. As others have already commented as well, the issue must be due to document setup aspects you haven't disclosed so far. Do tell us which packages are loaded in the preamble -- and in which order. – Mico May 08 '20 at 06:56\graphicspath{{../pdf/}{../jpeg/}}
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\usepackage[cmex10]{amsmath}
\usepackage{tabularx}
\usepackage{colortbl}
\usepackage{mathabx}
\usepackage{algorithmic}
\usepackage{array}
\usepackage{mdwmath}
\usepackage{mdwtab}
\usepackage{eqparbox}
\usepackage{url}
Are used in the document, in the same order
– BOO1210 May 08 '20 at 07:00