Skip to main content

Deep Learning library

Project description

DeepThink

DeepThink is a deep learning library for Python, designed as a learning project and as a resource for others looking to learn about deep learning. It provides a high-level interface for building, training, and evaluating deep learning models, as well as a range of utilities for working with data and optimizing models.

Features

  • A high-level API for defining, training, and evaluating models with minimal code
  • Utilities for data loading, preprocessing, and model evaluation
  • Tools for debugging, profiling, and optimizing models
  • A range of examples to illustrate several use cases

Please note that DeepThink is a basic deep learning library and may not have the same level of performance or support for advanced features as other more established deep learning libraries.

Installation

pip install deepthink

Quickstart

Here is a simple example of how to use DeepThink to train a deep learning model:

from deepthink.optimizers import Adam
from deepthink.layers import Dense, Conv2D, MaxPooling, Flatten
from deepthink.model import Model
from deepthink.activations import ReLU,  Softmax
from deepthink.utils import load_mnist_data
from deepthink.loss import CategoricalCrossEntropy

# Load dataset
training_data, test_data = load_mnist_data()

# Creating a model
optimizer = Adam(0.001)
model = Model(optimizer, cost=CategoricalCrossEntropy(), batch_size=64)

model.add_layer(Conv2D(kernel_size=5, n_filters=8,
                       input_shape=(64, 1, 28, 28)))
model.add_layer(ReLU())
model.add_layer(MaxPooling())
model.add_layer(Flatten())
model.add_layer(Dense(16))
model.add_layer(ReLU())
model.add_layer(Dense(10))
model.add_layer(Softmax())

model.initialize()

# Train the model
history = model.train(training_data, test_data, epochs=5)

You can find additional examples in the examples directory.

Contributing

Contributions are more than welcome to DeepThink! If you would like to report a bug, request a feature, or contribute code, please create an issue or submit a pull request.

License

DeepThink is released under the MIT License.

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

deepthink-0.2.1.tar.gz (25.3 kB view details)

Uploaded Source

Built Distribution

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

deepthink-0.2.1-py3-none-any.whl (27.4 kB view details)

Uploaded Python 3

File details

Details for the file deepthink-0.2.1.tar.gz.

File metadata

  • Download URL: deepthink-0.2.1.tar.gz
  • Upload date:
  • Size: 25.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for deepthink-0.2.1.tar.gz
Algorithm Hash digest
SHA256 38c99eb83c8ee6f3fffc6d5228946a0cee4e86b43017d8511fdfc214b9406f7c
MD5 6ab93b683951aef2ab28e00b937e9229
BLAKE2b-256 02dfc7353c96df5f6ea2cc4015f3626f422e3df260e7505c0175aa75501dcc12

See more details on using hashes here.

File details

Details for the file deepthink-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: deepthink-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for deepthink-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 555b278fbc69f0cd62d916c9e7531f0cc0a20389a70b512257a38508894b130e
MD5 6b7066cbbd7b12de373e090f13663e97
BLAKE2b-256 a4fde422ecb94bee280eb778fd311d43f334e82801736c63cba0d32610e74186

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