You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 23, 2023. It is now read-only.
I use my account to aws s3 cp s3://zeroth-opensource/AUDIO_INFO AUDIO_INFO. But have as follow error:
Traceback (most recent call last):
File "/home/kaldi/python3/lib/python3.7/site-packages/awscli/customizations/s3/s3handler.py", line 173, in call
for fileinfo in fileinfos:
File "/home/kaldi/python3/lib/python3.7/site-packages/awscli/customizations/s3/fileinfobuilder.py", line 31, in call
for file_base in files:
File "/home/kaldi/python3/lib/python3.7/site-packages/awscli/customizations/s3/filegenerator.py", line 142, in call
for src_path, extra_information in file_iterator:
File "/home/kaldi/python3/lib/python3.7/site-packages/awscli/customizations/s3/filegenerator.py", line 318, in list_objects
yield self._list_single_object(s3_path)
File "/home/kaldi/python3/lib/python3.7/site-packages/awscli/customizations/s3/filegenerator.py", line 355, in _list_single_object
response = self._client.head_object(**params)
File "/home/kaldi/python3/lib/python3.7/site-packages/botocore/client.py", line 386, in _api_call
return self._make_api_call(operation_name, kwargs)
File "/home/kaldi/python3/lib/python3.7/site-packages/botocore/client.py", line 705, in _make_api_call
raise error_class(parsed_response, operation_name)
botocore.exceptions.ClientError: An error occurred (403) when calling the HeadObject operation: Forbidden
fatal error: An error occurred (403) when calling the HeadObject operation: Forbidden
2021-07-22 16:40:56,020 - Thread-1 - awscli.customizations.s3.results - DEBUG - Shutdown request received in result processing thread, shutting down result thread.
Download from AWS is failed, check your credential and configure your aws CLI
Can you help me?
AUDIOINFO='AUDIO_INFO'
AUDIOLIST=$2
bucketname="zeroth-opensource"# download audio info fileif [ !-f$data/$AUDIOINFO ];then
aws s3 cp s3://$bucketname/$AUDIOINFO$data/$AUDIOINFO
success=$(echo $?)if [ $success-ne 0 ];thenecho"Download from AWS is failed, check your credential and configure your aws CLI"exit 1
fifi# download Audioecho"Now download Audio ----------------------------------------------------"forfilein$AUDIOLISTdoecho"check if $file.tar.gz exist or not"if [ !-f$data/$file.tar.gz ];then
aws s3 cp s3://$bucketname/$file.tar.gz $data/$file.tar.gz
elseecho"$data/$file.tar.gz already exist"fidone
The text was updated successfully, but these errors were encountered:
@whaozl
95.7 hour data is not opened in public. For now public data is in http://www.openslr.org/40/, 50 hour data.
Maybe I can consider it to be opened soon.
Hey @jty016, I wonder if the more extensive dataset containing 95 hours of data is now opened to the public, or will it be in the near future? Interestingly it seems all significant Korean speech corpora are private or at least have some unreasonable restrictions, like KoSpeech.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I use my account to
aws s3 cp s3://zeroth-opensource/AUDIO_INFO AUDIO_INFO
. But have as follow error:Can you help me?
The text was updated successfully, but these errors were encountered: