not-lain commited on
Commit
7ff9ff1
1 Parent(s): 00210e6

add description

Browse files
Files changed (2) hide show
  1. .gitignore +2 -1
  2. app.py +6 -0
.gitignore CHANGED
@@ -1,3 +1,4 @@
1
  flagged/
2
  __pycache__/
3
- test.ipynb
 
 
1
  flagged/
2
  __pycache__/
3
+ test.ipynb
4
+ test.py
app.py CHANGED
@@ -241,6 +241,12 @@ demo = gr.Interface(
241
  ["5", "5"],
242
  ["8", "2"],
243
  ],
 
 
 
 
 
 
244
  )
245
 
246
  demo.launch(debug=True)
 
241
  ["5", "5"],
242
  ["8", "2"],
243
  ],
244
+ title= "Ptorch Matrix Multiplication",
245
+ description= """There are 3 cases which are covered in the examples:
246
+ * Both matricies have dimensions bigger than 1
247
+ * One of the matracies have a single dimension
248
+ * Both Matracies have a single dimension
249
+ """,
250
  )
251
 
252
  demo.launch(debug=True)