作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在从事一个信息检索项目。为此,我正在使用 Google Colab。我正处于计算一些特征(“input_features”)并通过执行 for 循环获得标签(“labels”)的阶段,这花了我大约4 小时完成。
所以最后我将结果附加到一个数组中:
input_features = np.array(input_features)
labels = np.array(labels)
所以我的问题是:是否可以保存这些结果以便在将来使用 google colab 时使用它们?
我找到了 2 个可能适用的选项,但我不知道这些文件是在哪里创建的。
1) 将它们保存为 csv 文件。我的代码是:
from numpy import savetxt
# save to csv file
savetxt('input_features.csv', input_features, delimiter=',')
savetxt('labels.csv', labels, delimiter=',')
为了加载它们:
from numpy import loadtxt
# load array
input_features = loadtxt('input_features.csv', delimiter=',')
labels = loadtxt('labels.csv', delimiter=',')
# print the array
print(input_features)
print(labels)
但是当我打印时我仍然没有得到任何返回。
2) 使用 pickle 保存数组的结果,我按照此处的这些说明进行操作: https://colab.research.google.com/drive/1EAFQxQ68FfsThpVcNU7m8vqt4UZL0Le1#scrollTo=gZ7OTLo3pw8M
from google.colab import files
import pickle
def features_pickeled(input_features, results):
input_features = input_features + '.txt'
pickle.dump(results, open(input_features, 'wb'))
files.download(input_features)
def labels_pickeled(labels, results):
labels = labels + '.txt'
pickle.dump(results, open(labels, 'wb'))
files.download(labels)
并加载它们:
def load_from_local():
loaded_features = {}
uploaded = files.upload()
for input_features in uploaded.keys():
unpickeled_features = uploaded[input_features]
loaded[input_features] = pickle.load(BytesIO(data))
return loaded_features
def load_from_local():
loaded_labels = {}
uploaded = files.upload()
for labels in uploaded.keys():
unpickeled_labels = uploaded[labels]
loaded[labels] = pickle.load(BytesIO(data))
return loaded_labes
#How do I print the pickled files to see if I have them ready for use???
当使用 python 时,我会为 pickle 做这样的事情:
#Create pickle file
with open("name.pickle", "wb") as pickle_file:
pickle.dump(name, pickle_file)
#Load the pickle file
with open("name.pickle", "rb") as name_pickled:
name_b = pickle.load(name_pickled)
但问题是我没有在我的谷歌驱动器中看到要创建的任何文件。
我的代码是否正确或是否遗漏了部分代码?
长篇描述是为了详细解释我想做什么以及我为这个问题做了什么。
预先感谢您的帮助。
最佳答案
Google Colaboratory notebook 实例永远无法保证在您断开连接并重新连接时能够访问相同的资源,因为它们是在虚拟机上运行的。因此,您无法在 Colab 中“保存”您的数据。以下是一些解决方案:
关于arrays - 使用 Google Colab 时如何保存 np.array 的结果以供将来使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61682279/
我是一名优秀的程序员,十分优秀!