Skip to main content

A Machine learning library

Project description

CortexFlow

Welcome to CortexFlow, a Python library designed for efficient neural network evaluation, regression analysis, and optimization tasks. This library simplifies the process of evaluating and optimizing neural network models, making it accessible to beginners and experienced data scientists. CortexFlow is equipped with a variety of tools for analysis and optimization, providing accurate insights into your data. ##Features 1.Evaluate neural network models for both classification and regression tasks. 2.Analyze the impact of various activation functions and model configurations. 3.Perform regression analysis on datasets.

Installation

You can install CortexFlow using pip:

pip install cortexflow

Usage

Neural Network Evaluation

CortexFlow simplifies neural network evaluation for both classification and regression tasks. Example usage:

from cortexflow import neural_classification_evaluation, neural_regression_evaluation
from tensorflow.keras.optimizers import SGD, RMSprop, Adam, Adadelta, Adagrad, Adamax, Nadam, Ftrl


# Example data
X_data = ...
y_labels = ...

# Classification evaluation
neural_classification_evaluation(X_data, y_labels, input_shape=(num_features,),
                                 problem='binary/multiclass', activation='all'/'single_activation',
                                 optimizer_class=Adam, hidden_layers=2, neurons_per_hidden=100)

# Single_activation=['relu', 'elu', 'selu', 'sigmoid','LeakyReLU', 'tanh', 'softmax', 'softplus', 'softsign'] From this you can choose any of this
# optimizer_class=any of you choice SGD, RMSprop, Adam, Adadelta, Adagrad, Adamax, Nadam, Ftrl

# Regression evaluation
X_iris = ...
y_regression = ...
neural_regression_evaluation(X_iris, y_regression, input_shape=(4,), activation='all',
                             optimizer_class=Adam, hidden_layers=2, neurons_per_hidden=100)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cortexflow-1.0.8.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

cortexflow-1.0.8-py3-none-any.whl (4.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page