Nastasia Saby

Results 4 issues of Nastasia Saby

I serialize a model with Scikit-Learn: ``` #Generate data import pandas as pd import numpy as np df = pd.DataFrame(np.random.randn(100, 5), columns=['a', 'b', 'c', 'd', 'e']) df["y"] = (df['a'] >...

**Describe your environment.** - Python 3.7 - opencensus-ext-azure 1.0.7 - opencensus-ext-logging 0.1.0 - mlflow 1.15.0 **Steps to reproduce.** ```python import logging from opencensus.ext.azure.log_exporter import AzureLogHandler logger = logging.getLogger(__name__) logger.addHandler(AzureLogHandler(connection_string='InstrumentationKey=')) logger.warning('Hello,...

bug

I have a bug when trying to use flake8. Here is my code: ``` %pip install flake8 pycodestyle_magic %load_ext pycodestyle_magic %flake8_on a=1 ``` When doing that, I have this error:...

I'm using Pycodestyle, but can't ignore errors. My code is the following: ``` %pip install flake8 pycodestyle_magic %load_ext pycodestyle_magic %pycodestyle_on --ignore E225 a=1 ``` I'm expecting no warning, no error....