Spaces:
Runtime error
Runtime error
carlfeynman
commited on
Commit
•
a1ece17
1
Parent(s):
743e054
notebook added
Browse files- mnist.ipynb +36 -0
mnist.ipynb
CHANGED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "code",
|
5 |
+
"execution_count": null,
|
6 |
+
"metadata": {},
|
7 |
+
"outputs": [],
|
8 |
+
"source": [
|
9 |
+
"import torch\n",
|
10 |
+
"from torch import nn\n",
|
11 |
+
"import torch.nn.functional as F"
|
12 |
+
]
|
13 |
+
},
|
14 |
+
{
|
15 |
+
"cell_type": "code",
|
16 |
+
"execution_count": null,
|
17 |
+
"metadata": {},
|
18 |
+
"outputs": [],
|
19 |
+
"source": []
|
20 |
+
}
|
21 |
+
],
|
22 |
+
"metadata": {
|
23 |
+
"kernelspec": {
|
24 |
+
"display_name": "python_main",
|
25 |
+
"language": "python",
|
26 |
+
"name": "python_main"
|
27 |
+
},
|
28 |
+
"language_info": {
|
29 |
+
"name": "python",
|
30 |
+
"version": "3.11.0"
|
31 |
+
},
|
32 |
+
"orig_nbformat": 4
|
33 |
+
},
|
34 |
+
"nbformat": 4,
|
35 |
+
"nbformat_minor": 2
|
36 |
+
}
|