Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dl_on_supercomputers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HPC4NS
dl_on_supercomputers
Merge requests
!4
Updated to use Tensorflow2
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Updated to use Tensorflow2
tf2
into
master
Overview
0
Commits
8
Pipelines
0
Changes
61
Merged
Updated to use Tensorflow2
Ghost User
requested to merge
tf2
into
master
May 18, 2021
Overview
0
Commits
8
Pipelines
0
Changes
61
This MR constitutes a major overhaul. The following changes have been made:
Tensorflow code samples now use Tensorflow2
Removed all Caffe samples and corresponding resources
Updated the tutorial in general to include all the new machines.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
912f6813
8 commits,
May 18, 2021
61 files
+
672
−
2220
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
61
caffe/lenet_python/lenet_auto_solver.prototxt deleted
100644 → 0
+
0
−
24
View file @ 48785ddb
# The train/test net protocol buffer definition
train_net: "lenet_auto_train.prototxt"
test_net: "lenet_auto_test.prototxt"
# test_iter specifies how many forward passes the test should carry out.
# In the case of MNIST, we have test batch size 100 and 100 test iterations,
# covering the full 10,000 testing images.
test_iter: 100
# Carry out testing every 500 training iterations.
test_interval: 500
# The base learning rate, momentum and the weight decay of the network.
base_lr: 0.01
momentum: 0.9
weight_decay: 0.0005
# The learning rate policy
lr_policy: "inv"
gamma: 0.0001
power: 0.75
# Display every 100 iterations
display: 100
# The maximum number of iterations
max_iter: 10000
# snapshot intermediate results
snapshot: 5000
snapshot_prefix: "snapshots/lenet"
Loading