Carlos Ramos Carreño

Results 86 issues of Carlos Ramos Carreño

Experiments and loaders for filesystem and mongo should have a similar interface. In particular, a method such as `find_by_ids` should be available also for the filesystem loader, even if in...

Currently, the host and port should be passed as a single URL to `ExperimentLoader`. If you already have those, it should be possible to pass them instead of building the...

Path-like objects, such as those created with pathlib are now allowed as paths in the `load_svmlight_file` and `load_svmlight_files` functions. Add also a test for this functionality.

module:datasets

### What's wrong The following code raises a WPS508 code (Found incorrect `not` with compare usage): ```python if not 1.5 < my_num < 3.75: ... ``` The alternative would be:...

bug

I am trying to implement some code that creates the appropriate `ExperimentLoader` from `incense` given a particular observer. Unfortunately it seems that it is not possible to access the url...

Allows the usage of type hints in config scopes. Closes #818. Notes: - A new test is added for this behaviour. - Instead of fixing the regexp, it uses `ast`...

`Experiment` objects should be picklable, so that one can create them in Python and then run them in parallel with multiprocessing/multinode utilities. Currently, trying to pickle an Experiment gives me:...

I have a config function with a return type hint, like that: ```python @ex.config def config() -> None: """Experiment config.""" ... ``` It seems that Sacred is trying to match...

I have noticed that, if an observer failed mid-run (for example, if the Mongo database became temporarily unavailable) the heartbeats stop occurring. If the problem is solved when the experiment...

bug
feature

**Is your feature request related to a problem? Please describe.** Currently real multiline labels are not supported. If one activates word wrapping, several label widgets are created instead, one per...

enhancement