Spaces:
Runtime error
Runtime error
File size: 1,291 Bytes
ef5cc0b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import torch
import torchvision
import torch.nn as nn
from torchvision import transforms
## Add more imports if required
####################################################################################################################
# Define your model and transform and all necessary helper functions here #
# They will be imported to the exp_recognition.py file #
####################################################################################################################
# Definition of classes as dictionary
classes = {0: 'ANGER', 1: 'DISGUST', 2: 'FEAR', 3: 'HAPPINESS', 4: 'NEUTRAL', 5: 'SADNESS', 6: 'SURPRISE'}
# Example Network
class facExpRec(torch.nn.Module):
def __init__(self):
pass # remove 'pass' once you have written your code
#YOUR CODE HERE
def forward(self, x):
pass # remove 'pass' once you have written your code
#YOUR CODE HERE
# Sample Helper function
def rgb2gray(image):
return image.convert('L')
# Sample Transformation function
#YOUR CODE HERE for changing the Transformation values.
trnscm = transforms.Compose([rgb2gray, transforms.Resize((48,48)), transforms.ToTensor()]) |