Simple tools to provide a Keras-like interface to PyTorch.
Project description
Korch
Simple tools to provide a Keras-like interface to PyTorch.
Install
pip install korch
Example of usage
We can perform a very simple example using the Fashion MNIST dataset (as is done in the official PyTorch docs.
transform = transforms.Compose(
[transforms.ToTensor(),
transforms.Normalize((0.5,), (0.5,))])
# Create datasets for training & validation, download if necessary
training_set = torchvision.datasets.FashionMNIST('./data', train=True, transform=transform, download=True)
validation_set = torchvision.datasets.FashionMNIST('./data', train=False, transform=transform, download=True)
# Create data loaders for our datasets; shuffle for training, not for validation
training_loader = torch.utils.data.DataLoader(training_set, batch_size=4, shuffle=True, num_workers=2)
validation_loader = torch.utils.data.DataLoader(validation_set, batch_size=4, shuffle=False, num_workers=2)
See that the only different with respect to basic PyTorch is that we're inhereting from our custom Module, not from PyTorch's nn.Module:
class SimpleModel(Module):
def __init__(self):
super(SimpleModel, self).__init__()
self.conv1 = nn.Conv2d(1, 6, 5)
self.pool = nn.MaxPool2d(2, 2)
self.conv2 = nn.Conv2d(6, 16, 5)
self.fc1 = nn.Linear(16 * 4 * 4, 120)
self.fc2 = nn.Linear(120, 84)
self.fc3 = nn.Linear(84, 10)
def forward(self, x):
x = self.pool(F.relu(self.conv1(x)))
x = self.pool(F.relu(self.conv2(x)))
x = x.view(-1, 16 * 4 * 4)
x = F.relu(self.fc1(x))
x = F.relu(self.fc2(x))
x = self.fc3(x)
return x
Following the usual Keras way, we instantiate the model and compile it, providing the loss and the optimizer. Metrics can be provided as well, and are expected as torchvision.MetricCollection:
model = SimpleModel()
model.compile(loss=torch.nn.CrossEntropyLoss(),
optimizer=torch.optim.SGD(model.parameters(), lr=0.001, momentum=0.9),
metrics = MetricCollection([Accuracy()]))
model
SimpleModel(
(conv1): Conv2d(1, 6, kernel_size=(5, 5), stride=(1, 1))
(pool): MaxPool2d(kernel_size=2, stride=2, padding=0, dilation=1, ceil_mode=False)
(conv2): Conv2d(6, 16, kernel_size=(5, 5), stride=(1, 1))
(fc1): Linear(in_features=256, out_features=120, bias=True)
(fc2): Linear(in_features=120, out_features=84, bias=True)
(fc3): Linear(in_features=84, out_features=10, bias=True)
(loss_fn): CrossEntropyLoss()
)
model.evaluate(training_loader), model.evaluate(validation_loader)
(2.3070596095879874, 2.307082461261749)
model.fit(trainloader=training_loader, epochs=1, validationloader=validation_loader)
model.evaluate(training_loader), model.evaluate(validation_loader)
(0.39349932589025605, 0.42693415356237674)
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file korch-0.0.2.tar.gz.
File metadata
- Download URL: korch-0.0.2.tar.gz
- Upload date:
- Size: 11.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
89dba55fad774048a4809ab08cac7478ce9595cbb7af3d801c7ebe01183ea957
|
|
| MD5 |
00237c616e85a7409405043a38de23d4
|
|
| BLAKE2b-256 |
801eb74344df7b62aee80b6e7224f504a6fc518609b9ab65cd61a6608576f397
|
File details
Details for the file korch-0.0.2-py3-none-any.whl.
File metadata
- Download URL: korch-0.0.2-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37cafed2864e2d9f29fadaaa2d100217529b34ef8d2b8225a77cd170e85b7f5d
|
|
| MD5 |
c64ef9bc633eadabab8a38af201aa95f
|
|
| BLAKE2b-256 |
3bb33a2f133a0ed144f877a729a70e30b855acf65815462686f64bb35493c346
|