Azure / MachineLearningNotebooks

Python notebooks with ML and deep learning examples with Azure Machine Learning Python SDK | Microsoft
https://docs.microsoft.com/azure/machine-learning/service/
MIT License
4.09k stars 2.52k forks source link

[Azure-Machine learning] ValidationException while running Auto ML #1263

Closed NSVR57 closed 3 years ago

NSVR57 commented 3 years ago

Hi ,

I am trying to execute the automl experiment on custom data set, but i am getting the following error . can you please help on this.

import logging

automl_settings = {
    "iteration_timeout_minutes": 10,
    "experiment_timeout_hours": 0.3,
    "enable_early_stopping": True,
    "primary_metric": 'r2_score',
    "featurization": 'auto',
    "verbosity": logging.INFO,
    "n_cross_validations": 5
}
from azureml.train.automl import AutoMLConfig
automl_config=AutoMLConfig(task='regression',debug_log='automated_ml_errors.log',
                             training_data=x_train,
                             label_column_name="sold_price",
                             **automl_settings)
from azureml.core import Experiment
experiment=Experiment(ws, 'sample-price')
experiment.submit(automl_config,show_output=True)
and error is:

ValidationException                       Traceback (most recent call last)
<ipython-input-85-0519fb6f2be1> in <module>
      1 from azureml.core import Experiment
      2 experiment=Experiment(ws, 'sample-price')
----> 3 experiment.submit(automl_config,show_output=True)

/anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/core/experiment.py in submit(self, config, tags, **kwargs)
    218         submit_func = get_experiment_submit(config)
    219         with self._log_context("submit config {}".format(config.__class__.__name__)):
--> 220             run = submit_func(config, self.workspace, self.name, **kwargs)
    221         if tags is not None:
    222             run.set_tags(tags)

/anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/train/automl/automlconfig.py in _automl_static_submit(automl_config_object, workspace, experiment_name, **kwargs)
     98             compute_target,
     99             parent_run_id,
--> 100             show_output)
    101 
    102         automl_run.add_properties(global_tracking_info_registry.gather_all(settings.path))

/anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/train/automl/automlconfig.py in _start_execution(experiment, settings_obj, fit_params, run_config, compute_target, parent_run_id, show_output)
    197             package_utilities._get_package_incompatibilities(
    198                 packages=package_utilities.AUTOML_PACKAGES,
--> 199                 ignored_dependencies=package_utilities._PACKAGES_TO_IGNORE_VERSIONS
    200             )
    201         automl_run = _default_execution(experiment, settings_obj, fit_params, True, show_output, parent_run_id)

/anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/automl/core/package_utilities.py in _get_package_incompatibilities(packages, ignored_dependencies, is_databricks_run)
    428                         missing_packages_message='\n'.join(messages),
    429                         reference_code=ReferenceCodes._PACKAGE_INCOMPATIBILITIES_FOUND,
--> 430                         validated_requirements_file_path=VALIDATED_REQ_FILE_PATH
    431                     )
    432                 )

ValidationException: ValidationException:
    Message: Install the required versions of packages using the requirements file. Requirements file location: /anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/automl/core/validated_linux_requirements.txt. Alternatively, use remote target to avoid dependency management. 
Package name/Required version/Installed version
azureml-core/pyopenssl<20.0.0/pyOpenSSL 20.0.0
    InnerException: None
    ErrorResponse 
{
    "error": {
        "code": "UserError",
        "message": "Install the required versions of packages using the requirements file. Requirements file location: /anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/automl/core/validated_linux_requirements.txt. Alternatively, use remote target to avoid dependency management. \nPackage name/Required version/Installed version\nazureml-core/pyopenssl<20.0.0/pyOpenSSL 20.0.0",
        "target": "azureml-core",
        "inner_error": {
            "code": "NotSupported",
            "inner_error": {
                "code": "IncompatibleOrMissingDependency"
            }
        },
        "reference_code": "435ab938-fd87-49bc-932e-6eec0d6aee4f"
    }
}
rtanase commented 3 years ago

Hi @NSVR57, it looks like some of the your locally installed dependencies are not matching the requirements of AutoML for local training. How did you create your local environment?

There are several ways to fix this error: 1) Use a remote compute for training, in which case AutoML will be handling the environment configuration to be used during training. 2) Create a new Compute Instance and try running the local training from within the notebook. The conda environment that ships with Compute Instance should already be compliant with AutoML requirements. 3) Following the error message, you could use the validated_linux_requirements.txt found at that local path to construct a conda environment that will be compatible with local AutoML training. You could also follow the instructions from this page (https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/automated-machine-learning#setup-using-a-local-conda-environment) to setup a local environment.

Please let us know if you're still having trouble with this issue. Thanks!

gianmarcogenalti commented 3 years ago

Hi @NSVR57, on an online notebook of Azure (I used the same as yours) I solved the same issue by changing the interpreter from Python 3.6 ML to Python 3!

ForrestTrepte commented 3 years ago

I encountered the same error when running the AutoML tutorial with the tutorials/regression-automl-nyc-taxi-data/regression-automated-ml.ipynb notebook. I created a compute VM using the Azure Machine Learning workspace so it seems like that should have had a Python environment already configured to work with AutoML and the tutorial, but that didn't seem to work in my case.

I fixed this by clicking *Open terminal (preview)" on the toolbar in the left-hand pane to open a command window and executed the following command: pip install -r /anaconda/envs/azureml_py36/lib/python3.6/site-packages/azureml/automl/core/validated_linux_requirements.txt

Then, after resetting and rerunning my tutorial notebook, it executed training without the above ValidationException error.

kgpyi commented 3 years ago

Hi, did it get solved, I am facing the same thing! I tried the suggestions given here, but it is not working.

rtanase commented 3 years ago

@kgpyi , do you mind pasting some details from your environment (conda list or pip list output) along with the error you were seeing (which package was it detecting as not compatible)?

Did you restart your kernel after installing / upgrading the pip packages?

marcindulak commented 3 years ago

Possibly related to https://github.com/Azure/MachineLearningNotebooks/issues/842

CESARDELATORRE commented 3 years ago

Closing this issue since there was not follow up after requesting additional details. Please, re-open issue if it's still happening and you can provide further details about it:

joslat commented 2 years ago

Hi, @CESARDELATORRE, I am getting this exact issue again, in Azure ML. I am using a default suggested compute node, STANDARD_DS12_V2 created on May 29, 2022 2:30 PM.

I am trying to fix it using this command as suggested above, but adjusted to the current python version: pip install -r /anaconda/envs/azureml_py38/lib/python3.8/site-packages/azureml/automl/core/validated_linux_requirements.txt

Which seems to be working... :)

