Class: Executorch::Model

Inherits:
Object
  • Object
show all
Defined in:
lib/executorch.rb

Overview

Extend Model with Ruby-friendly methods

Instance Method Summary collapse

Instance Method Details

#call(inputs) ⇒ Object

Make model callable



208
209
210
# File 'lib/executorch.rb', line 208

def call(inputs)
  forward(inputs)
end