add description
Browse files- .gitignore +2 -1
- 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)
|