Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • D Deep Learning Intro
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 2
    • Merge requests 2
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Bio-IT Workshops
  • Deep Learning Intro
  • Merge requests
  • !1

small fix, number of channels added when calculating the number of parameters

  • Review changes

  • Download
  • Email patches
  • Plain diff
Open Laszlo Dobson requested to merge dobson/deep-learning-intro:main into main Dec 01, 2021
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 1

These lines changed, so the calculation is now correct

width, height = (32, 32) channel=3 n_hidden_neurons = 100 n_bias = 100 n_input_items = width * height n_parameters = (n_input_items * n_hidden_neurons * channel) + n_bias n_parameters

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: main