onnxruntime 0.6.1 → 0.6.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +8 -7
- data/lib/onnxruntime/version.rb +1 -1
- data/vendor/ThirdPartyNotices.txt +380 -23
- data/vendor/libonnxruntime.dylib +0 -0
- data/vendor/libonnxruntime.so +0 -0
- data/vendor/onnxruntime.dll +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc44bf1eb0c6238943559059aa89b53a5c9f6a0d417b746396d06d061e4e50d8
|
4
|
+
data.tar.gz: 040f930797a6535977817de935199546c3d7003c52214dda926741f84c39ef3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ae90e403d6e329edfb75ec677915249384bf2e4953eeea34578d6269f862043818586a5855c00912da8a042a0962235051920f037cde05d6e6370e1b2d6261c3
|
7
|
+
data.tar.gz: 9138182d0e586be8c9a5961e8ffc6c90616d52b8e77b13ae2bf64670806ace76a7a6934f83403969c72582c5961410300929bb715185a5a970f73e360c9713a5
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
## 0.6.5 (2021-12-07)
|
2
|
+
|
3
|
+
- Updated ONNX Runtime to 1.10.0
|
4
|
+
|
5
|
+
## 0.6.4 (2021-09-22)
|
6
|
+
|
7
|
+
- Updated ONNX Runtime to 1.9.0
|
8
|
+
|
9
|
+
## 0.6.3 (2021-07-08)
|
10
|
+
|
11
|
+
- Updated ONNX Runtime to 1.8.1
|
12
|
+
|
13
|
+
## 0.6.2 (2021-06-03)
|
14
|
+
|
15
|
+
- Updated ONNX Runtime to 1.8.0
|
16
|
+
|
1
17
|
## 0.6.1 (2021-05-17)
|
2
18
|
|
3
19
|
- Fixed memory errors
|
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
# ONNX Runtime
|
1
|
+
# ONNX Runtime Ruby
|
2
2
|
|
3
3
|
:fire: [ONNX Runtime](https://github.com/Microsoft/onnxruntime) - the high performance scoring engine for ML models - for Ruby
|
4
4
|
|
5
5
|
Check out [an example](https://ankane.org/tensorflow-ruby)
|
6
6
|
|
7
|
-
[![Build Status](https://github.com/ankane/onnxruntime/workflows/build/badge.svg?branch=master)](https://github.com/ankane/onnxruntime/actions)
|
7
|
+
[![Build Status](https://github.com/ankane/onnxruntime-ruby/workflows/build/badge.svg?branch=master)](https://github.com/ankane/onnxruntime-ruby/actions)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
@@ -78,6 +78,7 @@ OnnxRuntime::Model.new(path_or_bytes, {
|
|
78
78
|
|
79
79
|
```ruby
|
80
80
|
model.predict(input_feed, {
|
81
|
+
output_names: nil,
|
81
82
|
log_severity_level: 2,
|
82
83
|
log_verbosity_level: 0,
|
83
84
|
logid: nil,
|
@@ -111,22 +112,22 @@ OnnxRuntime.ffi_lib = "path/to/lib/libonnxruntime.so" # onnxruntime.dll for Wind
|
|
111
112
|
|
112
113
|
## History
|
113
114
|
|
114
|
-
View the [changelog](https://github.com/ankane/onnxruntime/blob/master/CHANGELOG.md)
|
115
|
+
View the [changelog](https://github.com/ankane/onnxruntime-ruby/blob/master/CHANGELOG.md)
|
115
116
|
|
116
117
|
## Contributing
|
117
118
|
|
118
119
|
Everyone is encouraged to help improve this project. Here are a few ways you can help:
|
119
120
|
|
120
|
-
- [Report bugs](https://github.com/ankane/onnxruntime/issues)
|
121
|
-
- Fix bugs and [submit pull requests](https://github.com/ankane/onnxruntime/pulls)
|
121
|
+
- [Report bugs](https://github.com/ankane/onnxruntime-ruby/issues)
|
122
|
+
- Fix bugs and [submit pull requests](https://github.com/ankane/onnxruntime-ruby/pulls)
|
122
123
|
- Write, clarify, or fix documentation
|
123
124
|
- Suggest or add new features
|
124
125
|
|
125
126
|
To get started with development and testing:
|
126
127
|
|
127
128
|
```sh
|
128
|
-
git clone https://github.com/ankane/onnxruntime.git
|
129
|
-
cd onnxruntime
|
129
|
+
git clone https://github.com/ankane/onnxruntime-ruby.git
|
130
|
+
cd onnxruntime-ruby
|
130
131
|
bundle install
|
131
132
|
bundle exec rake vendor:all
|
132
133
|
bundle exec rake test
|
data/lib/onnxruntime/version.rb
CHANGED
@@ -3868,7 +3868,7 @@ _____
|
|
3868
3868
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
3869
3869
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
3870
3870
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
3871
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
3871
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
3872
3872
|
_____
|
3873
3873
|
huggingface/transformers
|
3874
3874
|
|
@@ -4387,36 +4387,393 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
4387
4387
|
|
4388
4388
|
_____
|
4389
4389
|
|
4390
|
-
|
4390
|
+
DLPack
|
4391
4391
|
|
4392
|
-
|
4392
|
+
https://github.com/dmlc/dlpack
|
4393
4393
|
|
4394
|
-
|
4394
|
+
Apache License
|
4395
|
+
Version 2.0, January 2004
|
4396
|
+
http://www.apache.org/licenses/
|
4395
4397
|
|
4396
|
-
|
4398
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
4397
4399
|
|
4398
|
-
|
4400
|
+
1. Definitions.
|
4399
4401
|
|
4400
|
-
|
4401
|
-
|
4402
|
-
this license (the "Software") to use, reproduce, display, distribute,
|
4403
|
-
execute, and transmit the Software, and to prepare derivative works of the
|
4404
|
-
Software, and to permit third-parties to whom the Software is furnished to
|
4405
|
-
do so, all subject to the following:
|
4402
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
4403
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
4406
4404
|
|
4407
|
-
|
4408
|
-
the
|
4409
|
-
|
4410
|
-
|
4411
|
-
|
4412
|
-
|
4405
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
4406
|
+
the copyright owner that is granting the License.
|
4407
|
+
|
4408
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
4409
|
+
other entities that control, are controlled by, or are under common
|
4410
|
+
control with that entity. For the purposes of this definition,
|
4411
|
+
"control" means (i) the power, direct or indirect, to cause the
|
4412
|
+
direction or management of such entity, whether by contract or
|
4413
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
4414
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
4415
|
+
|
4416
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
4417
|
+
exercising permissions granted by this License.
|
4418
|
+
|
4419
|
+
"Source" form shall mean the preferred form for making modifications,
|
4420
|
+
including but not limited to software source code, documentation
|
4421
|
+
source, and configuration files.
|
4422
|
+
|
4423
|
+
"Object" form shall mean any form resulting from mechanical
|
4424
|
+
transformation or translation of a Source form, including but
|
4425
|
+
not limited to compiled object code, generated documentation,
|
4426
|
+
and conversions to other media types.
|
4427
|
+
|
4428
|
+
"Work" shall mean the work of authorship, whether in Source or
|
4429
|
+
Object form, made available under the License, as indicated by a
|
4430
|
+
copyright notice that is included in or attached to the work
|
4431
|
+
(an example is provided in the Appendix below).
|
4432
|
+
|
4433
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
4434
|
+
form, that is based on (or derived from) the Work and for which the
|
4435
|
+
editorial revisions, annotations, elaborations, or other modifications
|
4436
|
+
represent, as a whole, an original work of authorship. For the purposes
|
4437
|
+
of this License, Derivative Works shall not include works that remain
|
4438
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
4439
|
+
the Work and Derivative Works thereof.
|
4440
|
+
|
4441
|
+
"Contribution" shall mean any work of authorship, including
|
4442
|
+
the original version of the Work and any modifications or additions
|
4443
|
+
to that Work or Derivative Works thereof, that is intentionally
|
4444
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
4445
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
4446
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
4447
|
+
means any form of electronic, verbal, or written communication sent
|
4448
|
+
to the Licensor or its representatives, including but not limited to
|
4449
|
+
communication on electronic mailing lists, source code control systems,
|
4450
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
4451
|
+
Licensor for the purpose of discussing and improving the Work, but
|
4452
|
+
excluding communication that is conspicuously marked or otherwise
|
4453
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
4454
|
+
|
4455
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
4456
|
+
on behalf of whom a Contribution has been received by Licensor and
|
4457
|
+
subsequently incorporated within the Work.
|
4458
|
+
|
4459
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
4460
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4461
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4462
|
+
copyright license to reproduce, prepare Derivative Works of,
|
4463
|
+
publicly display, publicly perform, sublicense, and distribute the
|
4464
|
+
Work and such Derivative Works in Source or Object form.
|
4465
|
+
|
4466
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
4467
|
+
this License, each Contributor hereby grants to You a perpetual,
|
4468
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
4469
|
+
(except as stated in this section) patent license to make, have made,
|
4470
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
4471
|
+
where such license applies only to those patent claims licensable
|
4472
|
+
by such Contributor that are necessarily infringed by their
|
4473
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
4474
|
+
with the Work to which such Contribution(s) was submitted. If You
|
4475
|
+
institute patent litigation against any entity (including a
|
4476
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
4477
|
+
or a Contribution incorporated within the Work constitutes direct
|
4478
|
+
or contributory patent infringement, then any patent licenses
|
4479
|
+
granted to You under this License for that Work shall terminate
|
4480
|
+
as of the date such litigation is filed.
|
4481
|
+
|
4482
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
4483
|
+
Work or Derivative Works thereof in any medium, with or without
|
4484
|
+
modifications, and in Source or Object form, provided that You
|
4485
|
+
meet the following conditions:
|
4486
|
+
|
4487
|
+
(a) You must give any other recipients of the Work or
|
4488
|
+
Derivative Works a copy of this License; and
|
4489
|
+
|
4490
|
+
(b) You must cause any modified files to carry prominent notices
|
4491
|
+
stating that You changed the files; and
|
4492
|
+
|
4493
|
+
(c) You must retain, in the Source form of any Derivative Works
|
4494
|
+
that You distribute, all copyright, patent, trademark, and
|
4495
|
+
attribution notices from the Source form of the Work,
|
4496
|
+
excluding those notices that do not pertain to any part of
|
4497
|
+
the Derivative Works; and
|
4498
|
+
|
4499
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
4500
|
+
distribution, then any Derivative Works that You distribute must
|
4501
|
+
include a readable copy of the attribution notices contained
|
4502
|
+
within such NOTICE file, excluding those notices that do not
|
4503
|
+
pertain to any part of the Derivative Works, in at least one
|
4504
|
+
of the following places: within a NOTICE text file distributed
|
4505
|
+
as part of the Derivative Works; within the Source form or
|
4506
|
+
documentation, if provided along with the Derivative Works; or,
|
4507
|
+
within a display generated by the Derivative Works, if and
|
4508
|
+
wherever such third-party notices normally appear. The contents
|
4509
|
+
of the NOTICE file are for informational purposes only and
|
4510
|
+
do not modify the License. You may add Your own attribution
|
4511
|
+
notices within Derivative Works that You distribute, alongside
|
4512
|
+
or as an addendum to the NOTICE text from the Work, provided
|
4513
|
+
that such additional attribution notices cannot be construed
|
4514
|
+
as modifying the License.
|
4515
|
+
|
4516
|
+
You may add Your own copyright statement to Your modifications and
|
4517
|
+
may provide additional or different license terms and conditions
|
4518
|
+
for use, reproduction, or distribution of Your modifications, or
|
4519
|
+
for any such Derivative Works as a whole, provided Your use,
|
4520
|
+
reproduction, and distribution of the Work otherwise complies with
|
4521
|
+
the conditions stated in this License.
|
4522
|
+
|
4523
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
4524
|
+
any Contribution intentionally submitted for inclusion in the Work
|
4525
|
+
by You to the Licensor shall be under the terms and conditions of
|
4526
|
+
this License, without any additional terms or conditions.
|
4527
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
4528
|
+
the terms of any separate license agreement you may have executed
|
4529
|
+
with Licensor regarding such Contributions.
|
4530
|
+
|
4531
|
+
6. Trademarks. This License does not grant permission to use the trade
|
4532
|
+
names, trademarks, service marks, or product names of the Licensor,
|
4533
|
+
except as required for reasonable and customary use in describing the
|
4534
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
4535
|
+
|
4536
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
4537
|
+
agreed to in writing, Licensor provides the Work (and each
|
4538
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
4539
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
4540
|
+
implied, including, without limitation, any warranties or conditions
|
4541
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
4542
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
4543
|
+
appropriateness of using or redistributing the Work and assume any
|
4544
|
+
risks associated with Your exercise of permissions under this License.
|
4545
|
+
|
4546
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
4547
|
+
whether in tort (including negligence), contract, or otherwise,
|
4548
|
+
unless required by applicable law (such as deliberate and grossly
|
4549
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
4550
|
+
liable to You for damages, including any direct, indirect, special,
|
4551
|
+
incidental, or consequential damages of any character arising as a
|
4552
|
+
result of this License or out of the use or inability to use the
|
4553
|
+
Work (including but not limited to damages for loss of goodwill,
|
4554
|
+
work stoppage, computer failure or malfunction, or any and all
|
4555
|
+
other commercial damages or losses), even if such Contributor
|
4556
|
+
has been advised of the possibility of such damages.
|
4557
|
+
|
4558
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
4559
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
4560
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
4561
|
+
or other liability obligations and/or rights consistent with this
|
4562
|
+
License. However, in accepting such obligations, You may act only
|
4563
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
4564
|
+
of any other Contributor, and only if You agree to indemnify,
|
4565
|
+
defend, and hold each Contributor harmless for any liability
|
4566
|
+
incurred by, or claims asserted against, such Contributor by reason
|
4567
|
+
of your accepting any such warranty or additional liability.
|
4568
|
+
|
4569
|
+
END OF TERMS AND CONDITIONS
|
4570
|
+
|
4571
|
+
APPENDIX: How to apply the Apache License to your work.
|
4572
|
+
|
4573
|
+
To apply the Apache License to your work, attach the following
|
4574
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
4575
|
+
replaced with your own identifying information. (Don't include
|
4576
|
+
the brackets!) The text should be enclosed in the appropriate
|
4577
|
+
comment syntax for the file format. We also recommend that a
|
4578
|
+
file or class name and description of purpose be included on the
|
4579
|
+
same "printed page" as the copyright notice for easier
|
4580
|
+
identification within third-party archives.
|
4581
|
+
|
4582
|
+
Copyright 2017 by Contributors
|
4583
|
+
|
4584
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
4585
|
+
you may not use this file except in compliance with the License.
|
4586
|
+
You may obtain a copy of the License at
|
4587
|
+
|
4588
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
4589
|
+
|
4590
|
+
Unless required by applicable law or agreed to in writing, software
|
4591
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
4592
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
4593
|
+
See the License for the specific language governing permissions and
|
4594
|
+
limitations under the License.
|
4595
|
+
|
4596
|
+
_____
|
4597
|
+
|
4598
|
+
emsdk
|
4599
|
+
|
4600
|
+
MIT/Expat license
|
4601
|
+
|
4602
|
+
https://github.com/emscripten-core/emsdk
|
4603
|
+
|
4604
|
+
Copyright (c) 2018 Emscripten authors (see AUTHORS in Emscripten)
|
4605
|
+
|
4606
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4607
|
+
of this software and associated documentation files (the "Software"), to deal
|
4608
|
+
in the Software without restriction, including without limitation the rights
|
4609
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4610
|
+
copies of the Software, and to permit persons to whom the Software is
|
4611
|
+
furnished to do so, subject to the following conditions:
|
4612
|
+
|
4613
|
+
The above copyright notice and this permission notice shall be included in all
|
4614
|
+
copies or substantial portions of the Software.
|
4413
4615
|
|
4414
4616
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4415
4617
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4416
|
-
FITNESS FOR A PARTICULAR PURPOSE
|
4417
|
-
|
4418
|
-
|
4419
|
-
|
4420
|
-
|
4618
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4619
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4620
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4621
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4622
|
+
SOFTWARE.
|
4623
|
+
|
4624
|
+
----------------------------------------------------------------------------
|
4625
|
+
|
4626
|
+
This is the MIT/Expat Licence. For more information see:
|
4627
|
+
|
4628
|
+
1. http://www.opensource.org/licenses/mit-license.php
|
4629
|
+
|
4630
|
+
2. http://en.wikipedia.org/wiki/MIT_License
|
4631
|
+
|
4632
|
+
_____
|
4633
|
+
|
4634
|
+
coremltools
|
4635
|
+
|
4636
|
+
BSD-3-Clause License
|
4637
|
+
|
4638
|
+
https://github.com/apple/coremltools
|
4639
|
+
|
4640
|
+
Copyright (c) 2020, Apple Inc. All rights reserved.
|
4641
|
+
|
4642
|
+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
4643
|
+
|
4644
|
+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
4645
|
+
|
4646
|
+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
4647
|
+
|
4648
|
+
3. Neither the name of the copyright holder(s) nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
4649
|
+
|
4650
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
4651
|
+
© 2021 GitHub, Inc.
|
4652
|
+
|
4653
|
+
_____
|
4654
|
+
|
4655
|
+
react-native
|
4656
|
+
|
4657
|
+
MIT License
|
4658
|
+
|
4659
|
+
https://github.com/facebook/react-native
|
4660
|
+
|
4661
|
+
Copyright (c) Facebook, Inc. and its affiliates.
|
4662
|
+
|
4663
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4664
|
+
of this software and associated documentation files (the "Software"), to deal
|
4665
|
+
in the Software without restriction, including without limitation the rights
|
4666
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
4667
|
+
copies of the Software, and to permit persons to whom the Software is
|
4668
|
+
furnished to do so, subject to the following conditions:
|
4669
|
+
|
4670
|
+
The above copyright notice and this permission notice shall be included in all
|
4671
|
+
copies or substantial portions of the Software.
|
4672
|
+
|
4673
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
4674
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
4675
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
4676
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
4677
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
4678
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
4679
|
+
SOFTWARE.
|
4680
|
+
|
4681
|
+
_____
|
4682
|
+
|
4683
|
+
pytorch/cpuinfo
|
4684
|
+
|
4685
|
+
BSD 2-Clause "Simplified" License
|
4686
|
+
|
4687
|
+
https://github.com/pytorch/cpuinfo
|
4688
|
+
|
4689
|
+
Copyright (c) 2019 Google LLC
|
4690
|
+
Copyright (c) 2017-2018 Facebook Inc.
|
4691
|
+
Copyright (C) 2012-2017 Georgia Institute of Technology
|
4692
|
+
Copyright (C) 2010-2012 Marat Dukhan
|
4693
|
+
|
4694
|
+
All rights reserved.
|
4695
|
+
|
4696
|
+
Redistribution and use in source and binary forms, with or without
|
4697
|
+
modification, are permitted provided that the following conditions are met:
|
4698
|
+
|
4699
|
+
* Redistributions of source code must retain the above copyright notice, this
|
4700
|
+
list of conditions and the following disclaimer.
|
4701
|
+
|
4702
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
4703
|
+
this list of conditions and the following disclaimer in the documentation
|
4704
|
+
and/or other materials provided with the distribution.
|
4705
|
+
|
4706
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
4707
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
4708
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
4709
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
4710
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
4711
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
4712
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
4713
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
4714
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
4715
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
4716
|
+
|
4717
|
+
_____
|
4718
|
+
|
4719
|
+
SQLite Is Public Domain
|
4720
|
+
|
4721
|
+
All of the code and documentation in SQLite has been dedicated to the public
|
4722
|
+
domain by the authors. All code authors, and representatives of the companies
|
4723
|
+
they work for, have signed affidavits dedicating their contributions to the
|
4724
|
+
public domain and originals of those signed affidavits are stored in a firesafe
|
4725
|
+
at the main offices of Hwaci. Anyone is free to copy, modify, publish, use,
|
4726
|
+
compile, sell, or distribute the original SQLite code, either in source code
|
4727
|
+
form or as a compiled binary, for any purpose, commercial or non-commercial,
|
4728
|
+
and by any means.
|
4729
|
+
|
4730
|
+
The previous paragraph applies to the deliverable code and documentation in
|
4731
|
+
SQLite - those parts of the SQLite library that you actually bundle and ship
|
4732
|
+
with a larger application. Some scripts used as part of the build process (for
|
4733
|
+
example the "configure" scripts generated by autoconf) might fall under other
|
4734
|
+
open-source licenses. Nothing from these build scripts ever reaches the final
|
4735
|
+
deliverable SQLite library, however, and so the licenses associated with those
|
4736
|
+
scripts should not be a factor in assessing your rights to copy and use the
|
4737
|
+
SQLite library.
|
4738
|
+
|
4739
|
+
All of the deliverable code in SQLite has been written from scratch. No code
|
4740
|
+
has been taken from other projects or from the open internet. Every line of
|
4741
|
+
code can be traced back to its original author, and all of those authors have
|
4742
|
+
public domain dedications on file. So the SQLite code base is clean and is
|
4743
|
+
uncontaminated with licensed code from other projects.
|
4421
4744
|
|
4422
4745
|
_____
|
4746
|
+
|
4747
|
+
google/XNNPACK
|
4748
|
+
|
4749
|
+
BSD License
|
4750
|
+
|
4751
|
+
For XNNPACK software
|
4752
|
+
|
4753
|
+
Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
4754
|
+
Copyright 2019 Google LLC
|
4755
|
+
|
4756
|
+
Redistribution and use in source and binary forms, with or without modification,
|
4757
|
+
are permitted provided that the following conditions are met:
|
4758
|
+
|
4759
|
+
* Redistributions of source code must retain the above copyright notice, this
|
4760
|
+
list of conditions and the following disclaimer.
|
4761
|
+
|
4762
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
4763
|
+
this list of conditions and the following disclaimer in the documentation
|
4764
|
+
and/or other materials provided with the distribution.
|
4765
|
+
|
4766
|
+
* Neither the name Facebook nor the names of its contributors may be used to
|
4767
|
+
endorse or promote products derived from this software without specific
|
4768
|
+
prior written permission.
|
4769
|
+
|
4770
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
4771
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
4772
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
4773
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
4774
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
4775
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
4776
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
4777
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
4778
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
4779
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
data/vendor/libonnxruntime.dylib
CHANGED
Binary file
|
data/vendor/libonnxruntime.so
CHANGED
Binary file
|
data/vendor/onnxruntime.dll
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onnxruntime
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kane
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: ffi
|
@@ -45,7 +45,7 @@ files:
|
|
45
45
|
- vendor/libonnxruntime.dylib
|
46
46
|
- vendor/libonnxruntime.so
|
47
47
|
- vendor/onnxruntime.dll
|
48
|
-
homepage: https://github.com/ankane/onnxruntime
|
48
|
+
homepage: https://github.com/ankane/onnxruntime-ruby
|
49
49
|
licenses:
|
50
50
|
- MIT
|
51
51
|
metadata: {}
|
@@ -64,7 +64,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
64
64
|
- !ruby/object:Gem::Version
|
65
65
|
version: '0'
|
66
66
|
requirements: []
|
67
|
-
rubygems_version: 3.2.
|
67
|
+
rubygems_version: 3.2.32
|
68
68
|
signing_key:
|
69
69
|
specification_version: 4
|
70
70
|
summary: High performance scoring engine for ML models
|