Trym Bremnes
Trym Bremnes
Is it possible to somehow indicate that a word shall not be translated with EasyNMT? Say that I have this string: ```python my_string = "Please do not translate this name:...
This commit was prompted by the following error message: ``` Error: /go/pkg/mod/golang.org/x/[email protected] 921286631fa9/slog/level.go:159:13: undefined: atomic.Int64 ``` This indicates that the `go` version used by this project is too old to...
Unless the targeted python version is exactly the default python version for `ubuntu 18.04`. If we are targeting a specific python version it should be made explicit.
Similar to https://github.com/nlnwa/warchaeology/issues/89, we should also run our tests on MacOS
We currently run no tests on `Windows`, which we should in theory support. It should be relatively straightforward to enable testing for `Windows`, unless the tests fails.
Not all of the sub-linters of `golang-ci` should be used, and this issue needs to determine what errors should be fixed, and which ones should be left disabled.
It is my hope that we can use [pybind11's return value polic](https://pybind11-rtdtest.readthedocs.io/en/stable/advanced.html#return-value-policies)y to remove the need of having cameras/point clouds/application as releasable objects. Specifically: `return_value_policy::take_ownership`, which gives the python code...
Origin: https://github.com/zivid/zivid-python/issues/34 Use pip to find latest version from pypi, download http://www.zivid.com/hubfs/softwarefiles/latest_version and compare. Whenever we release a newer SDK version, the current advertised readme should not stop working. `pip...
The C++ layer does expose `==` and `!=` operators, similar special member functions `__eq__` and `__ne__` should rely on these.
`__enter__`, `__exit__`, `__del__` and `release` are duplicated in many of the classes in `modules/zivid` This could be fixed by adding, for example, and decorator: ``` @utils.context_manager class SomethingThatRequiresContextManager: .... ```