Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • F five-video-classification-methods
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 47
    • Issues 47
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 7
    • Merge requests 7
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Matt Harvey
  • five-video-classification-methods
  • Merge requests
  • !89

update dropout in lrcn model

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Anner requested to merge github/fork/Anner-deJong/patch-1 into master Jun 01, 2018
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 1

I believe you are applying 0.5 dropout twice to your LSTM layer in the LRCN network, in effect applying 0.75 dropout, is that true? (Excuse me if I'm wrong)

Depending on where we want to apply dropout, we can choose from several options. This patch cannot be included directly, as one of the provided options has to be chosen. Option 1 applies dropout to the LSTM input Option 2 applies dropout to the LSTM input and to the recurrent/hidden input (in case that was the intention of the second written dropout) Option 3 applies dropout to the LSTM input, as well as the subsequent FC layer, if that was the intention of the second written dropout)

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: github/fork/Anner-deJong/patch-1