Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.learn.tensorflow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.learn.tensorflow
Commits
67c8a148
There was a problem fetching the pipeline summary.
Commit
67c8a148
authored
Oct 5, 2017
by
Tiago de Freitas Pereira
Browse files
Options
Downloads
Patches
Plain Diff
[sphinx] Fixed warnings
parent
e2d0717b
No related branches found
No related tags found
1 merge request
!17
Updates
Pipeline
#
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
bob/learn/tensorflow/datashuffler/__init__.py
+2
-0
2 additions, 0 deletions
bob/learn/tensorflow/datashuffler/__init__.py
bob/learn/tensorflow/network/InceptionResnetV1.py
+17
-12
17 additions, 12 deletions
bob/learn/tensorflow/network/InceptionResnetV1.py
with
19 additions
and
12 deletions
bob/learn/tensorflow/datashuffler/__init__.py
+
2
−
0
View file @
67c8a148
...
...
@@ -56,5 +56,7 @@ __appropriate__(
ImageAugmentation
,
ScaleFactor
,
MeanOffset
,
Linear
,
DiskAudio
,
TFRecord
,
TFRecordImage
)
__all__
=
[
_
for
_
in
dir
()
if
not
_
.
startswith
(
'
_
'
)]
This diff is collapsed.
Click to expand it.
bob/learn/tensorflow/network/InceptionResnetV1.py
+
17
−
12
View file @
67c8a148
...
...
@@ -154,18 +154,23 @@ def inception_resnet_v1(inputs, is_training=True,
bottleneck_layer_size
=
128
,
reuse
=
None
,
scope
=
'
InceptionResnetV1
'
):
"""
Creates the Inception Resnet V1 model.
Args:
inputs: a 4-D tensor of size [batch_size, height, width, 3].
num_classes: number of predicted classes.
is_training: whether is training or not.
dropout_keep_prob: float, the fraction to keep before final layer.
reuse: whether or not the network and its variables should be reused. To be
able to reuse
'
scope
'
must be given.
scope: Optional variable_scope.
Returns:
logits: the logits outputs of the model.
end_points: the set of end_points from the inception model.
"""
Creates the Inception Resnet V1 model.
**Parameters**
inputs:
a 4-D tensor of size [batch_size, height, width, 3].
num_classes:
number of predicted classes.
is_training:
whether is training or not.
dropout_keep_prob:
the fraction to keep before final layer.
reuse:
whether or not the network and its variables should be reused. To be able to reuse
'
scope
'
must be given.
scope:
Optional variable_scope.
"""
end_points
=
{}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment