aivision2020
aivision2020
ImportError: /home/user/Projects/sixdof/sixdof_env/lib/python3.6/site-packages/g2o.cpython-36m-x86_64-linux-gnu.so: undefined symbol: _ZN3g2o17csparse_extension14writeCs2OctaveEPKcPK12cs_di_sparseb I'm using ubuntu 17.10 I don't know if this is related but I had trouble installing libqglviewer-dev: Package libqglviewer-dev is not available, but is referred...
maybe it's a pybind11 issue? this test fails pose = g2o.Isometry3d(np.eye(3), np.zeros(3)) assert pytest.approx(pose.rotation_matrix()) == np.eye(3) pose_ = copy.deepcopy(pose) assert pytest.approx(pose_.rotation_matrix()) == np.eye(3) Thanks
https://github.com/liamcli/darts_asha/blob/fc07f9aaffa1f0338c435b79725a855eca69601b/benchmarks/nas_search/cnn/darts_wrapper.py#L135 What is the purpose of opening 1 process if you're blocked until that process ends? Why not simply ``` def solver_func(self,arm,n_units): trainer = DartsTrainer(arm) trainer.epoch = arm['epochs'] return trainer.train_epochs(n_units)...