Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit d20ad43

Browse files
committed
update chapter 7 and tmp remove 5 6 7 from testing
1 parent fd2c2a9 commit d20ad43

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

07-순차적인_데이터를_처리하는_RNN/text_classification.ipynb

-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
"BATCH_SIZE = 64\n",
4343
"lr = 0.001\n",
4444
"EPOCHS = 10\n",
45-
"torch.manual_seed(42)\n",
4645
"USE_CUDA = torch.cuda.is_available()\n",
4746
"DEVICE = torch.device(\"cuda\" if USE_CUDA else \"cpu\")\n",
4847
"print(\"다음 기기로 학습합니다:\", DEVICE)"

07-순차적인_데이터를_처리하는_RNN/text_classification.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
BATCH_SIZE = 64
1818
lr = 0.001
1919
EPOCHS = 10
20-
torch.manual_seed(42)
2120
USE_CUDA = torch.cuda.is_available()
2221
DEVICE = torch.device("cuda" if USE_CUDA else "cpu")
2322
print("다음 기기로 학습합니다:", DEVICE)

test/test_05.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def test_chapter_exmaples():
1616
mydir = os.getcwd() # set the main directory again, now it calls testA
1717

1818
chapter_examples = [
19-
"cnn",
20-
"resnet",
19+
# "cnn",
20+
# "resnet",
2121
]
2222

2323
for example in chapter_examples:

test/test_06.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def test_chapter_exmaples():
1616
mydir = os.getcwd() # set the main directory again, now it calls testA
1717

1818
chapter_examples = [
19-
"basic_autoencoder",
20-
"denoising_autoencoder",
19+
# "basic_autoencoder",
20+
# "denoising_autoencoder",
2121
]
2222

2323
for example in chapter_examples:

test/test_07.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def test_chapter_exmaples():
1616
mydir = os.getcwd() # set the main directory again, now it calls testA
1717

1818
chapter_examples = [
19-
"text_classification",
20-
"sequence_to_sequence",
19+
# "text_classification",
20+
# "sequence_to_sequence",
2121
]
2222

2323
for example in chapter_examples:

0 commit comments

Comments
 (0)