Skip to main content

LiteCNN: Intuitive Python library for creating, training and visualizing convolutional neural networks. Features simplified CNN layer definition, automated training workflows, model visualization, and seamless Keras-to-ONNX conversion. Includes 15 pre-configured popular models for immediate use.

Project description

LiteCNN - Easy Creating and Visualizing CNN Model

LiteCNN is a Python library designed to simplify the creation, training, and visualization of convolutional neural networks (CNNs). It provides an intuitive interface for deep learning enthusiasts and developers who want to work with CNN models without the complexity often associated with neural network frameworks.

Features

  • Straightforward definition of CNN layers with intuitive syntax
  • Streamlined training and model evolution capabilities
  • Visual representation of model architecture
  • 15 pre-configured popular Keras application models ready for immediate use
  • Seamless conversion of Keras models to ONNX format

Documentation

Documentation

Authors

Tech Stack

Languages: Python

Libraries: Tensorflow, Matplotlib, Numpy, OpenCv

License

MIT

FAQ

what are the advantages ?

  • Very easy and comfortable syntax
  • Full control for developer
  • Automatic data preparation and visualization processes
  • Compatibility of model: option to convert to onnx type file.

What functionalities are under construction?

  • Presets for popular models
  • Exporter and Converter for files with models
  • Special Visualizer to display training process

Contributing

Contributions are always welcome!

See contributing.md for ways to get started.

Please adhere to this project's code of conduct.

Basic Usage/Example

from litecnn.core import LiteCNN
from litecnn.visualizer import TrainingVisualizer
import os
from tensorflow.keras.datasets import cifar10

class_names = ['car', 'plane', 'cat', 'dog', 'bird', 'deer', 'horse', 'frog', 'ship', 'truck']

(x_train, y_train), (x_test, y_test) = cifar10.load_data()

my_file = os.path.join(os.path.dirname(__file__), 'car.jpg')

x_train = x_train[:2000]
y_train = y_train[:2000]
x_test = x_test[:400]
y_test = y_test[:400]
x_train = x_train / 255
x_test = x_test / 255

model = LiteCNN()
model.add_conv(32, 3)
model.add_max_pool(2)
model.add_conv(64, 3)
model.add_max_pool(2)
model.add_conv(128, 3)
model.add_max_pool(2)
model.add_flatten()
model.add_dense(10, activation='softmax')
model.compile()
history = model.train(x_train, y_train, x_test, y_test, epochs=5)
prediction = model.predict(my_file)

visualizer = TrainingVisualizer()
visualizer.plot_training(history)

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

litecnn-1.0.3.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

litecnn-1.0.3-py3-none-any.whl (10.0 kB view details)

Uploaded Python 3

File details

Details for the file litecnn-1.0.3.tar.gz.

File metadata

  • Download URL: litecnn-1.0.3.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.1

File hashes

Hashes for litecnn-1.0.3.tar.gz
Algorithm Hash digest
SHA256 8c6d3bb11424a2b9cd1cb71b45c743f8bf1c9b3108a3fea356dc7ba1b6fcbbfc
MD5 eab469e2c6f7ad9b1444c5ccc2df9afb
BLAKE2b-256 06c84b8f94c931e587169ef06382e09904acf5217fc01784578254fe97b8a80c

See more details on using hashes here.

File details

Details for the file litecnn-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: litecnn-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 10.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.1

File hashes

Hashes for litecnn-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b2ddc5388c71aed361ea24602fd699e119858ca1b10101ec2e104c92ac86d17f
MD5 e4103748cdef4301720aee69b396393b
BLAKE2b-256 c9b94e415485f943d0c219a504fa9d45e7d0b2f91c0d88669eb066b95b3980c7

See more details on using hashes here.

Supported by

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