An error occurred while executing the following cell: ------------------ subject = "16" motion = ["02", "21"] data = pods.datasets.cmu_mocap(subject, motion) ------------------ --------------------------------------------------------------------------- StdinNotImplementedError Traceback (most recent call last) /tmp/ipykernel_4825/1995362234.py in 1 subject = "16" 2 motion = ["02", "21"] ----> 3 data = pods.datasets.cmu_mocap(subject, motion) ~/miniconda3/envs/py37/lib/python3.7/site-packages/pods/datasets.py in cmu_mocap(subject, train_motions, test_motions, sample_every, data_set) 2372 access.data_resources[data_set]["urls"] = resource["urls"] 2373 if resource["urls"]: -> 2374 access.download_data(data_set) 2375 skel = mocap.acclaim_skeleton(os.path.join(subject_dir, subject + ".asf")) 2376 ~/miniconda3/envs/py37/lib/python3.7/site-packages/pods/access.py in download_data(dataset_name, prompt) 203 204 dr = data_resources[dataset_name] --> 205 if not authorize_download(dataset_name, prompt=prompt): 206 raise Exception("Permission to download data set denied.") 207 ~/miniconda3/envs/py37/lib/python3.7/site-packages/pods/access.py in authorize_download(dataset_name, prompt) 311 print(dr["license"]) 312 print("") --> 313 return prompt("Do you wish to proceed with the download? [yes/no]") 314 315 def pmlr_proceedings_list(data_set): ~/miniconda3/envs/py37/lib/python3.7/site-packages/pods/access.py in prompt_stdin(prompt) 50 print(prompt) 51 if sys.version_info >= (3, 0): ---> 52 choice = input().lower() 53 else: 54 choice = raw_input().lower() ~/miniconda3/envs/py37/lib/python3.7/site-packages/ipykernel/kernelbase.py in raw_input(self, prompt) 1173 if not self._allow_stdin: 1174 raise StdinNotImplementedError( -> 1175 "raw_input was called, but this frontend does not support input requests." 1176 ) 1177 return self._input_request( StdinNotImplementedError: raw_input was called, but this frontend does not support input requests. StdinNotImplementedError: raw_input was called, but this frontend does not support input requests.