Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include missing files in sdist #47

Merged
merged 1 commit into from Jun 2, 2020
Merged

Include missing files in sdist #47

merged 1 commit into from Jun 2, 2020

Conversation

thatch
Copy link
Contributor

@thatch thatch commented May 21, 2020

Include missing files in sdist for #46

Tested with

++ mktemp -d
+ D=/tmp/tmp.LPPNfqdie8
+ trap 'rm -rf /tmp/tmp.LPPNfqdie8' EXIT
+ python -m venv /tmp/tmp.LPPNfqdie8
+ python setup.py sdist -d /tmp/tmp.LPPNfqdie8
running sdist
running egg_info
writing autoPyTorch.egg-info/PKG-INFO
writing dependency_links to autoPyTorch.egg-info/dependency_links.txt
writing requirements to autoPyTorch.egg-info/requires.txt
writing top-level names to autoPyTorch.egg-info/top_level.txt
reading manifest file 'autoPyTorch.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
writing manifest file 'autoPyTorch.egg-info/SOURCES.txt'
running check
creating autoPyTorch-0.0.2
creating autoPyTorch-0.0.2/autoPyTorch
creating autoPyTorch-0.0.2/autoPyTorch.egg-info
creating autoPyTorch-0.0.2/autoPyTorch/components
creating autoPyTorch-0.0.2/autoPyTorch/components/ensembles
creating autoPyTorch-0.0.2/autoPyTorch/components/lr_scheduler
creating autoPyTorch-0.0.2/autoPyTorch/components/metrics
creating autoPyTorch-0.0.2/autoPyTorch/components/networks
creating autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
creating autoPyTorch-0.0.2/autoPyTorch/components/networks/image
creating autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
creating autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
creating autoPyTorch-0.0.2/autoPyTorch/components/optimizer
creating autoPyTorch-0.0.2/autoPyTorch/components/preprocessing
creating autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
creating autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
creating autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/resampling
creating autoPyTorch-0.0.2/autoPyTorch/components/regularization
creating autoPyTorch-0.0.2/autoPyTorch/components/training
creating autoPyTorch-0.0.2/autoPyTorch/components/training/image
creating autoPyTorch-0.0.2/autoPyTorch/components/training/image/checkpoints
creating autoPyTorch-0.0.2/autoPyTorch/core
creating autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
creating autoPyTorch-0.0.2/autoPyTorch/core/hpbandster_extensions
creating autoPyTorch-0.0.2/autoPyTorch/core/presets
creating autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_classification
creating autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_multilabel
creating autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_regression
creating autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification
creating autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification_multiple_datasets
creating autoPyTorch-0.0.2/autoPyTorch/data_management
creating autoPyTorch-0.0.2/autoPyTorch/pipeline
creating autoPyTorch-0.0.2/autoPyTorch/pipeline/base
creating autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
creating autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
creating autoPyTorch-0.0.2/autoPyTorch/utils
creating autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking
creating autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
creating autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
creating autoPyTorch-0.0.2/autoPyTorch/utils/config
creating autoPyTorch-0.0.2/examples
creating autoPyTorch-0.0.2/test
creating autoPyTorch-0.0.2/test/test_pipeline
copying files to autoPyTorch-0.0.2...
copying MANIFEST.in -> autoPyTorch-0.0.2
copying README.md -> autoPyTorch-0.0.2
copying optional-requirements.txt -> autoPyTorch-0.0.2
copying requirements.txt -> autoPyTorch-0.0.2
copying setup.cfg -> autoPyTorch-0.0.2
copying setup.py -> autoPyTorch-0.0.2
copying autoPyTorch/__init__.py -> autoPyTorch-0.0.2/autoPyTorch
copying autoPyTorch.egg-info/PKG-INFO -> autoPyTorch-0.0.2/autoPyTorch.egg-info
copying autoPyTorch.egg-info/SOURCES.txt -> autoPyTorch-0.0.2/autoPyTorch.egg-info
copying autoPyTorch.egg-info/dependency_links.txt -> autoPyTorch-0.0.2/autoPyTorch.egg-info
copying autoPyTorch.egg-info/requires.txt -> autoPyTorch-0.0.2/autoPyTorch.egg-info
copying autoPyTorch.egg-info/top_level.txt -> autoPyTorch-0.0.2/autoPyTorch.egg-info
copying autoPyTorch/components/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components
copying autoPyTorch/components/ensembles/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/ensembles
copying autoPyTorch/components/ensembles/abstract_ensemble.py -> autoPyTorch-0.0.2/autoPyTorch/components/ensembles
copying autoPyTorch/components/ensembles/ensemble_selection.py -> autoPyTorch-0.0.2/autoPyTorch/components/ensembles
copying autoPyTorch/components/lr_scheduler/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/lr_scheduler
copying autoPyTorch/components/lr_scheduler/lr_schedulers.py -> autoPyTorch-0.0.2/autoPyTorch/components/lr_scheduler
copying autoPyTorch/components/metrics/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/metrics
copying autoPyTorch/components/metrics/additional_logs.py -> autoPyTorch-0.0.2/autoPyTorch/components/metrics
copying autoPyTorch/components/metrics/balanced_accuracy.py -> autoPyTorch-0.0.2/autoPyTorch/components/metrics
copying autoPyTorch/components/metrics/pac_score.py -> autoPyTorch-0.0.2/autoPyTorch/components/metrics
copying autoPyTorch/components/metrics/standard_metrics.py -> autoPyTorch-0.0.2/autoPyTorch/components/metrics
copying autoPyTorch/components/networks/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks
copying autoPyTorch/components/networks/activations.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks
copying autoPyTorch/components/networks/base_net.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks
copying autoPyTorch/components/networks/initialization.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks
copying autoPyTorch/components/networks/feature/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/feature/embedding.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/feature/mlpnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/feature/resnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/feature/shapedmlpnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/feature/shapedresnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/feature
copying autoPyTorch/components/networks/image/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/convnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/densenet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/densenet_flexible.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/mobilenet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/resnet.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/resnet152.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image
copying autoPyTorch/components/networks/image/darts/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/darts/darts_worker.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/darts/genotypes.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/darts/model.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/darts/operations.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/darts/utils.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/darts
copying autoPyTorch/components/networks/image/utils/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/networks/image/utils/conv2d_helpers.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/networks/image/utils/mobilenet_utils.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/networks/image/utils/shakedrop.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/networks/image/utils/shakeshakeblock.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/networks/image/utils/utils.py -> autoPyTorch-0.0.2/autoPyTorch/components/networks/image/utils
copying autoPyTorch/components/optimizer/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/optimizer
copying autoPyTorch/components/optimizer/optimizer.py -> autoPyTorch-0.0.2/autoPyTorch/components/optimizer
copying autoPyTorch/components/preprocessing/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing
copying autoPyTorch/components/preprocessing/loss_weight_strategies.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing
copying autoPyTorch/components/preprocessing/preprocessor_base.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing
copying autoPyTorch/components/preprocessing/resampling_base.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/fast_ica.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/kernel_pca.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/kitchen_sinks.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/nystroem.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/polynomial_features.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/power_transformer.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/feature_preprocessing/truncated_svd.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/feature_preprocessing
copying autoPyTorch/components/preprocessing/image_preprocessing/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
copying autoPyTorch/components/preprocessing/image_preprocessing/archive.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
copying autoPyTorch/components/preprocessing/image_preprocessing/augmentation_transforms.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
copying autoPyTorch/components/preprocessing/image_preprocessing/operations.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
copying autoPyTorch/components/preprocessing/image_preprocessing/transforms.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/image_preprocessing
copying autoPyTorch/components/preprocessing/resampling/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/resampling
copying autoPyTorch/components/preprocessing/resampling/random.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/resampling
copying autoPyTorch/components/preprocessing/resampling/smote.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/resampling
copying autoPyTorch/components/preprocessing/resampling/target_size_strategies.py -> autoPyTorch-0.0.2/autoPyTorch/components/preprocessing/resampling
copying autoPyTorch/components/regularization/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/regularization
copying autoPyTorch/components/regularization/mixup.py -> autoPyTorch-0.0.2/autoPyTorch/components/regularization
copying autoPyTorch/components/regularization/shake.py -> autoPyTorch-0.0.2/autoPyTorch/components/regularization
copying autoPyTorch/components/training/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/base_training.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/budget_types.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/early_stopping.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/lr_scheduling.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/trainer.py -> autoPyTorch-0.0.2/autoPyTorch/components/training
copying autoPyTorch/components/training/image/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/base_training.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/budget_types.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/early_stopping.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/lr_scheduling.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/mixup.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/trainer.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image
copying autoPyTorch/components/training/image/checkpoints/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image/checkpoints
copying autoPyTorch/components/training/image/checkpoints/load_specific.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image/checkpoints
copying autoPyTorch/components/training/image/checkpoints/save_load.py -> autoPyTorch-0.0.2/autoPyTorch/components/training/image/checkpoints
copying autoPyTorch/core/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core
copying autoPyTorch/core/api.py -> autoPyTorch-0.0.2/autoPyTorch/core
copying autoPyTorch/core/ensemble.py -> autoPyTorch-0.0.2/autoPyTorch/core
copying autoPyTorch/core/worker.py -> autoPyTorch-0.0.2/autoPyTorch/core
copying autoPyTorch/core/worker_no_timelimit.py -> autoPyTorch-0.0.2/autoPyTorch/core
copying autoPyTorch/core/autonet_classes/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_feature_classification.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_feature_data.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_feature_multilabel.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_feature_regression.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_image_classification.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_image_classification_multiple_datasets.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/autonet_classes/autonet_image_data.py -> autoPyTorch-0.0.2/autoPyTorch/core/autonet_classes
copying autoPyTorch/core/hpbandster_extensions/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/hpbandster_extensions
copying autoPyTorch/core/hpbandster_extensions/bohb_ext.py -> autoPyTorch-0.0.2/autoPyTorch/core/hpbandster_extensions
copying autoPyTorch/core/hpbandster_extensions/hyperband_ext.py -> autoPyTorch-0.0.2/autoPyTorch/core/hpbandster_extensions
copying autoPyTorch/core/hpbandster_extensions/run_with_time.py -> autoPyTorch-0.0.2/autoPyTorch/core/hpbandster_extensions
copying autoPyTorch/core/presets/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets
copying autoPyTorch/core/presets/tiny_cs_updates.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets
copying autoPyTorch/core/presets/feature_classification/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_classification
copying autoPyTorch/core/presets/feature_classification/full_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_classification
copying autoPyTorch/core/presets/feature_classification/medium_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_classification
copying autoPyTorch/core/presets/feature_classification/tiny_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_classification
copying autoPyTorch/core/presets/feature_multilabel/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_multilabel
copying autoPyTorch/core/presets/feature_multilabel/full_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_multilabel
copying autoPyTorch/core/presets/feature_multilabel/medium_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_multilabel
copying autoPyTorch/core/presets/feature_multilabel/tiny_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_multilabel
copying autoPyTorch/core/presets/feature_regression/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_regression
copying autoPyTorch/core/presets/feature_regression/full_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_regression
copying autoPyTorch/core/presets/feature_regression/medium_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_regression
copying autoPyTorch/core/presets/feature_regression/tiny_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/feature_regression
copying autoPyTorch/core/presets/image_classification/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification
copying autoPyTorch/core/presets/image_classification/full_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification
copying autoPyTorch/core/presets/image_classification/medium_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification
copying autoPyTorch/core/presets/image_classification/tiny_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification
copying autoPyTorch/core/presets/image_classification_multiple_datasets/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification_multiple_datasets
copying autoPyTorch/core/presets/image_classification_multiple_datasets/full_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification_multiple_datasets
copying autoPyTorch/core/presets/image_classification_multiple_datasets/medium_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification_multiple_datasets
copying autoPyTorch/core/presets/image_classification_multiple_datasets/tiny_cs.txt -> autoPyTorch-0.0.2/autoPyTorch/core/presets/image_classification_multiple_datasets
copying autoPyTorch/data_management/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/data_management/data_converter.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/data_management/data_loader.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/data_management/data_manager.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/data_management/data_reader.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/data_management/image_loader.py -> autoPyTorch-0.0.2/autoPyTorch/data_management
copying autoPyTorch/pipeline/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline
copying autoPyTorch/pipeline/base/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/base
copying autoPyTorch/pipeline/base/node.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/base
copying autoPyTorch/pipeline/base/pipeline.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/base
copying autoPyTorch/pipeline/base/pipeline_node.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/base
copying autoPyTorch/pipeline/base/sub_pipeline_node.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/base
copying autoPyTorch/pipeline/nodes/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/autonet_settings.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/create_dataloader.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/create_dataset_info.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/cross_validation.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/embedding_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/ensemble.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/imputation.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/initialization_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/log_functions_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/loss_module_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/lr_scheduler_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/metric_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/network_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/normalization_strategy_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/one_hot_encoding.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/optimization_algorithm.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/optimizer_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/preprocessor_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/resampling_strategy_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/train_node.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes
copying autoPyTorch/pipeline/nodes/image/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/autonet_settings_no_shuffle.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/create_dataset_info.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/create_image_dataloader.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/cross_validation_indices.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/image_augmentation.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/image_dataset_reader.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/loss_module_selector_indices.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/multiple_datasets.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/network_selector_datasetinfo.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/optimization_algorithm_no_timelimit.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/simple_scheduler_selector.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/simple_train_node.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/pipeline/nodes/image/single_dataset.py -> autoPyTorch-0.0.2/autoPyTorch/pipeline/nodes/image
copying autoPyTorch/utils/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/config_space_hyperparameter.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/configspace_wrapper.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/ensemble.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/hyperparameter_search_space_update.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/loggers.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/mem_test_thread.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/modify_config_space.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/modules.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/thread_read_write.py -> autoPyTorch-0.0.2/autoPyTorch/utils
copying autoPyTorch/utils/benchmarking/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking
copying autoPyTorch/utils/benchmarking/benchmark.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/apply_user_updates.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/benchmark_settings.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/create_autonet.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/fit_autonet.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/for_autonet_config.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/for_instance.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/for_run.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/prepare_result_folder.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/read_instance_data.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/save_ensemble_logs.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/save_results.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/set_autonet_config.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/benchmark_pipeline/set_ensemble_config.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/benchmark_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/collect_trajectories.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/get_additional_trajectories.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/get_ensemble_trajectories.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/get_run_trajectories.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/plot_summary.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/plot_trajectories.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/read_instance_info.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/benchmarking/visualization_pipeline/visualization_settings.py -> autoPyTorch-0.0.2/autoPyTorch/utils/benchmarking/visualization_pipeline
copying autoPyTorch/utils/config/__init__.py -> autoPyTorch-0.0.2/autoPyTorch/utils/config
copying autoPyTorch/utils/config/config_condition.py -> autoPyTorch-0.0.2/autoPyTorch/utils/config
copying autoPyTorch/utils/config/config_file_parser.py -> autoPyTorch-0.0.2/autoPyTorch/utils/config
copying autoPyTorch/utils/config/config_option.py -> autoPyTorch-0.0.2/autoPyTorch/utils/config
copying examples/__init__.py -> autoPyTorch-0.0.2/examples
copying test/__init__.py -> autoPyTorch-0.0.2/test
copying test/test_pipeline/__init__.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_cross_validation.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_imputation.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_initialization.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_log_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_loss_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_lr_scheduler_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_metric_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_network_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_normalization_strategy_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_optimization_algorithm.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_optimizer_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
copying test/test_pipeline/test_resampling_strategy_selector.py -> autoPyTorch-0.0.2/test/test_pipeline
Writing autoPyTorch-0.0.2/setup.cfg
Creating tar archive
removing 'autoPyTorch-0.0.2' (and everything under it)
+ /tmp/tmp.LPPNfqdie8/bin/pip install /tmp/tmp.LPPNfqdie8/autoPyTorch-0.0.2.tar.gz
Processing /tmp/tmp.LPPNfqdie8/autoPyTorch-0.0.2.tar.gz
Requirement already satisfied: setuptools in /tmp/tmp.LPPNfqdie8/lib/python3.8/site-packages (from autoPyTorch==0.0.2) (41.2.0)
Collecting Cython (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/c5/b9/5563cbab2507c4f0775c91223a1ec316e6da33a0d7cf4cef41c6d8eb58b8/Cython-0.29.19-cp38-cp38-manylinux1_x86_64.whl
Collecting netifaces (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/0d/18/fd6e9c71a35b67a73160ec80a49da63d1eed2d2055054cc2995714949132/netifaces-0.10.9.tar.gz
Collecting numpy (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/cf/5d/e8198f11dd73a91f7bde15ca88a2b78913fa2b416ae2dc2a6aeafcf4c63d/numpy-1.18.4-cp38-cp38-manylinux1_x86_64.whl
Collecting pandas (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/f5/10/40688389f5e234bde06aa84e6f3ccf5beea6269f57e2bef67866d3b43268/pandas-1.0.3-cp38-cp38-manylinux1_x86_64.whl
Collecting scipy (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/f3/08/8bdcdcd149ea41b655956feb7c19ebf7e1f561738bd5570b6ae015daf411/scipy-1.4.1-cp38-cp38-manylinux1_x86_64.whl
Collecting statsmodels (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/84/91/daae8f782758ebef9d701eb56cb42abdbe89b6245b6002fdaed60b9534aa/statsmodels-0.11.1-cp38-cp38-manylinux1_x86_64.whl
Collecting scikit-learn>=0.20.0 (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/47/14/c094698b7dd17cd2e289974a78d6d2df78c0d9eb0ac4d8d5fad255aaf977/scikit_learn-0.23.1-cp38-cp38-manylinux1_x86_64.whl
Collecting imblearn (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/81/a7/4179e6ebfd654bd0eac0b9c06125b8b4c96a9d0a8ff9e9507eb2a26d2d7e/imblearn-0.0-py2.py3-none-any.whl
Collecting ConfigSpace (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/28/26/eddb59c773bfcc6376ae8e05ddb9b6469c9d7e6abed28d48211a6e5d6541/ConfigSpace-0.4.12.tar.gz (966kB)
Collecting pynisher (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/b2/21/c86c64c305da6d43fb89780d33cbc839c07736b71955a8bdb642a02b7538/pynisher-0.5.0.tar.gz
Collecting hpbandster (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/13/3e/62192b0bb527d9353d222b4b6df14400b3c4f36a92a2b138f11a5eafe000/hpbandster-0.7.4.tar.gz (51kB)
Collecting fasteners (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/18/bd/55eb2d6397b9c0e263af9d091ebdb756b15756029b3cededf6461481bc63/fasteners-0.15-py2.py3-none-any.whl
Collecting torch (from autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/ec/77/6de2895b3f0953f5e4bd9c7bb3f04552124051d1c0eb66697354aa510bf9/torch-1.5.0-cp38-cp38-manylinux1_x86_64.whl
Collecting torchvision (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/45/97/ec9acf1c3fae8d440ca9c786ca44e25534f0e155bac46c0e7dec7763eb1f/torchvision-0.6.0-cp38-cp38-manylinux1_x86_64.whl (6.6MB)
Collecting tensorboard_logger (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/87/7a/ec0fd26dba69191f82eb8f38f5b401c124f45a207490a7ade6ea9717ecdb/tensorboard_logger-0.1.0-py2.py3-none-any.whl
Collecting openml (from autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/68/5b/cd32bb85651eccebfb489cc6ef7f060ce0f62350a6239127e398313090cc/openml-0.10.2.tar.gz (158kB)
Collecting pytz>=2017.2 (from pandas->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/4f/a4/879454d49688e2fad93e59d7d4efda580b783c745fd2ec2a3adf87b0808d/pytz-2020.1-py2.py3-none-any.whl
Collecting python-dateutil>=2.6.1 (from pandas->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/d4/70/d60450c3dd48ef87586924207ae8907090de0b306af2bce5d134d78615cb/python_dateutil-2.8.1-py2.py3-none-any.whl
Collecting patsy>=0.5 (from statsmodels->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/ea/0c/5f61f1a3d4385d6bf83b83ea495068857ff8dfb89e74824c6e9eb63286d8/patsy-0.5.1-py2.py3-none-any.whl
Collecting threadpoolctl>=2.0.0 (from scikit-learn>=0.20.0->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/db/09/cab2f398e28e9f183714afde872b2ce23629f5833e467b151f18e1e08908/threadpoolctl-2.0.0-py3-none-any.whl
Collecting joblib>=0.11 (from scikit-learn>=0.20.0->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/b8/a6/d1a816b89aa1e9e96bcb298eb1ee1854f21662ebc6d55ffa3d7b3b50122b/joblib-0.15.1-py3-none-any.whl
Collecting imbalanced-learn (from imblearn->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/c8/73/36a13185c2acff44d601dc6107b5347e075561a49e15ddd4e69988414c3e/imbalanced_learn-0.6.2-py3-none-any.whl (163kB)
Collecting pyparsing (from ConfigSpace->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/8a/bb/488841f56197b13700afd5658fc279a2025a39e22449b7cf29864669b15d/pyparsing-2.4.7-py2.py3-none-any.whl
Collecting docutils>=0.3 (from pynisher->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/81/44/8a15e45ffa96e6cf82956dd8d7af9e666357e16b0d93b253903475ee947f/docutils-0.16-py2.py3-none-any.whl
Collecting psutil (from pynisher->autoPyTorch==0.0.2)
Collecting Pyro4 (from hpbandster->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/c3/3c/422f6f761076c5679215178a00eca9a68aacfbbc88152c85b15928b60e25/Pyro4-4.80-py2.py3-none-any.whl (89kB)
Collecting serpent (from hpbandster->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/b4/a1/24871492bfc34ea18aee3bf38e0cee22d8c11d8d5e765ccc921103140747/serpent-1.30.2-py3-none-any.whl
Collecting six (from fasteners->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/ee/ff/48bde5c0f013094d729fe4b0316ba2a24774b3ff1c52d924a8a4cb04078a/six-1.15.0-py2.py3-none-any.whl
Collecting monotonic>=0.1 (from fasteners->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/ac/aa/063eca6a416f397bd99552c534c6d11d57f58f2e94c14780f3bbf818c4cf/monotonic-1.5-py2.py3-none-any.whl
Collecting future (from torch->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/45/0b/38b06fd9b92dc2b68d58b75f900e97884c45bedd2ff83203d933cf5851c9/future-0.18.2.tar.gz
Collecting pillow>=4.1.1 (from torchvision->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/06/24/a577011ad2c0dd9793de7fede96af9fb7e97de31f47aa209f5d8e8979124/Pillow-7.1.2-cp38-cp38-manylinux1_x86_64.whl
Collecting protobuf (from tensorboard_logger->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/e0/6f/076967445a5c45d01b75b1a873e8e8c99a26fc54c279b7536eb3be726196/protobuf-3.12.1-cp38-cp38-manylinux1_x86_64.whl
Collecting liac-arff>=2.4.0 (from openml->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/e9/35/fbc9217cfa91d98888b43e1a19c03a50d716108c58494c558c65e308f372/liac-arff-2.4.0.tar.gz
Collecting xmltodict (from openml->autoPyTorch==0.0.2)
  Downloading https://files.pythonhosted.org/packages/28/fd/30d5c1d3ac29ce229f6bdc40bbc20b28f716e8b363140c26eff19122d8a5/xmltodict-0.12.0-py2.py3-none-any.whl
Collecting requests (from openml->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/1a/70/1935c770cb3be6e3a8b78ced23d7e0f3b187f5cbfab4749523ed65d7c9b1/requests-2.23.0-py2.py3-none-any.whl
Collecting certifi>=2017.4.17 (from requests->openml->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/57/2b/26e37a4b034800c960a00c4e1b3d9ca5d7014e983e6e729e33ea2f36426c/certifi-2020.4.5.1-py2.py3-none-any.whl
Collecting chardet<4,>=3.0.2 (from requests->openml->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl
Collecting urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1 (from requests->openml->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/e1/e5/df302e8017440f111c11cc41a6b432838672f5a70aa29227bf58149dc72f/urllib3-1.25.9-py2.py3-none-any.whl
Collecting idna<3,>=2.5 (from requests->openml->autoPyTorch==0.0.2)
  Using cached https://files.pythonhosted.org/packages/89/e3/afebe61c546d18fb1709a61bee788254b40e736cff7271c7de5de2dc4128/idna-2.9-py2.py3-none-any.whl
Installing collected packages: Cython, netifaces, numpy, pytz, six, python-dateutil, pandas, scipy, patsy, statsmodels, threadpoolctl, joblib, scikit-learn, imbalanced-learn, imblearn, pyparsing, ConfigSpace, docutils, psutil, pynisher, serpent, Pyro4, hpbandster, monotonic, fasteners, future, torch, pillow, torchvision, protobuf, tensorboard-logger, liac-arff, xmltodict, certifi, chardet, urllib3, idna, requests, openml, autoPyTorch
  Running setup.py install for netifaces: started
    Running setup.py install for netifaces: finished with status 'done'
  Running setup.py install for ConfigSpace: started
    Running setup.py install for ConfigSpace: still running...
    Running setup.py install for ConfigSpace: finished with status 'done'
  Running setup.py install for pynisher: started
    Running setup.py install for pynisher: finished with status 'done'
  Running setup.py install for hpbandster: started
    Running setup.py install for hpbandster: finished with status 'done'
  Running setup.py install for future: started
    Running setup.py install for future: finished with status 'done'
  Running setup.py install for liac-arff: started
    Running setup.py install for liac-arff: finished with status 'done'
  Running setup.py install for openml: started
    Running setup.py install for openml: finished with status 'done'
  Running setup.py install for autoPyTorch: started
    Running setup.py install for autoPyTorch: finished with status 'done'
Successfully installed ConfigSpace-0.4.12 Cython-0.29.19 Pyro4-4.80 autoPyTorch-0.0.2 certifi-2020.4.5.1 chardet-3.0.4 docutils-0.16 fasteners-0.15 future-0.18.2 hpbandster-0.7.4 idna-2.9 imbalanced-learn-0.6.2 imblearn-0.0 joblib-0.15.1 liac-arff-2.4.0 monotonic-1.5 netifaces-0.10.9 numpy-1.18.4 openml-0.10.2 pandas-1.0.3 patsy-0.5.1 pillow-7.1.2 protobuf-3.12.1 psutil-5.7.0 pynisher-0.5.0 pyparsing-2.4.7 python-dateutil-2.8.1 pytz-2020.1 requests-2.23.0 scikit-learn-0.23.1 scipy-1.4.1 serpent-1.30.2 six-1.15.0 statsmodels-0.11.1 tensorboard-logger-0.1.0 threadpoolctl-2.0.0 torch-1.5.0 torchvision-0.6.0 urllib3-1.25.9 xmltodict-0.12.0
WARNING: You are using pip version 19.2.3, however version 20.1.1 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
+ echo Success
Success
++ rm -rf /tmp/tmp.LPPNfqdie8

@LMZimmer LMZimmer merged commit 4c1a6b4 into automl:master Jun 2, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants