* ML | DL

PyTorch Docs torch.Tensor.repeat Repeats this tensor along the specified dimensions. 특정 dimension에 따라 텐서를 반복함. Parameters: sizes (torch.Size or int...) – The number of times to repeat this tensor along each dimension. 각 dimension에 따라 이 텐서를 반복하는 횟수. Example: x = torch.tensor([1, 2, 3]) # torch.Size([3]) x1 = x.repeat(4, 2) # torch.Size([4, 6]) x2 = x.repeat(4, 2, 1) # torch.Size([4, 2, 3]) x3 = x..

Person 클래스는 name 인스턴스 속성을 가지고, 생성자가 호출될 때 지정된다. introduce 메소드는 name 속성을 print 한다. class Person(): def __init__(self, name): self.name = name def introduce(self): print(f"Hello. My name is {self.name}.") sam = Person("sam") sam.introduce() # Hello. My name is sam. Person 클래스를 상속받는 자식 클래스 Student를 생성해보자. Student는 Person의 name 속성을 갖고, 새로운 studentID 속성을 가지는 클래스로 생성할 것이다. class Student(Person): def _..