Thomasillo
Thomasillo
imho It would be a great feature if parsing of strings for timedeltas/periods were possible. e.g. ``` maya.parse_interval('1d 10min') maya.parse_interval('daily') maya.parse_interval('weekly') maya.parse_interval('biannually') maya.parse_interval('every 2 days') ``` At least the first...
Hi, I have a local config file, 'tox.ini' which contains settings for autopep8-ing my code. It is located at the project root. On the command line, running `autopep8 ugly_code.py` works...
**What steps did you take and what happened:** /kind bug ```bash $ echo "kubeflow-fairing" > test_req.in $ pip-compile -r test_req.in Could not find a version that matches kubernetes==10.0.1,>=10.0.1,>=12.0.0 (from kubeflow-fairing==1.0.2->-r...
It would be nice to have a default formatter (Inheriting from JsonFormatter) which includes all possible logRecord fields in the formatted json without the need to specify them explicitly.. This...
Following conventions for the objective functions in the ElasticNet are used: sklearn: `of = 1/2N C + \alpha \mu P_1 + 0.5 \alpha (1-\mu) P_2` McConaughy: `of = C +...
Make sure that all `score` methods of all models satisfy the sklearn convention for scores of "bigger is better".
Plotting noisy data using pandas_bokeh yields visually incorrect results. ```python import pandas as pd import pandas_bokeh import numpy as np pd.set_option('plotting.backend', 'pandas_bokeh') pandas_bokeh.output_notebook() df = pd.DataFrame(np.random.rand(2000)) assert (df.min() > 0).all()...
I am using the semantic_router.encoders.AzureOpenAIEncoder and semantic_router.llms.AzureOpenAILLM. When trying to reproduce the examples from docs/02-dynamic-routes.ipynb, but with those encoder/llm. When using semantic_route.llms.openai.get_schemas_openai, asking a RouteLayer will fail with a ValueError....
valid String template: `'$asctime $level $message'` regex for string template in [`JsonFormatter.parse`: ](https://github.com/madzak/python-json-logger/blob/5f85723f4693c7289724fdcda84cfc0b62da74d4/src/pythonjsonlogger/jsonlogger.py#L180) ```python .... elif isinstance(self._style, logging.StrFormatStyle): formatter_style_pattern = re.compile(r"\{(.+?)\}", re.IGNORECASE) ... ``` would require the string template to...