Skip to main content

No project description provided

Project description

Dreamify

A function that applies deep dream to an image using a pre-trained CNN trained on the ImageNet dataset.

Doggy Cat

Installation

pip install dreamify

Testing it

dreamify

Usage

To apply Dreamify to an image, use the following Python script:

from dreamify.deepdream import deepdream


image_path = "example.jpg"

deepdream(image_path)

You may customize the behavior of the dreamifyer by selecting a different pre-trained model, saving it as a video, etc.:

from dreamify.deepdream import deepdream


image_path = "example.jpg"

deepdream(
    image_path,
    output_path="deepdream.png",
    model_name="inception_v3",
    iterations=100,
    learning_rate=0.01,
    octaves=range(-2, 3),
    octave_scale=1.3,
    save_video=False,
    save_gif=False,
    duration=3,
    vid_duration=3,
    gif_duration=3,
    mirror_video=False,
    seed=None,
)

You may also use an object oriented approach for fine-grained behavior:

from dreamify.deepdream import DeepDream

# Default settings

image_path1 = "example1.jpg"

deepdream = DeepDream()  
deepdream(image_path1)
deepdream.save_video(output_path=dream1.mp4, duration=42, mirror_video=False)
deepdream.save_gif(output_path=dream1.gif, duration=69, mirror_video=True)

##############################################################################

# Configured settings

image_path2 = "example2.jpg"
deepdream = DeepDream(iterations=50, learning_rate=0.1)  
deepdream(image_path2)
deepdream.save_video(output_path=dream2.mp4, duration=42, mirror_video=False)
deepdream.save_gif(output_path=dream2.gif, duration=69, mirror_video=True)

Available Models

Dreamify supports the following models:

Model Name Enum Value
VGG19 vgg19
ConvNeXt-XL convnext_xl
DenseNet121 densenet121
EfficientNet-V2L efficientnet_v2l
Inception-ResNet-V2 inception_resnet_v2
Inception-V3 (Default) inception_v3
ResNet152V2 resnet152v2
Xception xception
MobileNet-V2 mobilenet_v2

Other Examples

DeepDream

Dream (shallow) -- See documentation of dream (shallow).

Project details


Release history Release notifications | RSS feed

This version

1.1.0

Download files

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

Source Distribution

dreamify-1.1.0.tar.gz (15.4 MB view details)

Uploaded Source

Built Distribution

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

dreamify-1.1.0-py3-none-any.whl (15.4 MB view details)

Uploaded Python 3

File details

Details for the file dreamify-1.1.0.tar.gz.

File metadata

  • Download URL: dreamify-1.1.0.tar.gz
  • Upload date:
  • Size: 15.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.10.13 Linux/6.1.43

File hashes

Hashes for dreamify-1.1.0.tar.gz
Algorithm Hash digest
SHA256 d7ef55afc12d0d2edd5f891f8a336548bb62afb4b7b2c289a019802489b68eb3
MD5 b50ec5b40f874236d754c7859b6a25c4
BLAKE2b-256 67655573d66a1c2a8706a60d3206d320b95b819f752ff77c8126156eafaae85d

See more details on using hashes here.

File details

Details for the file dreamify-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: dreamify-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 15.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.1 CPython/3.10.13 Linux/6.1.43

File hashes

Hashes for dreamify-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 0ce608c26bce4bc2d55279d70cbe5be1823a99e870be79580afa6010d5a877d9
MD5 ecfe55dafeaee7033a0f8ad22774d55e
BLAKE2b-256 cef0a96dffc144ae88eb480553ac484a0fd6b4b9fbc96975e3eeab431f118990

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