We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can someone help me with issue?
when i am trying to run this block
fname = 'glove.6B.%dd.txt'%embedding_dim import os datadir_base = os.path.expanduser(os.path.join('~', '.keras')) if not os.access(datadir_base, os.W_OK): datadir_base = os.path.join('/tmp', '.keras') datadir = os.path.join(datadir_base, 'datasets') glove_name = os.path.join(datadir, fname) if not os.path.exists(glove_name): path = 'glove.6B.zip' path = get_file(path, origin="http://nlp.stanford.edu/data/glove.6B.zip") !unzip {datadir}/{path}
i am getting this error
'unzip' is not recognized as an internal or external command, operable program or batch file.
The text was updated successfully, but these errors were encountered:
I am facing the same issue. If you have found the solution then please provide it to me
Sorry, something went wrong.
Do you have unzip installed in your command line?
No branches or pull requests
Can someone help me with issue?
when i am trying to run this block
fname = 'glove.6B.%dd.txt'%embedding_dim
import os
datadir_base = os.path.expanduser(os.path.join('~', '.keras'))
if not os.access(datadir_base, os.W_OK):
datadir_base = os.path.join('/tmp', '.keras')
datadir = os.path.join(datadir_base, 'datasets')
glove_name = os.path.join(datadir, fname)
if not os.path.exists(glove_name):
path = 'glove.6B.zip'
path = get_file(path, origin="http://nlp.stanford.edu/data/glove.6B.zip")
!unzip {datadir}/{path}
i am getting this error
'unzip' is not recognized as an internal or external command,
operable program or batch file.
The text was updated successfully, but these errors were encountered: