Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • otbtf otbtf
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 6
    • Issues 6
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Container Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Cresson Remi
  • otbtfotbtf
  • Issues
  • #8

Closed
Open
Created Oct 26, 2021 by Narcon Nicolas@nicolas.narconDeveloper

Support model with no-named inputs/outputs

OTBTF should handle a model that doesn't name inputs/outputs, e.g. a model created like that :

import tensorflow as tf
# Input
x1 = tf.keras.Input(shape=[None, None, 4])  # [h, w, N]
x2 = tf.keras.Input(shape=[None, None, 4])  # [h, w, N]

# Compute multiply
y = tf.math.multiply(x1, x2)

# Create model
model = tf.keras.Model(inputs=[x1, x2], outputs=y, name="multiply")
model.save("my_model_multiply")

When running TensorflowModelServe, the user could ommit the source#.placeholder and output.names arguments

Edited Oct 28, 2021 by Narcon Nicolas
Assignee
Assign to
Time tracking