Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{caption}
  3. usepackage{adjustbox}
  4. usepackage{setspace}
  5.  
  6. usepackage[margin=1in]{geometry}
  7. usepackage{multirow,tabularx}
  8. renewcommand{tabularxcolumn}[1]{m{#1}}
  9. newcolumntype{Y}{>{centeringarraybackslash}X}
  10. renewcommand{arraystretch}{2}
  11. begin{document}pagestyle{empty}
  12.  
  13. begin{table}
  14. parbox{1linewidth}{
  15. centering
  16.  
  17. begin{tabular}{|l|l|l|}
  18. hline
  19. textbf{Dataset} &textbf{ Method }&textbf{ Best Hyperparameters } \ hline
  20. 100K & BSVD Bias & $k=50$, $gamma =0.01$, $lambda=0.1$ \hline
  21. 1M & BSVD Bias & $k=50$, $gamma =0.01$, $lambda=0.1$\ hline
  22. end{tabular}
  23.  
  24.  
  25. caption{Foo}
  26. }
  27. parbox{1linewidth}{
  28. centering
  29. begin{tabular}{|l|l|l|}
  30. hline
  31. textbf{Dataset} &textbf{ Method }&textbf{ Aerage RMSE } \ hline
  32. 100K & BSVD Bias & $0.9175$ \hline
  33. 1M & BSVD Bias & $0.8620$ \ hline
  34. end{tabular}
  35.  
  36. caption{Bar}
  37.  
  38. end{table}
  39. end{document}
  40.  
  41. documentclass{article}
  42. usepackage{caption}
  43. usepackage{adjustbox}
  44. usepackage{setspace}
  45.  
  46. usepackage[margin=1in]{geometry}
  47. usepackage{multirow,tabularx}
  48. renewcommand{tabularxcolumn}[1]{m{#1}}
  49. newcolumntype{Y}{>{centeringarraybackslash}X}
  50. renewcommand{arraystretch}{2}
  51. begin{document}pagestyle{empty}
  52.  
  53. begin{table}
  54.  
  55. centering
  56.  
  57. begin{tabular}{|l|l|l|}
  58. hline
  59. textbf{Dataset} &textbf{ Method }&textbf{ Best Hyperparameters } \ hline
  60. multirow{2}{*}{100K} & BSVD Bias & $k=50$, $gamma =0.01$, $lambda=0.1$ \cline{2-3}
  61. & Proposed Method & X\hline
  62. multirow{2}{*}{1M} & BSVD Bias & $k=50$, $gamma =0.01$, $lambda=0.1$\cline{2-3}
  63. & Proposed Method & X\
  64. hline
  65. end{tabular}
  66.  
  67. caption{Foo}
  68.  
  69. centering
  70. begin{tabular}{|l|l|l|}
  71. hline
  72. textbf{Dataset} &textbf{ Method }&textbf{ Aerage RMSE } \ hline
  73. multirow{2}{*}{100K} & BSVD Bias & $0.9175$ \cline{2-3}
  74. & Proposed Method & X \hline
  75. multirow{2}{*}{1M} & BSVD Bias & $0.8620$ \cline{2-3}
  76. & Proposed Method & X\
  77. hline
  78.  
  79. end{tabular}
  80.  
  81. caption{Bar}
  82.  
  83. end{table}
  84. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement