docs: add some hint comment
This commit is contained in:
parent
e7572347c9
commit
939aa6d92e
@ -1,3 +1,9 @@
|
|||||||
|
'''
|
||||||
|
|
||||||
|
Please implement a Dataset which inherit the PyTorch Dataset class.
|
||||||
|
So that our trainer can load the data from /dataset_dir
|
||||||
|
|
||||||
|
'''
|
||||||
import os
|
import os
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from torch.utils.data import Dataset, DataLoader
|
from torch.utils.data import Dataset, DataLoader
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
|
'''
|
||||||
|
|
||||||
|
Please Implement your model here.
|
||||||
|
|
||||||
|
'''
|
||||||
from torch import nn
|
from torch import nn
|
||||||
import torch.nn.functional as F
|
import torch.nn.functional as F
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user