Skip to main content

Tools of CV(Computer Vision)

Project description

Usage Sample ''''''''''''

.. code:: python

    import torch
    from torch import nn
    from cvx2 import WidthBlock
    from cvx2.wrapper import ImageClassModelWrapper

    model = nn.Sequential(
        WidthBlock(c1=1, c2=32),
        nn.MaxPool2d(kernel_size=2, stride=2),
        WidthBlock(c1=32, c2=64),
        nn.MaxPool2d(kernel_size=2, stride=2),
        nn.Flatten(),
        nn.Linear(in_features=64*49, out_features=1024),
        nn.Dropout(0.2),
        nn.SiLU(inplace=True),
        nn.Linear(in_features=1024, out_features=2),
    )

    img = torch.randn(1, 1, 28, 28)
    print(model(img).shape)

    data_dir
     |__train
     |   |__class1
     |   |   |__001.jpg
     |   |   |__002.jpg
     |   |__class2
     |      |__001.jpg
     |      |__002.jpg
     |__test
     |   |__class1
     |   |   |__001.jpg
     |   |   |__002.jpg
     |   |__class2
     |      |__001.jpg
     |      |__002.jpg
     |__val
         |__class1
         |   |__001.jpg
         |   |__002.jpg
         |__class2
            |__001.jpg
            |__002.jpg

    model_wrapper = ImageClassModelWrapper(model)
    model_wrapper.train(data='data_dir', imgsz=28)
    result = model_wrapper.predict('data_dir/test/class1/001.jpg', imgsz=28)

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

CVX2-0.1.0.tar.gz (13.4 kB view details)

Uploaded Source

File details

Details for the file CVX2-0.1.0.tar.gz.

File metadata

  • Download URL: CVX2-0.1.0.tar.gz
  • Upload date:
  • Size: 13.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for CVX2-0.1.0.tar.gz
Algorithm Hash digest
SHA256 8cfb8de785e3ef2629e2ed66dce13e395c4c605158396574d22d9b05867aaec4
MD5 cafe79e3e9df5e2abddddfd9f42cbdab
BLAKE2b-256 4c35afcea89516d01c5f0f0dfd8a650bb510f9ca1a0accf1e1409fe257c5b5b6

See more details on using hashes here.

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