ANN training in pytorch giving me unchanged lossfunction

Hello i am learning pytorch.My code snippet is given below

import torch
import torch.nn as nn
import torch.nn.functional as F
class Model(nn.Module):
    def __init__(self,in_features=4,h1=8,h2=9,out_features=3):
        #how many layers:
        #intiate the inherrited class of nn.Module
        
        super().__init__()
        #Input layer(4 feature)--> hiddenlayer 1 neural net--->hiddenlayer2 neural net-->output(3 classes of Iris dataset)
        #fully connected layer. I could edit the layers here for example first layer is connected with  h1, h1 is connected with h2 
        # then h2 is connecte with out_Features
        #Alternatively i can use  all values of in_features,hidden layers value and out features  loaded in init parameter
        self.fc1=nn.Linear(in_features,h1)
        self.fc2=nn.Linear(h1,h2)
        self.out=nn.Linear(h2,out_features)
        
    #propagate method  here start  foroward propagation  
    def forward(self,x):
        x=F.relu(self.fc1(x))
        x=F.relu(self.fc2(x))
        x=self.out(x)
        return x
    torch.manual_seed(32)
    model=Model()
    df=pd.read_csv('iris.csv')
    df.tail()
    X=df.drop('target',axis=1).values
    y=df['target'].values
    from sklearn.model_selection import train_test_split
    X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.2, random_state=33)


    X_train=torch.FloatTensor(X_train)
    X_test=torch.FloatTensor(X_test)

    y_train=torch.LongTensor(y_train)

    y_test=torch.LongTensor(y_test)
    criterion=nn.CrossEntropyLoss()
    optimizer=torch.optim.Adam(model.parameters(),lr=0.01)
    epoch=100
    #for tracking loss  lets make it a empty list and then make the loss
    losses=[]
    for i in range(epoch):


   #forward and get a prediction
    y_pred=model.forward(X_train)#passing x_train  to forward function which actually applies features in fully connected neural net and activation function applied on those
    #measuring loss between predicted y, and actual y which is y_train. Using CrossEntropyloss, so we dont need to one hot encoding here
    loss=criterion(y_pred,y_train)
    #append the loss into losses for tracking losses in each epoch completion
    losses.append(loss.item())
    # we print this performance every 10 epoch completion
    if i%10==0:
        print(f'epoch{i} and loss is :{loss}')
    
    #Back propagation
    
    optimizer.zero_grad() #resetting the gradient since it accumulates in every epoch
    #print('Optimizer check',optimizer.zero_grad())
    loss.backward()#adjusting the paramter
   
    optimizer.step# updting the weight and bias

Upto this when I have run my code in jupyter cell

output:

epoch0 and loss is :1.1507114171981812
epoch10 and loss is :1.1507114171981812
epoch20 and loss is :1.1507114171981812
epoch30 and loss is :1.1507114171981812
epoch40 and loss is :1.1507114171981812
epoch50 and loss is :1.1507114171981812
epoch60 and loss is :1.1507114171981812
epoch70 and loss is :1.1507114171981812
epoch80 and loss is :1.1507114171981812
epoch90 and loss is :1.1507114171981812

this loss function is remained unchanged. It should be either raised or get down. why this is happening. and kindly help me to fix this one

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật