Skip to content

Commit 1af967b

Browse files
committed
Change executable name for torch.
s/torch/th in 2_supervised
1 parent 681e32a commit 1af967b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

2_supervised/1_data.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
-- to the quite known MNIST challenge.
88
--
99
-- It's a good idea to run this script with the interactive mode:
10-
-- $ torch -i 1_data.lua
10+
-- $ th -i 1_data.lua
1111
-- this will give you a Torch interpreter at the end, that you
1212
-- can use to analyze/visualize the data you've just loaded.
1313
--

2_supervised/2_model.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
-- + convolutional network (ConvNet)
77
--
88
-- It's a good idea to run this script with the interactive mode:
9-
-- $ torch -i 2_model.lua
9+
-- $ th -i 2_model.lua
1010
-- this will give you a Torch interpreter at the end, that you
1111
-- can use to play with the model.
1212
--

2_supervised/A_slicing.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- This script demonstrates tensor slicing / manipulation.
55

66
-- To run this script, simply do:
7-
-- torch slicing.lua
7+
-- $ th A_slicing.lua
88
-- and then press 'y' or 'return' at each step, to keep going.
99

1010
-- little function to pause execution, and request user input

0 commit comments

Comments
 (0)