com.mayabot.nlp.common.matrix.CSRSparseMatrix Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mynlp Show documentation
Show all versions of mynlp Show documentation
Maya Nlp subproject :mynlp
/*
* Copyright 2018 mayabot.com authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.mayabot.nlp.common.matrix;
import com.google.common.collect.Table;
import com.google.common.collect.TreeBasedTable;
import com.mayabot.nlp.utils.DataInOutputUtils;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Map;
/**
* 稀疏矩阵CSR.
*
* @author jimichan
*/
public class CSRSparseMatrix implements Serializable {
private int[] rowOffset;
private int[] columnIndices;
private int[] values;
// private BitSet collBitSet = new BitSet();
public CSRSparseMatrix(int[] rowOffset, int[] columnIndices, int[] values) {
this.rowOffset = rowOffset;
this.columnIndices = columnIndices;
this.values = values;
}
public int[] getRowOffset() {
return rowOffset;
}
public int[] getColumnIndices() {
return columnIndices;
}
public int[] getValues() {
return values;
}
public CSRSparseMatrix() {
}
public CSRSparseMatrix(TreeBasedTable table, int totalRow) {
int size = table.size();
values = new int[size];
columnIndices = new int[size];
this.rowOffset = new int[totalRow + 1];
// collBitSet = new BitSet(totalRow + 1);
//rowOffset[0]=0;
int point = -1;
int inSize = 0;
for (Integer rowNum : table.rowKeySet()) {
Map row = table.row(rowNum);
inSize += row.size();
rowOffset[rowNum + 1] = inSize;
for (Map.Entry entry : row.entrySet()) {
point++;
// collBitSet.set(entry.getKey());
columnIndices[point] = entry.getKey();
values[point] = entry.getValue();
}
}
int x = 0;
for (int i = 0; i < this.rowOffset.length; i++) {
int p = this.rowOffset[i];
if (p > 0) {
x = p;
} else {
this.rowOffset[i] = x;
}
}
}
public void writeExternal(ObjectOutput out) throws IOException {
DataInOutputUtils.writeIntArray(this.getColumnIndices(), out);
DataInOutputUtils.writeIntArray(this.getRowOffset(), out);
DataInOutputUtils.writeIntArray(this.getValues(), out);
// out.writeObject(collBitSet);
}
public void readExternal(ObjectInput in) throws IOException {
this.columnIndices = DataInOutputUtils.readIntArray(in);
rowOffset = DataInOutputUtils.readIntArray(in);
values = DataInOutputUtils.readIntArray(in);
// this.collBitSet = (BitSet) in.readObject();
}
/**
* 获得矩阵的cell值
*
* @param row
* @param col
* @return int
*/
public final int get(int row, int col) {
if (row < 0 || col < 0) {
return 0;
}
int off = rowOffset[row];
int end = rowOffset[row + 1];
if (off == end) {
return 0;
}
// if (!collBitSet.get(col)) {
// return 0;
// }
//columnIndices
final int index = Arrays.binarySearch(columnIndices, off, end, col);
if (index >= 0) {
return values[index];
}
return 0;
}
public static void main(String[] args) {
TreeBasedTable table = TreeBasedTable.create();
table.put(2, 0, 6);
table.put(3, 2, 4);
table.put(0, 0, 5);
table.put(0, 3, 2);
table.put(4, 1, 2);
table.put(4, 4, 9);
CSRSparseMatrix csr = new CSRSparseMatrix(table, 5);
for (Table.Cell cell : table.cellSet()) {
if (csr.get(cell.getRowKey(), cell.getColumnKey()) == cell.getValue()) {
System.out.println(String.format("%d->%d = %d", cell.getRowKey(), cell.getColumnKey(), cell.getValue()));
} else {
System.out.println("ERROR");
}
}
}
}