1

私のアプリケーションは、非常に大きなマトリックスを保存してアクセスする必要があります。これにはdok_matrixを使用しますが、ファイルをメモリマップできないようです。エラーが発生します:配列をメモリマップできません:dtypeのPythonオブジェクト。

コードは次のとおりです。

def __init__(self, ratings_file):

    try:
        self.ratings = np.load(ratings_file, mmap_mode='r+')
        self.n_users = self.ratings.shape[0]
        self.n_items = self.ratings.shape[1]
    except IOError:
        self.ratings = None
        self.n_users = 0
        self.n_items = 0

def add_ratings(self, ratings):
    # update the number of users and items
    self.n_users = max(self.n_users, max([r[0] for r in ratings]) + 1)
    self.n_items = max(self.n_items, max([r[1] for r in ratings]) + 1)

    # reshape (or create) the matrix
    if not self.ratings:
        self.ratings = dok_matrix((self.n_users, self.n_items), dtype=np.dtype(np.float32))
    else:
        self.ratings.resize((self.n_users, self.n_items))

    print 'Num. users: ', self.n_users
    print 'Num. items: ', self.n_items

def update_model(self):
    raise NotImplementedError()

def save(self):
    np.save(self._ratings_file, self.ratings)

何か助けはありますか?ありがとう

4

1 に答える 1

0

行 self.ratings = dok_matrix((self.n_users, self.n_items), dtype=np.dtype(np.float32)) では、なぜtypeこの複合物と等しいのnp.float32ですか? float の行列が必要だと言っているだけではありませんか?

于 2012-12-10T14:47:56.173 に答える