Skip to main content

A libirary to automate developing keras models

Project description

Introduction

  • This project helps the begginers to generate ai models with 1 line of code.
  • It is also useful for experts as it will automate repetative task and experts can focus upon main model
  • It works right now only for image classification but there may be updates in future

Simple Usage for Begginers

  • Here, I have created a model to classify humuan face into 7 emotions in just 4 lines
    from amit26april.image_cnn import classification

    model = classification()
    model = model.create('TRAIN',7)
    model.predict([x_test[0]])

Simple usage for Experts

  • Here the preperation of data is automated and it now depends upon developer , how to move futher
    from amit26april.image_cnn import classification

    x=classification()
    df = x.create_dataframe('TRAIN')
    y_train = x.prep_y_train
    x_train = x.prep_x_train
    # Rest complex work can be done on own

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

amit26april-0.0.4.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

amit26april-0.0.4-py3-none-any.whl (4.0 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