Sebastien commited on
Commit
946af58
·
1 Parent(s): c67e02c

add paper link

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -86,7 +86,10 @@ def build_grid_and_display(str_grid):
86
  test_x = build_tensor_out_of_grid(str_grid)
87
  return test_x, display_as_dataframe(test_x)
88
  st.markdown('# Deep learning sudoku Solver')
89
- st.markdown('### Author: Sébastien Guissart')
 
 
 
90
 
91
  option = st.selectbox(
92
  "select template grids",
 
86
  test_x = build_tensor_out_of_grid(str_grid)
87
  return test_x, display_as_dataframe(test_x)
88
  st.markdown('# Deep learning sudoku Solver')
89
+ st.markdown('''### Author: Sébastien Guissart
90
+
91
+ Detailed method in this [paper](https://huggingface.co/spaces/SebastienGuissart/deeplearning_sudoku_solver/blob/main/100%25%20accurate%20Sudoku%20solving%20with%20deep%20learning%20algorithm.pdf)
92
+ ''')
93
 
94
  option = st.selectbox(
95
  "select template grids",