Skip to content

Commit a98e4a6

Browse files
Shorna AlamShorna Alam
Shorna Alam
authored and
Shorna Alam
committed
added alterations to lab1 solutions (part1 and part2)
1 parent 61edcc0 commit a98e4a6

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

lab1/solutions/Part1_TensorFlow_Solution.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"source": [
9696
"%pip install comet_ml\n",
9797
"import comet_ml\n",
98-
"comet_ml.init(project_name=\"6.s191lab1.1.0\")\n",
98+
"comet_ml.init(project_name=\"6.s191lab1_part0\")\n",
9999
"comet_experiment = comet_ml.Experiment()"
100100
]
101101
},

lab1/solutions/Part2_Music_Generation_Solution.ipynb

+13-5
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
"source": [
196196
"%pip install comet_ml\n",
197197
"import comet_ml\n",
198-
"comet_ml.init(project_name=\"6.s191lab1.2\")\n",
198+
"comet_ml.init(project_name=\"6.s191lab1_part2\")\n",
199199
"comet_experiment = comet_ml.Experiment()\n",
200200
"\n",
201201
"# Import Tensorflow 2.0\n",
@@ -219,7 +219,9 @@
219219
"\n",
220220
"# Check that we are using a GPU, if not switch runtimes\n",
221221
"# using Runtime > Change Runtime Type > GPU\n",
222-
"assert len(tf.config.list_physical_devices('GPU')) > 0"
222+
"assert len(tf.config.list_physical_devices('GPU')) > 0\n",
223+
"\n",
224+
"from scipy.io.wavfile import write"
223225
]
224226
},
225227
{
@@ -1099,8 +1101,7 @@
10991101
" model.save_weights(checkpoint_prefix)\n",
11001102
" \n",
11011103
"# Save the trained model and the weights\n",
1102-
"model.save_weights(checkpoint_prefix)\n",
1103-
"comet_experiment.end()\n"
1104+
"model.save_weights(checkpoint_prefix)\n"
11041105
]
11051106
},
11061107
{
@@ -1275,7 +1276,14 @@
12751276
" # If its a valid song (correct syntax), lets play it! \n",
12761277
" if waveform:\n",
12771278
" print(\"Generated song\", i)\n",
1278-
" ipythondisplay.display(waveform)"
1279+
" ipythondisplay.display(waveform)\n",
1280+
"\n",
1281+
" numeric_data = np.frombuffer(waveform.data, dtype=np.int16)\n",
1282+
" wav_file_path = f\"output_{i}.wav\"\n",
1283+
" write(wav_file_path, 88200, numeric_data)\n",
1284+
" comet_experiment.log_asset(wav_file_path)\n",
1285+
" \n",
1286+
"comet_experiment.end()"
12791287
]
12801288
},
12811289
{

0 commit comments

Comments
 (0)