Building your first Neural Network

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 พ.ย. 2024

ความคิดเห็น • 22

  • @CodeEmporium
    @CodeEmporium  10 หลายเดือนก่อน +4

    What other playlists should I make? Also, If you think I deserve it, please consider giving this video a like. Subscribe for more content like this.

    • @mehedihassan7824
      @mehedihassan7824 9 หลายเดือนก่อน

      can you make some videos on implementing the transformer models in code?

  • @joachimguth6226
    @joachimguth6226 10 หลายเดือนก่อน +1

    Impressive the clarity of layout and speech.

    • @CodeEmporium
      @CodeEmporium  9 หลายเดือนก่อน

      Thanks for the kind words.

  • @aligharaeini5971
    @aligharaeini5971 7 หลายเดือนก่อน +1

    one of the best videos ever about NN , congrats

  • @user-bp2ol4wi1c
    @user-bp2ol4wi1c 9 หลายเดือนก่อน

    Would be cool if you ran though process of building a Neuron class step by step, to better understand how all parts integrate in code as we go before using more advanced libraries. So more step by step bottom up element by element building. I think it would be good way to practice learners intuition about all this. I found many of your videos highly educational. Great content!

  • @prashlovessamosa
    @prashlovessamosa 7 หลายเดือนก่อน

    your 101 series are super informative.

  • @katariya608
    @katariya608 7 หลายเดือนก่อน +1

    its the algorithm to recommend me your video

  • @rashedulhasanrijul5506
    @rashedulhasanrijul5506 8 หลายเดือนก่อน

    Thanks for such a nice explanation

  • @testuser2709
    @testuser2709 10 หลายเดือนก่อน +1

    I think I use a PID type AI most

  • @pradnyakarve6094
    @pradnyakarve6094 8 หลายเดือนก่อน

    Hello, could you please let me know why the following error ?
    RuntimeError: mat1 and mat2 shapes cannot be multiplied (1x5 and 4x6)
    code:
    with torch.no_grad():
    model.eval()
    correct = 0
    total = 0

    for batch_x, batch_y in test_loader:
    outputs = model(batch_x)
    predicted = torch.max(outputs, 1)
    total += batch_y.size(0)
    correct += (predicted == batch_y).sum().item()
    accuracy = correct / total
    print(f'Test accuracy:{accuracy:.2f}')
    class NeuralNetwork(nn.Module):
    def __init__(self, input_size, hidden_size, num_classes):
    super(NeuralNetwork, self).__init__()
    self.fc1 = nn.Linear(input_size, hidden_size)
    self.relu = nn.ReLU()
    self.fc2 = nn.Linear(hidden_size, num_classes)

    def forward(self, x):
    out = self.fc1(x)
    out = self.relu(out)
    out = self.fc2(out)
    return out

  • @apollokre1d
    @apollokre1d 10 หลายเดือนก่อน

    Love the videos, liked and subscribed, looking forward to the series.

    • @CodeEmporium
      @CodeEmporium  10 หลายเดือนก่อน +1

      Thanks so much! Definitely more to come every week

  • @rishavbhattacharjee7182
    @rishavbhattacharjee7182 10 หลายเดือนก่อน

    Quiz 1 option d
    Quiz 2 option b
    Quiz 3 option c

    • @CodeEmporium
      @CodeEmporium  10 หลายเดือนก่อน

      Ding ding ding! Correct ✅

  • @MattSimmonsSysAdmin
    @MattSimmonsSysAdmin 10 หลายเดือนก่อน +1

    Antilock breaks.

    • @CodeEmporium
      @CodeEmporium  10 หลายเดือนก่อน

      Yep! This is a good one for cars

  • @MewingBear
    @MewingBear 8 หลายเดือนก่อน +1

    ChatGpt 3.5

    • @MewingBear
      @MewingBear 8 หลายเดือนก่อน

      aslo know as gpt 3.5

  • @adrielomalley
    @adrielomalley 6 หลายเดือนก่อน

    My meta Raybans

  • @MonicaSurtani
    @MonicaSurtani 3 หลายเดือนก่อน

    d

  • @codinghighlightswithsadra7343
    @codinghighlightswithsadra7343 9 หลายเดือนก่อน +1

    Quiz 1 option d
    Quiz 2 option b
    Quiz 3 option c