Omry Yadan

Results 31 issues of Omry Yadan

Parametrized nox sessions names typically contains round brackets, for example `test_plugins-3.6(pip install)`. This makes them difficult to use as is in the shell, because the shell is parsing those brackets,...

enhancement
help wanted
open collective eligible

Hi, I noticed you are using OmegaConf and I think [Hydra](https://hydra.cc) would be an even better fit for a project like this. Please give it a shot. if you have...

enhancement

Hi, thanks for your interest in Hydra. I see that you are depending on internal [APIs here](https://github.com/imito/odin-ai/blob/8305339e021ff9142858e5a84c024271dd8cbfbf/odin/exp/experimenter.py#L194-L195 ). The way you are using Hydra now can probably best be addressed...

First of all, I must say I like pencil. I looked at all (I think) of the other dashboards, and pencil is the only one that comes close to what...

Hi, I have the a problem with a combined graph (cluster view) of a series I need to run through derivative. The correct form should be: sumSeries(derivative({web*}.network.netstat.active) but instead pencil...

#! /bin/sh ### BEGIN INIT INFO # Provides: pencil # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description:...

I`m trying to build a CPU usage graph, and I can't figure out how to run derivative on the series. can you please improve the doc to include such an...

Can you add conda environment support? per [this](https://stackoverflow.com/questions/47608532/how-to-detect-from-within-python-whether-packages-are-managed-with-conda/47610844#47610844) post: This works: ``` import sys, os is_conda = os.path.exists(os.path.join(sys.prefix, 'conda-meta')) ``` verified it on a conda environment with python 2.7 and...

Hi, this is for the open source project Hydra (https://github.com/facebookresearch/hydra). The Alexa rank and GitHub stars are not there yet but they are improving. The project already have over 800...

new icon
assessing

With Pytest I routinely nest parameterizations. ``` @parameterized_class( "X", [1, 2], ) @parameterized_class( "Y", [10, 20], ) class TestTutorials(unittest.TestCase): def test_stuff(self): ... ``` I tried something similar got got an...