Skip to content

cybersecurity-dev/awesome-automl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

YouTube Reddit

GitHub   YouTube   My Awesome Lists

Auto-sklearn

Auto-sklearn is using the Python library scikit-learn which is a drop-in replacement for regular scikit-learn classifiers and regressors.

Installing auto-sklearn

  • Linux
    • pip
        python3 -m venv autosklearn-env
        source autosklearn-env/bin/activate   # activate
        pip3 install auto-sklearn
      In order to check your installation, you can use:
        python3 -m pip show auto-sklearn      # show auto-sklearn version and location
        python3 -m pip freeze                 # show all installed packages in the environment
        python3 -c "import auto-sklearn; auto-sklearn.show_versions()"
    • conda
      conda create --name autosklearn-env
      conda activate autosklearn-env          # activate
      conda install auto-sklearn
      In order to check your installation, you can use:
        conda list auto-sklearn               # show auto-sklearn version and location
        python3 -c "import auto-sklearn; auto-sklearn.show_versions()"

Auto-PyTorch

Auto-PyTorch is based on the deep learning framework PyTorch and jointly optimizes hyperparameters and the neural architecture.

My Other Awesome Lists

You can access the my other awesome lists here

Contributing

Contributions of any kind welcome, just follow the guidelines!

Contributors

Thanks goes to these contributors!

🔼 Back to top