Vermilion

Results 3 comments of Vermilion

> 数据分片是为了分布式load图数据,train,test,val.id三个文件不需要 谢谢,那请问这三个文件需要如何提供给分布式的euler呢?放在本地么?

i encountered the same problem, and it was because there are files missing from the directory. please check if all of ppi-class_map.json ppi-feats.npy ppi-G.json ppi-id_map.json ppi-walks.txt ppi_data.dat ppi_data.json ppi_meta.json ppi_test.id...

I added this into inner.cpp ` py::class_(m, "UnitCommand") .def("getType",&UnitCommand::getType) .def("getUnit",&UnitCommand::getUnit) .def("getTarget",&UnitCommand::getTarget) .def("getTargetPosition",&UnitCommand::getTargetPosition) .def("getTargetTilePosition",&UnitCommand::getTargetTilePosition) .def("getUnitType",&UnitCommand::getUnitType) .def("getTechType",&UnitCommand::getTechType) .def("getUpgradeType",&UnitCommand::getUpgradeType) .def("getSlot",&UnitCommand::getSlot) .def("isQueued",&UnitCommand::isQueued);` then add `.def("getLastCommand",&UnitInterface::getLastCommand)` to Unit, at line 937. this is sufficient for...