0
我已按照這些說明從這裏獲取我的數據,通過谷歌ML引擎從谷歌存儲桶中讀取數據。 - https://cloud.google.com/ml-engine/docs/how-tos/working-with-dataGoogle ML - 無法讀取谷歌雲存儲桶中的數據
,但似乎無法讓我的代碼從桶讀取分配權限,以我的項目按照上面的說明後..
這是代碼的樣子,顯示出來的錯誤是,這些文件無法找到
def get_model():
global MODEL
if MODEL is None:
MODEL = kenlm.Model('gs://deepspeech/data/lm/lm.binary')
return MODEL
def words(text):
"List of words in text."
return re.findall(r'\w+', text.lower())
# Load known word set
with open('gs://deepspeech/spell/words.txt') as f:
WORDS = set(words(f.read()))
就這樣我們在同一頁面上,是否有一個名爲deepspeech的存儲桶,並且它是否包含名爲「data/lm/lm.binary」的對象? –
[閱讀谷歌雲機器學習文件]的可能重複(http://stackoverflow.com/questions/42761075/reading-files-in-google-cloud-machine-learning) – rhaertel80