shreyaskarnik / DistiLlama

Chrome Extension to Summarize or Chat with Web Pages/Local Documents Using locally running LLMs. Keep all of your data and conversations private. 🔐
MIT License
279 stars 28 forks source link

Bump @xenova/transformers from 2.9.0 to 2.14.2 #95

Closed dependabot[bot] closed 9 months ago

dependabot[bot] commented 9 months ago

Bumps @xenova/transformers from 2.9.0 to 2.14.2.

Release notes

Sourced from @​xenova/transformers's releases.

2.14.2

What's new?

Full Changelog: https://github.com/xenova/transformers.js/compare/2.14.1...2.14.2

2.14.1

What's new?

  • Add support for Depth Anything (xenova/transformers.js#534). See here for the list of available models.

    Example: Depth estimation with Xenova/depth-anything-small-hf.

    import { pipeline } from '@xenova/transformers';
    

    // Create depth-estimation pipeline const depth_estimator = await pipeline('depth-estimation', 'Xenova/depth-anything-small-hf');

    // Predict depth map for the given image const url = 'https://huggingface.co/datasets/Xenova/transformers.js-docs/resolve/main/bread_small.png'; const output = await depth_estimator(url); // { // predicted_depth: Tensor { // dims: [350, 518], // type: 'float32', // data: Float32Array(181300) [...], // size: 181300 // }, // depth: RawImage { // data: Uint8Array(271360) [...], // width: 640, // height: 424, // channels: 1 // } // }

    You can visualize the output with:

    output.depth.save('depth.png');
    
    Input image Visualized output
    image image

... (truncated)

Commits
  • 9f877ee [version] Update to 2.14.2
  • 9f37036 Bump vite from 5.0.11 to 5.0.12 in /examples/zero-shot-classification (#548)
  • 1edf683 Add zero-shot classification demo (#519)
  • b1f96a2 Add support for wav2vec2-bert (#544)
  • 03f2763 Add whitespace pretokenizer (#542)
  • 497628f Create depth anything demo (#540)
  • a2fcd11 [version] Update to 2.14.1
  • 587adfc Add support for Depth Anything (#534)
  • 4fb23f2 Bump vite from 4.5.1 to 4.5.2 in /examples/tokenizer-playground (#538)
  • 544c2c2 Bump vite from 5.0.6 to 5.0.12 in /examples/semantic-audio-search (#537)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)