Tools of CV(Computer Vision)
Project description
Usage Sample ''''''''''''
.. code:: python
from torch import nn
from cvx2 import WidthBlock
from cvx2.wrapper import ImageClassifyModelWrapper
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),
)
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 = ImageClassifyModelWrapper(model)
model_wrapper.train(data='data_dir', imgsz=28)
result = model_wrapper.predict('data_dir/test/class1/001.jpg', imgsz=28)
Project details
Release history Release notifications | RSS feed
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.6.tar.gz
(15.1 kB
view details)
File details
Details for the file CVX2-0.1.6.tar.gz.
File metadata
- Download URL: CVX2-0.1.6.tar.gz
- Upload date:
- Size: 15.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
66ee6a26345b9b7b81e9a410c33d4c9a11adb46cab3ca84b65976c274a6c3b07
|
|
| MD5 |
6d7fed1d3e724d3999f17a7266d32cb2
|
|
| BLAKE2b-256 |
3b6149a6f6b05909b26fae2dc81097e34405dfcdfd4de7711c3c77e79a511001
|