The instructions mention:
# Step 2: Initialize segment times as empty list (≈ 1 line)
previous_segments = ...
Yet, it seems like an empty list is not of a tuple format with channels which is what the grader function is looking for.
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-23-cfc8a2ca224c> in <module>
16 print("\033[92m All tests passed!")
17
---> 18 create_training_example_test(create_training_example)
<ipython-input-23-cfc8a2ca224c> in create_training_example_test(target)
2 def create_training_example_test(target):
3 np.random.seed(18)
----> 4 x, y = target(backgrounds[0], activates, negatives, 1375)
5
6 assert type(x) == np.ndarray, "Wrong type for x"
<ipython-input-22-ea45a7eb768a> in create_training_example(background, activates, negatives, Ty)
37 for random_activate in random_activates: # @KEEP
38 # Insert the audio clip on the background
---> 39 background, segment_time = insert_audio_clip(background, random_activates, previous_segments)
40 # Retrieve segment_start and segment_end from segment_time
41 segment_start, segment_end = segment_time
<ipython-input-15-6fed76cfa826> in insert_audio_clip(background, audio_clip, previous_segments)
40 ### END CODE HERE ###
41 # Step 4: Superpose audio segment and background
---> 42 new_background = background.overlay(audio_clip, position = segment_time[0])
43 else:
44 #print("Timeouted")
/opt/conda/lib/python3.7/site-packages/pydub/audio_segment.py in overlay(self, seg, position, loop, times, gain_during_overlay)
1151 output = StringIO()
1152
-> 1153 seg1, seg2 = AudioSegment._sync(self, seg)
1154 sample_width = seg1.sample_width
1155 spawn = seg1._spawn
/opt/conda/lib/python3.7/site-packages/pydub/audio_segment.py in _sync(cls, *segs)
434 @classmethod
435 def _sync(cls, *segs):
--> 436 channels = max(seg.channels for seg in segs)
437 frame_rate = max(seg.frame_rate for seg in segs)
438 sample_width = max(seg.sample_width for seg in segs)
/opt/conda/lib/python3.7/site-packages/pydub/audio_segment.py in <genexpr>(.0)
434 @classmethod
435 def _sync(cls, *segs):
--> 436 channels = max(seg.channels for seg in segs)
437 frame_rate = max(seg.frame_rate for seg in segs)
438 sample_width = max(seg.sample_width for seg in segs)
AttributeError: 'list' object has no attribute 'channels'
All previous tests pass successfully.
