gitextract_hoze518r/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── informers.gemspec ├── lib/ │ ├── informers/ │ │ ├── backends/ │ │ │ └── onnx.rb │ │ ├── configs.rb │ │ ├── env.rb │ │ ├── model.rb │ │ ├── models.rb │ │ ├── pipelines.rb │ │ ├── processors.rb │ │ ├── tokenizers.rb │ │ ├── utils/ │ │ │ ├── audio.rb │ │ │ ├── core.rb │ │ │ ├── dtypes.rb │ │ │ ├── ffmpeg.rb │ │ │ ├── generation.rb │ │ │ ├── hub.rb │ │ │ ├── image.rb │ │ │ ├── math.rb │ │ │ └── tensor.rb │ │ └── version.rb │ └── informers.rb └── test/ ├── model_test.rb ├── pipeline_test.rb └── test_helper.rb