You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* feat: integrate `trasnformers.js` with rust backend
Simple integration between `transformers.js` and rust ort backend by
exposing js owned API
* stamp: refactoring tensors ser/de to try zero-copy
- Implementing v8 traits to cast tensors `ToV8` and `FromV8`.
- Resolving `ort::Tensor` type based on Js tensor's.
* stamp: refactoring to use `serde_v8`
- Since `serde_v8` allows zero-copy we use it to handle the model
inputs and send back the outputs
* fix(ai): seq2seq models causing null pointer error
- Solved the "`GetMutableData` should not be a null pointer" error while
executing seq2seq models.
- Ref.: pykeio/ort#185
* test(sb_ai): implementing tests for ort backend
- Applying integration tests over all NLP pipelines with ort backend
* stamp(sb_ai): example for generate image embeddings
* test(sb_ai): implementing computer vision tests for ort backend
- Applying integration tests over VISION pipelines with ort backend
* stamp: clippy
* fix(ci): makes share common env vars from dotenv file
* fix(ci): update `ORT_DYLIB_PATH`
* fix(ci): makes share common env vars from dotenv file
* chore(sb_ai): update dependencies
* chore(event_worker): add a dependency
* chore(event_worker): install a tracing macro
* chore(base): update `Cargo.toml`
* chore(base): trace `malloced_mb` more precisely
* chore: update an integration test case script
* chore: install tracing subscriber when `base/tracing` feature is enabled
* chore: update `Cargo.lock`
* stamp: add `docker build` script with shared envs
* fix(devcontainer): shared `.env` file path
---------
Co-authored-by: Nyannyacha <[email protected]>
Copy file name to clipboardExpand all lines: Dockerfile
+5-8Lines changed: 5 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,8 @@
3
3
FROM rust:1.79.0-bookworm as builder
4
4
5
5
ARG TARGETPLATFORM
6
-
ARGGIT_V_VERSION
7
-
ARGONNXRUNTIME_VERSION=1.19.2
6
+
ARGONNXRUNTIME_VERSION
7
+
ARGGIT_V_TAG
8
8
ARG PROFILE=release
9
9
ARG FEATURES
10
10
@@ -15,7 +15,7 @@ WORKDIR /usr/src/edge-runtime
15
15
COPY . .
16
16
17
17
RUN --mount=type=cache,target=/usr/local/cargo/registry,id=${TARGETPLATFORM} --mount=type=cache,target=/usr/src/edge-runtime/target,id=${TARGETPLATFORM} \
0 commit comments