IMHO this worked before out of the box without installing/resolving dependencies. so it basically seems that the compute images are set up without the proper dependencies.

(Dependencies before executing the pip install command) azureuser@ndc-compute:~$ conda list

packages in environment at /anaconda/envs/azureml_py38:

#

Name Version Build Channel

_libgcc_mutex 0.1 main
_openmp_mutex 4.5 1_gnu
_py-xgboost-mutex 2.0 cpu_0
_pytorch_select 0.1 cpu_0
absl-py 0.15.0 pypi_0 pypi adal 1.2.7 pypi_0 pypi adlfs 2022.4.0 pypi_0 pypi aiohttp 3.8.1 pypi_0 pypi aiohttp-cors 0.7.0 pypi_0 pypi aiosignal 1.2.0 pypi_0 pypi alembic 1.7.7 pypi_0 pypi ansiwrap 0.8.4 pypi_0 pypi antlr4-python3-runtime 4.7.2 pypi_0 pypi anyio 3.5.0 pypi_0 pypi applicationinsights 0.11.10 pypi_0 pypi arch 4.14 pypi_0 pypi argcomplete 2.0.0 pypi_0 pypi argon2-cffi 21.3.0 pypi_0 pypi argon2-cffi-bindings 21.2.0 pypi_0 pypi arviz 0.11.2 pyhd3eb1b0_0
asgiref 3.5.1 pypi_0 pypi astroid 2.11.5 pypi_0 pypi asttokens 2.0.5 pyhd3eb1b0_0 anaconda astunparse 1.6.3 pypi_0 pypi async-timeout 4.0.2 pypi_0 pypi attrs 21.4.0 pypi_0 pypi auto-tqdm 1.0.2 pypi_0 pypi autokeras 1.0.16 pypi_0 pypi autopep8 1.6.0 pypi_0 pypi azure-appconfiguration 1.1.1 pypi_0 pypi azure-batch 12.0.0 pypi_0 pypi azure-cli 2.36.0 pypi_0 pypi azure-cli-core 2.36.0 pypi_0 pypi azure-cli-telemetry 1.0.6 pypi_0 pypi azure-common 1.1.28 pypi_0 pypi azure-core 1.23.1 pypi_0 pypi azure-cosmos 3.2.0 pypi_0 pypi azure-data-tables 12.2.0 pypi_0 pypi azure-datalake-store 0.0.52 pypi_0 pypi azure-graphrbac 0.61.1 pypi_0 pypi azure-identity 1.7.0 pypi_0 pypi azure-keyvault 1.1.0 pypi_0 pypi azure-keyvault-administration 4.0.0b3 pypi_0 pypi azure-keyvault-keys 4.5.1 pypi_0 pypi azure-loganalytics 0.1.1 pypi_0 pypi azure-mgmt-advisor 9.0.0 pypi_0 pypi azure-mgmt-apimanagement 3.0.0 pypi_0 pypi azure-mgmt-appconfiguration 2.1.0b2 pypi_0 pypi azure-mgmt-applicationinsights 1.0.0 pypi_0 pypi azure-mgmt-authorization 2.0.0 pypi_0 pypi azure-mgmt-batch 16.1.0 pypi_0 pypi azure-mgmt-batchai 7.0.0b1 pypi_0 pypi azure-mgmt-billing 6.0.0 pypi_0 pypi azure-mgmt-botservice 0.3.0 pypi_0 pypi azure-mgmt-cdn 12.0.0 pypi_0 pypi azure-mgmt-cognitiveservices 13.1.0 pypi_0 pypi azure-mgmt-compute 26.1.0 pypi_0 pypi azure-mgmt-consumption 2.0.0 pypi_0 pypi azure-mgmt-containerinstance 9.1.0 pypi_0 pypi azure-mgmt-containerregistry 9.1.0 pypi_0 pypi azure-mgmt-containerservice 19.0.0 pypi_0 pypi azure-mgmt-core 1.3.0 pypi_0 pypi azure-mgmt-cosmosdb 7.0.0b2 pypi_0 pypi azure-mgmt-databoxedge 1.0.0 pypi_0 pypi azure-mgmt-datalake-analytics 0.2.1 pypi_0 pypi azure-mgmt-datalake-nspkg 3.0.1 pypi_0 pypi azure-mgmt-datalake-store 0.5.0 pypi_0 pypi azure-mgmt-datamigration 10.0.0 pypi_0 pypi azure-mgmt-deploymentmanager 0.2.0 pypi_0 pypi azure-mgmt-devtestlabs 4.0.0 pypi_0 pypi azure-mgmt-dns 8.0.0 pypi_0 pypi azure-mgmt-eventgrid 9.0.0 pypi_0 pypi azure-mgmt-eventhub 9.1.0 pypi_0 pypi azure-mgmt-extendedlocation 1.0.0b2 pypi_0 pypi azure-mgmt-hdinsight 9.0.0 pypi_0 pypi azure-mgmt-imagebuilder 1.0.0 pypi_0 pypi azure-mgmt-iotcentral 9.0.0 pypi_0 pypi azure-mgmt-iothub 2.2.0 pypi_0 pypi azure-mgmt-iothubprovisioningservices 1.1.0 pypi_0 pypi azure-mgmt-keyvault 9.3.0 pypi_0 pypi azure-mgmt-kusto 0.3.0 pypi_0 pypi azure-mgmt-loganalytics 13.0.0b4 pypi_0 pypi azure-mgmt-managedservices 1.0.0 pypi_0 pypi azure-mgmt-managementgroups 1.0.0 pypi_0 pypi azure-mgmt-maps 2.0.0 pypi_0 pypi azure-mgmt-marketplaceordering 1.1.0 pypi_0 pypi azure-mgmt-media 9.0.0 pypi_0 pypi azure-mgmt-monitor 3.0.0 pypi_0 pypi azure-mgmt-msi 6.0.1 pypi_0 pypi azure-mgmt-netapp 7.0.0 pypi_0 pypi azure-mgmt-network 19.3.0 pypi_0 pypi azure-mgmt-nspkg 3.0.2 pypi_0 pypi azure-mgmt-policyinsights 1.0.0 pypi_0 pypi azure-mgmt-privatedns 1.0.0 pypi_0 pypi azure-mgmt-rdbms 10.0.0 pypi_0 pypi azure-mgmt-recoveryservices 2.0.0 pypi_0 pypi azure-mgmt-recoveryservicesbackup 4.1.1 pypi_0 pypi azure-mgmt-redhatopenshift 1.0.0 pypi_0 pypi azure-mgmt-redis 13.1.0 pypi_0 pypi azure-mgmt-relay 0.1.0 pypi_0 pypi azure-mgmt-reservations 0.6.0 pypi_0 pypi azure-mgmt-resource 20.1.0 pypi_0 pypi azure-mgmt-search 8.0.0 pypi_0 pypi azure-mgmt-security 2.0.0b1 pypi_0 pypi azure-mgmt-servicebus 7.1.0 pypi_0 pypi azure-mgmt-servicefabric 1.0.0 pypi_0 pypi azure-mgmt-servicefabricmanagedclusters 1.0.0 pypi_0 pypi azure-mgmt-servicelinker 1.0.0b2 pypi_0 pypi azure-mgmt-signalr 1.0.0b2 pypi_0 pypi azure-mgmt-sql 4.0.0b1 pypi_0 pypi azure-mgmt-sqlvirtualmachine 1.0.0b2 pypi_0 pypi azure-mgmt-storage 19.1.0 pypi_0 pypi azure-mgmt-synapse 2.1.0b2 pypi_0 pypi azure-mgmt-trafficmanager 1.0.0 pypi_0 pypi azure-mgmt-web 6.1.0 pypi_0 pypi azure-multiapi-storage 0.8.0 pypi_0 pypi azure-nspkg 3.0.2 pypi_0 pypi azure-storage-blob 12.11.0 pypi_0 pypi azure-storage-common 1.4.2 pypi_0 pypi azure-storage-queue 12.2.0 pypi_0 pypi azure-synapse-accesscontrol 0.5.0 pypi_0 pypi azure-synapse-artifacts 0.12.0 pypi_0 pypi azure-synapse-managedprivateendpoints 0.3.0 pypi_0 pypi azure-synapse-spark 0.2.0 pypi_0 pypi azureml-accel-models 1.41.0 pypi_0 pypi azureml-automl-core 1.41.0 pypi_0 pypi azureml-automl-dnn-nlp 1.41.0 pypi_0 pypi azureml-automl-runtime 1.41.0 pypi_0 pypi azureml-cli-common 1.41.0 pypi_0 pypi azureml-contrib-automl-pipeline-steps 1.41.0 pypi_0 pypi azureml-contrib-dataset 1.41.0 pypi_0 pypi azureml-contrib-fairness 1.41.0 pypi_0 pypi azureml-contrib-notebook 1.41.0 pypi_0 pypi azureml-contrib-pipeline-steps 1.41.0 pypi_0 pypi azureml-contrib-reinforcementlearning 1.41.0 pypi_0 pypi azureml-contrib-server 1.41.0 pypi_0 pypi azureml-contrib-services 1.41.0 pypi_0 pypi azureml-core 1.41.0 pypi_0 pypi azureml-datadrift 1.41.0 pypi_0 pypi azureml-dataprep 3.1.1 pypi_0 pypi azureml-dataprep-native 38.0.0 pypi_0 pypi azureml-dataprep-rslex 2.5.2 pypi_0 pypi azureml-dataset-runtime 1.41.0 pypi_0 pypi azureml-defaults 1.41.0 pypi_0 pypi azureml-explain-model 1.41.0 pypi_0 pypi azureml-inference-server-http 0.4.13 pypi_0 pypi azureml-interpret 1.41.0 pypi_0 pypi azureml-mlflow 1.41.0 pypi_0 pypi azureml-opendatasets 1.41.0 pypi_0 pypi azureml-pipeline 1.41.0 pypi_0 pypi azureml-pipeline-core 1.41.0 pypi_0 pypi azureml-pipeline-steps 1.41.0 pypi_0 pypi azureml-responsibleai 1.41.0 pypi_0 pypi azureml-samples 0+unknown pypi_0 pypi azureml-sdk 1.41.0 pypi_0 pypi azureml-telemetry 1.41.0 pypi_0 pypi azureml-tensorboard 1.41.0 pypi_0 pypi azureml-train 1.41.0 pypi_0 pypi azureml-train-automl 1.41.0 pypi_0 pypi azureml-train-automl-client 1.41.0 pypi_0 pypi azureml-train-automl-runtime 1.41.0 pypi_0 pypi azureml-train-core 1.41.0 pypi_0 pypi azureml-train-restclients-hyperdrive 1.41.0 pypi_0 pypi azureml-training-tabular 1.41.0 pypi_0 pypi azureml-widgets 1.41.0 pypi_0 pypi babel 2.10.1 pypi_0 pypi backcall 0.2.0 pyhd3eb1b0_0 anaconda backports-tempfile 1.0 pypi_0 pypi backports-weakref 1.0.post1 pypi_0 pypi backports-zoneinfo 0.2.1 pypi_0 pypi bcrypt 3.2.0 pypi_0 pypi beautifulsoup4 4.11.1 pypi_0 pypi binutils_impl_linux-64 2.33.1 he6710b0_7
binutils_linux-64 2.33.1 h9595d00_15
blas 1.0 mkl
bleach 5.0.0 pypi_0 pypi blessed 1.19.1 pypi_0 pypi blis 0.4.1 pypi_0 pypi bokeh 2.4.2 pypi_0 pypi boruta 0.3 pypi_0 pypi boto 2.49.0 pypi_0 pypi boto3 1.20.19 pypi_0 pypi botocore 1.23.19 pypi_0 pypi bottleneck 1.3.4 pypi_0 pypi bzip2 1.0.8 h7f98852_4 conda-forge c-ares 1.18.1 h7f8727e_0
ca-certificates 2022.4.26 h06a4308_0
cachetools 5.0.0 pypi_0 pypi catalogue 1.0.0 pypi_0 pypi certifi 2021.10.8 py38h06a4308_2
cffi 1.15.0 py38hd667e15_1
cftime 1.5.1.1 py38hce1f21e_0
chardet 3.0.4 pypi_0 pypi charset-normalizer 2.0.12 pypi_0 pypi click 7.1.2 pypi_0 pypi cloudpickle 1.6.0 pyhd3eb1b0_0 anaconda colorama 0.4.4 pyh9f0ad1d_0 conda-forge colorful 0.5.4 pypi_0 pypi colorlover 0.3.0 pypi_0 pypi configparser 3.7.4 pypi_0 pypi contextlib2 21.6.0 pypi_0 pypi convertdate 2.4.0 pyhd8ed1ab_0 conda-forge coremltools 2.1.0 pypi_0 pypi cramjam 2.5.0 pypi_0 pypi cryptography 36.0.2 pypi_0 pypi cudatoolkit 10.1.243 h6bb024c_0 anaconda cufflinks 0.17.3 pypi_0 pypi curl 7.82.0 h7f8727e_0
cycler 0.11.0 pyhd8ed1ab_0 conda-forge cymem 2.0.6 pypi_0 pypi cython 0.29.17 pypi_0 pypi dask 2.30.0 pypi_0 pypi dask-sql 2022.4.1 pypi_0 pypi databricks-cli 0.16.6 pypi_0 pypi dataclasses 0.6 pypi_0 pypi datasets 1.8.0 pypi_0 pypi debugpy 1.6.0 pypi_0 pypi decorator 5.1.1 pyhd3eb1b0_0 anaconda defusedxml 0.7.1 pypi_0 pypi deprecated 1.2.13 pypi_0 pypi dice-ml 0.7.2 pypi_0 pypi dill 0.3.4 pypi_0 pypi distlib 0.3.4 pypi_0 pypi distributed 2.30.1 pypi_0 pypi distro 1.7.0 pypi_0 pypi dm-tree 0.1.7 pypi_0 pypi docker 5.0.3 pypi_0 pypi dotnetcore2 2.1.23 pypi_0 pypi dowhy 0.7.1 pypi_0 pypi econml 0.12.0 pypi_0 pypi en-core-web-sm 2.1.0 pypi_0 pypi encrypted-inference 0.9 pypi_0 pypi entrypoints 0.4 py38h06a4308_0 anaconda environments-utils 1.0.4 pypi_0 pypi ephem 4.1.2 py38h7f8727e_0
erroranalysis 0.2.1 pypi_0 pypi executing 0.8.3 pyhd3eb1b0_0 anaconda fabric 2.7.0 pypi_0 pypi fairlearn 0.7.0 pypi_0 pypi fastai 1.0.61 pypi_0 pypi fastapi 0.76.0 pypi_0 pypi fastjsonschema 2.15.3 pypi_0 pypi fastparquet 0.8.1 pypi_0 pypi fastprogress 1.0.2 pypi_0 pypi fbprophet 0.7.1 py38h950e882_0 conda-forge filelock 3.6.0 pypi_0 pypi fire 0.4.0 pypi_0 pypi flake8 4.0.1 pypi_0 pypi flask 1.0.3 pypi_0 pypi flask-cors 3.0.10 pypi_0 pypi flatbuffers 2.0 pypi_0 pypi freetype 2.11.0 h70c0345_0
frozenlist 1.3.0 pypi_0 pypi fsspec 2022.3.0 pypi_0 pypi funcy 1.17 pypi_0 pypi fusepy 3.0.1 pypi_0 pypi future 0.18.2 pypi_0 pypi gast 0.3.3 pypi_0 pypi gcc_impl_linux-64 7.3.0 habb00fd_1
gcc_linux-64 7.3.0 h553295d_15
gensim 3.8.3 pypi_0 pypi gevent 1.3.6 pypi_0 pypi gitdb 4.0.9 pypi_0 pypi gitpython 3.1.27 pypi_0 pypi google-api-core 2.7.2 pypi_0 pypi google-auth 2.6.5 pypi_0 pypi google-auth-oauthlib 0.4.6 pypi_0 pypi google-pasta 0.2.0 pypi_0 pypi googleapis-common-protos 1.56.0 pypi_0 pypi gpustat 1.0.0b1 pypi_0 pypi greenlet 1.1.2 pypi_0 pypi grpcio 1.44.0 pypi_0 pypi gunicorn 20.1.0 pypi_0 pypi gxx_impl_linux-64 7.3.0 hdf63c60_1
gxx_linux-64 7.3.0 h553295d_15
gym 0.21.0 pypi_0 pypi h11 0.13.0 pypi_0 pypi h5py 3.6.0 pypi_0 pypi hdf4 4.2.13 h3ca952b_2
hdf5 1.10.6 nompi_h7c3c948_1111 conda-forge heapdict 1.0.1 pypi_0 pypi hijri-converter 2.2.3 pyhd8ed1ab_0 conda-forge holidays 0.10.3 pypi_0 pypi horovod 0.19.1 pypi_0 pypi htmlmin 0.1.12 pypi_0 pypi huggingface-hub 0.0.19 pypi_0 pypi humanfriendly 10.0 pypi_0 pypi humanize 4.1.0 pypi_0 pypi icu 68.1 h58526e2_0 conda-forge idna 3.3 pypi_0 pypi imagehash 4.2.1 pypi_0 pypi imageio 2.19.1 pypi_0 pypi imbalanced-learn 0.7.0 pypi_0 pypi importlib-metadata 4.11.3 py38h578d9bd_1 conda-forge importlib-resources 5.7.1 pypi_0 pypi importlib_metadata 4.11.3 hd8ed1ab_1 conda-forge inference-schema 1.3.0 pypi_0 pypi intel-openmp 2019.4 243
interpret-community 0.25.0 pypi_0 pypi interpret-core 0.2.7 pypi_0 pypi invoke 1.7.0 pypi_0 pypi ipykernel 6.6.0 pypi_0 pypi ipython 8.2.0 py38h06a4308_0 anaconda ipython-genutils 0.2.0 pypi_0 pypi ipywidgets 7.7.0 pypi_0 pypi isodate 0.6.1 pypi_0 pypi isort 5.10.1 pypi_0 pypi itsdangerous 1.1.0 pypi_0 pypi javaproperties 0.5.2 pypi_0 pypi jedi 0.18.0 pypi_0 pypi jeepney 0.8.0 pypi_0 pypi jinja2 2.11.2 pypi_0 pypi jmespath 0.10.0 pypi_0 pypi joblib 0.14.1 py_0 anaconda jpeg 9e h7f8727e_0
jpype1 1.3.0 pypi_0 pypi json-logging-py 0.2 pypi_0 pypi json5 0.9.8 pypi_0 pypi jsondiff 1.3.1 pypi_0 pypi jsonpickle 2.1.0 pypi_0 pypi jsonschema 4.4.0 pypi_0 pypi jupyter 1.0.0 pypi_0 pypi jupyter-client 6.1.12 pypi_0 pypi jupyter-console 6.4.3 pypi_0 pypi jupyter-core 4.10.0 pypi_0 pypi jupyter-resource-usage 0.6.1 pypi_0 pypi jupyter-server 1.17.0 pypi_0 pypi jupyter-server-mathjax 0.2.5 pypi_0 pypi jupyter-server-proxy 3.2.1 pypi_0 pypi jupyter_client 7.2.2 py38h06a4308_0
jupyter_core 4.9.2 py38h06a4308_0 anaconda jupyterlab 3.2.4 pypi_0 pypi jupyterlab-nvdashboard 0.6.0 pypi_0 pypi jupyterlab-pygments 0.2.2 pypi_0 pypi jupyterlab-server 2.13.0 pypi_0 pypi jupyterlab-system-monitor 0.8.0 pypi_0 pypi jupyterlab-topbar 0.6.1 pypi_0 pypi jupyterlab-widgets 1.1.0 pypi_0 pypi jupytext 1.13.8 pypi_0 pypi keras 2.3.1 pypi_0 pypi keras-applications 1.0.8 pypi_0 pypi keras-nightly 2.5.0.dev2021032900 pypi_0 pypi keras-preprocessing 1.1.2 pypi_0 pypi keras-tuner 1.1.2 pypi_0 pypi keras2onnx 1.6.0 pypi_0 pypi kiwisolver 1.4.2 pypi_0 pypi kmodes 0.12.1 pypi_0 pypi knack 0.9.0 pypi_0 pypi korean_lunar_calendar 0.2.1 pyh9f0ad1d_0 conda-forge krb5 1.19.2 hac12032_0
kt-legacy 1.0.4 pypi_0 pypi lazy-object-proxy 1.7.1 pypi_0 pypi lcms2 2.12 hddcbb42_0 conda-forge ld_impl_linux-64 2.33.1 h53a641e_7
liac-arff 2.5.0 pypi_0 pypi libblas 3.9.0 1_h6e990d7_netlib conda-forge libcblas 3.9.0 3_h893e4fe_netlib conda-forge libcurl 7.82.0 h0b77cf5_0
libedit 3.1.20210910 h7f8727e_0
libev 4.33 h516909a_1 conda-forge libffi 3.3 he6710b0_2
libgcc-ng 9.3.0 h5101ec6_17
libgfortran-ng 7.5.0 ha8ba4b0_17
libgfortran4 7.5.0 ha8ba4b0_17
libgomp 9.3.0 h5101ec6_17
liblapack 3.9.0 3_h893e4fe_netlib conda-forge libmklml 2019.0.5 h06a4308_0
libnetcdf 4.8.1 h42ceab0_1
libnghttp2 1.46.0 hce63b2e_0
libpng 1.6.37 hbc83047_0
libpq 12.9 hc2c5182_1
libsodium 1.0.18 h7b6447c_0 anaconda libssh2 1.10.0 h8f2d780_0
libstdcxx-ng 9.3.0 hd4cf53a_17
libtiff 4.2.0 h85742a9_0
libuv 1.41.1 h7f98852_0 conda-forge libwebp-base 1.2.2 h7f8727e_0
libxgboost 1.3.3 h2531618_0
libzip 1.8.0 h4de3113_0 conda-forge lightgbm 3.2.1 pypi_0 pypi llvmlite 0.36.0 pypi_0 pypi locket 1.0.0 pypi_0 pypi lunarcalendar 0.0.9 py_0 conda-forge lz4 4.0.0 pypi_0 pypi lz4-c 1.9.3 h295c915_1
mako 1.2.0 pypi_0 pypi markdown 3.3.7 pypi_0 pypi markdown-it-py 2.1.0 pypi_0 pypi markupsafe 2.0.1 pypi_0 pypi matplotlib 3.2.1 pypi_0 pypi matplotlib-base 3.3.4 py38h0efea84_0 conda-forge matplotlib-inline 0.1.3 pypi_0 pypi mccabe 0.6.1 pypi_0 pypi mdit-py-plugins 0.3.0 pypi_0 pypi mdurl 0.1.1 pypi_0 pypi missingno 0.5.1 pypi_0 pypi mistune 0.8.4 pypi_0 pypi mkl 2020.2 256
mkl-service 2.3.0 py38he904b0f_0
ml-wrappers 0.1.0 pypi_0 pypi mlflow 1.25.1 pypi_0 pypi mlflow-skinny 1.25.1 pypi_0 pypi mlxtend 0.19.0 pypi_0 pypi mpmath 1.2.1 pypi_0 pypi msal 1.17.0 pypi_0 pypi msal-extensions 0.3.1 pypi_0 pypi msgpack 1.0.3 pypi_0 pypi msrest 0.6.21 pypi_0 pypi msrestazure 0.6.4 pypi_0 pypi multidict 6.0.2 pypi_0 pypi multimethod 1.8 pypi_0 pypi multiprocess 0.70.12.2 pypi_0 pypi murmurhash 1.0.7 pypi_0 pypi nbclassic 0.3.7 pypi_0 pypi nbclient 0.6.3 pypi_0 pypi nbconvert 6.5.0 pypi_0 pypi nbdime 3.1.1 pypi_0 pypi nbformat 5.2.0 pypi_0 pypi ncurses 6.3 h7f8727e_2
ndg-httpsclient 0.5.1 pypi_0 pypi nest-asyncio 1.5.5 py38h06a4308_0 anaconda netcdf4 1.5.7 py38ha0f2276_1
networkx 2.5 pypi_0 pypi nimbusml 1.8.0 pypi_0 pypi ninja 1.10.2 h06a4308_5
ninja-base 1.10.2 hd09550d_5
nltk 3.7 pypi_0 pypi nodejs 12.19.0 h8b53aa1_3 conda-forge notebook 6.4.11 pypi_0 pypi notebook-shim 0.1.0 pypi_0 pypi numba 0.53.1 pypi_0 pypi numexpr 2.8.1 pypi_0 pypi numpy 1.19.0 py38h8854b6b_0 conda-forge nvidia-ml-py3 7.352.0 pypi_0 pypi oauthlib 3.2.0 pypi_0 pypi olefile 0.46 pyhd3eb1b0_0
onnx 1.7.0 pypi_0 pypi onnxconverter-common 1.6.0 pypi_0 pypi onnxmltools 1.4.1 pypi_0 pypi onnxruntime 1.8.1 pypi_0 pypi opencensus 0.9.0 pypi_0 pypi opencensus-context 0.1.2 pypi_0 pypi opencensus-ext-azure 1.1.4 pypi_0 pypi opencv-python-headless 4.5.5.64 pypi_0 pypi openssl 1.1.1o h7f8727e_0
opt-einsum 3.3.0 pypi_0 pypi packaging 21.3 pyhd8ed1ab_0 conda-forge pandas 1.1.5 py38ha9443f7_0 anaconda pandas-ml 0.6.1 pypi_0 pypi pandas-profiling 3.2.0 pypi_0 pypi pandocfilters 1.5.0 pypi_0 pypi papermill 1.2.1 pypi_0 pypi paramiko 2.10.3 pypi_0 pypi parso 0.8.3 pyhd3eb1b0_0 anaconda partd 1.2.0 pypi_0 pypi pathlib2 2.3.7.post1 pypi_0 pypi pathspec 0.9.0 pypi_0 pypi patsy 0.5.2 pypi_0 pypi pexpect 4.8.0 pyhd3eb1b0_3 anaconda phik 0.12.2 pypi_0 pypi pickleshare 0.7.5 pyhd3eb1b0_1003 anaconda pillow 6.2.1 py38h34e0f95_0
pip 20.1.1 py38_1 anaconda pkginfo 1.8.2 pypi_0 pypi plac 1.1.3 pypi_0 pypi platformdirs 2.5.2 pypi_0 pypi plotly 5.7.0 pypi_0 pypi pluggy 1.0.0 pypi_0 pypi pmdarima 1.7.1 pypi_0 pypi portalocker 2.4.0 pypi_0 pypi preshed 3.0.6 pypi_0 pypi prometheus-client 0.14.1 pypi_0 pypi prometheus-flask-exporter 0.20.1 pypi_0 pypi prompt-toolkit 3.0.28 pypi_0 pypi prompt_toolkit 3.0.20 hd3eb1b0_0
property-cached 1.6.4 pypi_0 pypi protobuf 3.20.0 pypi_0 pypi psutil 5.9.0 pypi_0 pypi psycopg2 2.8.6 py38h3c74f83_1
ptyprocess 0.7.0 pyhd3eb1b0_2 anaconda pure_eval 0.2.2 pyhd3eb1b0_0 anaconda py-spy 0.3.11 pypi_0 pypi py-xgboost 1.3.3 py38h06a4308_0 anaconda py4j 0.10.9.3 pypi_0 pypi pyarrow 3.0.0 pypi_0 pypi pyasn1 0.4.8 pypi_0 pypi pyasn1-modules 0.2.8 pypi_0 pypi pycaret 2.3.10 pypi_0 pypi pycocotools 2.0.0 pypi_0 pypi pycodestyle 2.6.0 pypi_0 pypi pycparser 2.21 pyhd3eb1b0_0
pydantic 1.9.0 pypi_0 pypi pydocstyle 6.1.1 pypi_0 pypi pydot 1.4.2 pypi_0 pypi pyflakes 2.2.0 pypi_0 pypi pygithub 1.55 pypi_0 pypi pygments 2.11.2 pyhd3eb1b0_0 anaconda pyjwt 2.3.0 pypi_0 pypi pyldavis 3.3.1 pypi_0 pypi pylint 2.13.8 pypi_0 pypi pymeeus 0.5.10 pyhd8ed1ab_0 conda-forge pynacl 1.5.0 pypi_0 pypi pynndescent 0.5.6 pypi_0 pypi pynvml 11.4.1 pypi_0 pypi pyod 1.0.0 pypi_0 pypi pyodbc 4.0.32 py38h295c915_1
pyopenssl 22.0.0 pypi_0 pypi pyparsing 3.0.8 pyhd8ed1ab_0 conda-forge pyreadline3 3.4.1 pypi_0 pypi pyrsistent 0.18.1 pypi_0 pypi pysocks 1.7.1 pypi_0 pypi pyspark 3.2.1 pypi_0 pypi pystan 2.19.1.1 py38hc5bc63f_2 conda-forge python 3.8.5 h7579374_1 anaconda python-dateutil 2.8.2 pyhd3eb1b0_0
python-jsonrpc-server 0.4.0 pypi_0 pypi python-language-server 0.35.0 pypi_0 pypi python-snappy 0.6.1 pypi_0 pypi python_abi 3.8 2_cp38 conda-forge pytorch-transformers 1.0.0 pypi_0 pypi pytz 2019.3 pypi_0 pypi pytz-deprecation-shim 0.1.0.post0 pypi_0 pypi pywavelets 1.3.0 pypi_0 pypi pyyaml 6.0 pypi_0 pypi pyzmq 22.3.0 py38h295c915_2 anaconda qtconsole 5.3.0 pypi_0 pypi qtpy 2.1.0 pypi_0 pypi quantlib 1.26 pypi_0 pypi querystring-parser 1.2.4 pypi_0 pypi rai-core-flask 0.2.5 pypi_0 pypi raiutils 0.0.1 pypi_0 pypi raiwidgets 0.17.0 pypi_0 pypi ray 1.12.0 pypi_0 pypi readline 8.1.2 h7f8727e_1
regex 2022.4.24 pypi_0 pypi requests 2.27.1 pypi_0 pypi requests-oauthlib 1.3.1 pypi_0 pypi responsibleai 0.17.0 pypi_0 pypi rope 1.0.0 pypi_0 pypi rsa 4.8 pypi_0 pypi s3transfer 0.5.2 pypi_0 pypi sacremoses 0.0.49 pypi_0 pypi scikit-image 0.19.2 pypi_0 pypi scikit-learn 0.22.1 pypi_0 pypi scikit-plot 0.3.7 pypi_0 pypi scipy 1.5.2 pypi_0 pypi scp 0.13.6 pypi_0 pypi scrapbook 0.5.0 pypi_0 pypi seaborn 0.11.2 pypi_0 pypi secretstorage 3.3.2 pypi_0 pypi semver 2.13.0 pypi_0 pypi send2trash 1.8.0 pypi_0 pypi sentencepiece 0.1.96 pypi_0 pypi seqeval 1.2.2 pypi_0 pypi setuptools 49.6.0 pypi_0 pypi setuptools-git 1.2 py_1 anaconda shap 0.39.0 pypi_0 pypi simpervisor 0.4 pypi_0 pypi six 1.16.0 pyhd3eb1b0_1
skl2onnx 1.4.9 pypi_0 pypi sklearn-pandas 1.7.0 pypi_0 pypi slicer 0.0.7 pypi_0 pypi smart-open 1.9.0 pypi_0 pypi smmap 5.0.0 pypi_0 pypi sniffio 1.2.0 pypi_0 pypi snowballstemmer 2.2.0 pypi_0 pypi sortedcontainers 2.4.0 pypi_0 pypi soupsieve 2.3.2.post1 pypi_0 pypi spacy 2.2.4 pypi_0 pypi sparse 0.13.0 pypi_0 pypi sqlalchemy 1.4.36 pypi_0 pypi sqlite 3.33.0 h62c20be_0 anaconda sqlparse 0.4.2 pypi_0 pypi srsly 1.0.5 pypi_0 pypi sshtunnel 0.1.5 pypi_0 pypi stack_data 0.2.0 pyhd3eb1b0_0 anaconda starlette 0.18.0 pypi_0 pypi statsmodels 0.11.0 pypi_0 pypi sympy 1.10.1 pypi_0 pypi tabulate 0.8.9 pypi_0 pypi tangled-up-in-unicode 0.2.0 pypi_0 pypi tblib 1.7.0 pypi_0 pypi tenacity 8.0.1 pypi_0 pypi tensorboard 2.2.2 pypi_0 pypi tensorboard-data-server 0.6.1 pypi_0 pypi tensorboard-plugin-wit 1.8.1 pypi_0 pypi tensorboardx 2.5 pypi_0 pypi tensorflow 2.2.0 pypi_0 pypi tensorflow-estimator 2.2.0 pypi_0 pypi tensorflow-gpu 2.2.0 pypi_0 pypi termcolor 1.1.0 pypi_0 pypi terminado 0.13.3 pypi_0 pypi testpath 0.6.0 pypi_0 pypi textblob 0.17.1 pypi_0 pypi textwrap3 0.9.2 pypi_0 pypi thinc 7.4.0 pypi_0 pypi threadpoolctl 2.2.0 pyh0d69192_0
tifffile 2022.5.4 pypi_0 pypi tinycss2 1.1.1 pypi_0 pypi tk 8.6.11 h1ccaba5_1
tokenizers 0.10.3 pypi_0 pypi toml 0.10.2 pypi_0 pypi tomli 2.0.1 pypi_0 pypi toolz 0.11.2 pypi_0 pypi torch 1.10.2 pypi_0 pypi torch-tb-profiler 0.4.0 pypi_0 pypi torchvision 0.9.1 pypi_0 pypi tornado 6.1 py38h27cfd23_0 anaconda tqdm 4.64.0 pyhd8ed1ab_0 conda-forge traitlets 5.1.1 pyhd3eb1b0_0 anaconda transformers 4.5.1 pypi_0 pypi typing-extensions 4.2.0 pypi_0 pypi typing_extensions 4.1.1 pyh06a4308_0
tzdata 2022.1 pypi_0 pypi tzlocal 4.2 pypi_0 pypi ujson 5.2.0 pypi_0 pypi umap-learn 0.5.3 pypi_0 pypi unixodbc 2.3.9 h7b6447c_0
urllib3 1.26.7 pypi_0 pypi uuid 1.30 pypi_0 pypi uvicorn 0.17.6 pypi_0 pypi virtualenv 20.14.1 pypi_0 pypi visions 0.7.4 pypi_0 pypi waitress 2.1.1 pypi_0 pypi wasabi 0.9.1 pypi_0 pypi wcwidth 0.2.5 pyhd3eb1b0_0 anaconda webencodings 0.5.1 pypi_0 pypi websocket-client 1.3.2 pypi_0 pypi websockets 10.3 pypi_0 pypi werkzeug 1.0.1 pypi_0 pypi wheel 0.35.1 pyhd3eb1b0_0 anaconda widgetsnbextension 3.6.0 pypi_0 pypi wordcloud 1.8.1 pypi_0 pypi wrapt 1.12.1 pypi_0 pypi xarray 2022.3.0 pyhd8ed1ab_0 conda-forge xmltodict 0.13.0 pypi_0 pypi xxhash 3.0.0 pypi_0 pypi xz 5.2.5 h7f8727e_1
yapf 0.32.0 pypi_0 pypi yarl 1.7.2 pypi_0 pypi yellowbrick 1.4 pypi_0 pypi zeromq 4.3.4 h2531618_0 anaconda zict 2.1.0 pypi_0 pypi zipp 3.8.0 pyhd8ed1ab_0 conda-forge zlib 1.2.12 h7f8727e_2
zope-event 4.5.0 pypi_0 pypi zope-interface 5.4.0 pypi_0 pypi zstd 1.4.9 haebb681_0