Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

blacklight

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blacklight

AutoML utilizing Genetic Algorithms and Neural Networks

  • 0.1.11
  • PyPI
  • Socket score

Maintainers
1

Blacklight

test Codacy Badge Codacy BadgePyPI - Downloads

Genetic algorithms in autoML.

This project aims to use Genetic Algorithms to optimize the topologies of Deep Neural Networks (DNNs) and explore new possibilities that traditional optimization techniques might overlook. The fitness function of the algorithm is the accuracy of the model, and the genes represent the individual topologies.

Installation

Make sure you have Python 3.9 or higher installed (not greater than 3.11).

Windows, Linux

  1. Create new virtual environment:
    • pip install -m virtualenv
    • python -m venv your_virtual_env_name
    • your_virtual_env_name\Scripts\activate
  2. Install Tensorflow:
    • pip install tensorflow
  3. Install the package:
    • pip install blacklight

MacOS (Intel)

  1. Create new virtual environment:
    • pip install -m virtualenv
    • python -m venv your_virtual_env_name
    • your_virtual_env_name\Scripts\activate
  2. Install Tensorflow:
    • pip install tensorflow-macos
    • pip install tensorflow-metal
  3. Install the package:
    • pip install blacklight

MacOS (Apple Silicon)

  1. Download Miniconda from: https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh
  2. Install Miniconda:
    • Navigate to downloads folder cd ~/Downloads
    • bash Miniconda3-latest-MacOSX-arm64.sh -b -p $HOME/miniconda
  3. Activate Miniconda:
    • source ~/miniconda/bin/activate
  4. Install TensorFlow dependencies:
    • conda install -c apple tensorflow-deps
  5. Install TensorFlow:
    • pip install tensorflow-macos
    • pip install tensorflow-metal
  6. Install the package:
    • pip install blacklight

Hypothesis

The hypothesis of this project is that DNN topologies will converge to either a local maximum or an absolute maximum over the evolution process, offering better performance than a DNN with randomly selected topology. For this experiment, the project will use equivalent activation functions (ReLU) and SGD for back-propagation, holding everything except the topology constant. Updated documentation coming soon.

Methodology

The project utilizes a genetic algorithm to evolve the topology of the DNN. The algorithm starts with a randomly generated population of DNN topologies and evaluates their fitness using the accuracy of the model. The fittest individuals are selected for reproduction, while the weaker ones are discarded. The offspring of the selected individuals are then created through crossover and mutation. This process is repeated for a specified number of generations, and the best-performing topology is chosen as the final output.

Documentation

Documentation can be found at https://blacklightlabs.github.io/blacklight/html/index.html

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc