需要针对Google App引擎上的Tastypie错误提供一些帮助。该代码在GAE上长期运行良好。突然,在导入tastypie api时出现一些奇怪的错误。
不确定django,spastepie和python版本是否不匹配。
---- my_api.py ----
class TripletImageLoader(torch.utils.data.Dataset):
def __init__(self):
self.data = [0]*10000000
def __getitem__(self, index):
pid = os.getpid() % WORKER_SIZE
# My code here only uses pid, doesnt use index
return torch.tensor(batch.data), torch.tensor(batch.label)
def __len__(self):
return len(self.data)
----错误日志文件----
....
from django.conf import settings
from django.conf import urls
from tastypie import api >>>> cause problem <<<<