Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Maintenance: Browser compatibility, docs updates #3

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/documentation.yml

This file was deleted.

61 changes: 0 additions & 61 deletions .github/workflows/gh-pages.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ node_modules

# Do not track coverage reports
/coverage
.npmrc
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<br/>
<picture>
<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://huggingface.co/datasets/Xenova/transformers.js-docs/raw/main/transformersjs-dark.svg" width="500" style="max-width: 100%;">
<source media="(prefers-color-scheme: light)" srcset="https://huggingface.co/datasets/Xenova/transformers.js-docs/raw/main/transformersjs-light.svg" width="500" style="max-width: 100%;">
<img alt="transformers.js javascript library logo" src="https://huggingface.co/datasets/Xenova/transformers.js-docs/raw/main/transformersjs-light.svg" width="500" style="max-width: 100%;">
Expand All @@ -11,14 +11,14 @@
</p>

<p align="center">
<a href="https://www.npmjs.com/package/@xenova/transformers">
<img alt="NPM" src="https://img.shields.io/npm/v/@xenova/transformers">
<a href="https://www.npmjs.com/package/chromadb-default-embed">
<img alt="NPM" src="https://img.shields.io/npm/v/chromadb-default-embed">
</a>
<a href="https://www.npmjs.com/package/@xenova/transformers">
<img alt="NPM Downloads" src="https://img.shields.io/npm/dw/@xenova/transformers">
<a href="https://www.npmjs.com/package/chromadb-default-embed">
<img alt="NPM Downloads" src="https://img.shields.io/npm/dw/chromadb-default-embed">
</a>
<a href="https://www.jsdelivr.com/package/npm/@xenova/transformers">
<img alt="jsDelivr Hits" src="https://img.shields.io/jsdelivr/npm/hw/@xenova/transformers">
<a href="https://www.jsdelivr.com/package/npm/chromadb-default-embed">
<img alt="jsDelivr Hits" src="https://img.shields.io/jsdelivr/npm/hw/chromadb-default-embed">
</a>
<a href="https://github.com/xenova/transformers.js/blob/main/LICENSE">
<img alt="License" src="https://img.shields.io/github/license/xenova/transformers.js?color=blue">
Expand All @@ -38,7 +38,7 @@ Transformers.js is designed to be functionally equivalent to Hugging Face's [tra
- 🗣️ **Audio**: automatic speech recognition and audio classification.
- 🐙 **Multimodal**: zero-shot image classification.

Transformers.js uses [ONNX Runtime](https://onnxruntime.ai/) to run models in the browser. The best part about it, is that you can easily [convert](#convert-your-models-to-onnx) your pretrained PyTorch, TensorFlow, or JAX models to ONNX using [🤗 Optimum](https://github.com/huggingface/optimum#onnx--onnx-runtime).
Transformers.js uses [ONNX Runtime](https://onnxruntime.ai/) to run models in the browser. The best part about it, is that you can easily [convert](#convert-your-models-to-onnx) your pretrained PyTorch, TensorFlow, or JAX models to ONNX using [🤗 Optimum](https://github.com/huggingface/optimum#onnx--onnx-runtime).

For more information, check out the full [documentation](https://huggingface.co/docs/transformers.js).

Expand Down Expand Up @@ -70,7 +70,7 @@ out = pipe('I love transformers!')
<td>

```javascript
import { pipeline } from '@xenova/transformers';
import { pipeline } from 'chromadb-default-embed';

// Allocate a pipeline for sentiment-analysis
let pipe = await pipeline('sentiment-analysis');
Expand All @@ -94,15 +94,15 @@ let pipe = await pipeline('sentiment-analysis', 'Xenova/bert-base-multilingual-u
## Installation


To install via [NPM](https://www.npmjs.com/package/@xenova/transformers), run:
To install via [NPM](https://www.npmjs.com/package/chromadb-default-embed), run:
```bash
npm i @xenova/transformers
npm i chromadb-default-embed
```

Alternatively, you can use it in vanilla JS, without any bundler, by using a CDN or static hosting. For example, using [ES Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules), you can import the library with:
```html
<script type="module">
import { pipeline } from 'https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.2';
import { pipeline } from 'https://cdn.jsdelivr.net/npm/chromadb-default-embed@2.13.2';
</script>
```

Expand Down Expand Up @@ -135,13 +135,13 @@ Check out the Transformers.js [template](https://huggingface.co/new-space?templa



By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/@xenova/transformers@2.13.2/dist/), which should work out-of-the-box. You can customize this as follows:
By default, Transformers.js uses [hosted pretrained models](https://huggingface.co/models?library=transformers.js) and [precompiled WASM binaries](https://cdn.jsdelivr.net/npm/chromadb-default-embed@2.13.2/dist/), which should work out-of-the-box. You can customize this as follows:


### Settings

```javascript
import { env } from '@xenova/transformers';
import { env } from 'chromadb-default-embed';

// Specify a custom location for models (defaults to '/models/').
env.localModelPath = '/path/to/models/';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chromadb-default-embed",
"version": "2.13.3",
"version": "2.14.0",
"description": "Chroma's fork of @xenova/transformers serving as our default embedding function",
"main": "./src/transformers.js",
"types": "./types/transformers.d.ts",
Expand Down
26 changes: 13 additions & 13 deletions scripts/supported_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,15 +162,15 @@
# Token classification
'token-classification': [
'Jean-Baptiste/camembert-ner',
'Jean-Baptiste/camembert-ner-with-dates',
# 'Jean-Baptiste/camembert-ner-with-dates',
'pythainlp/thainer-corpus-v2-base-model',
'gilf/french-camembert-postag-model',
# 'gilf/french-camembert-postag-model',
],

# Masked language modelling
'fill-mask': [
'camembert-base',
'airesearch/wangchanberta-base-att-spm-uncased',
# 'airesearch/wangchanberta-base-att-spm-uncased',
],
},
'clap': {
Expand Down Expand Up @@ -387,13 +387,13 @@
'donut': { # NOTE: also a `vision-encoder-decoder`
# Image-to-text
'image-to-text': [
'naver-clova-ix/donut-base-finetuned-cord-v2',
'naver-clova-ix/donut-base-finetuned-zhtrainticket',
#'naver-clova-ix/donut-base-finetuned-cord-v2',
#'naver-clova-ix/donut-base-finetuned-zhtrainticket',
],

# Document Question Answering
'document-question-answering': [
'naver-clova-ix/donut-base-finetuned-docvqa',
# 'naver-clova-ix/donut-base-finetuned-docvqa',
],
},
'dpt': {
Expand Down Expand Up @@ -575,9 +575,9 @@
'mbart': {
# Translation
'translation': [
'facebook/mbart-large-50-many-to-many-mmt',
'facebook/mbart-large-50-many-to-one-mmt',
'facebook/mbart-large-50',
# 'facebook/mbart-large-50-many-to-many-mmt',
#'facebook/mbart-large-50-many-to-one-mmt',
# 'facebook/mbart-large-50',
],
},
'mistral': {
Expand Down Expand Up @@ -632,7 +632,7 @@
# Text-to-text
'text2text-generation': [
'google/mt5-small',
'google/mt5-base',
# 'google/mt5-base',
],
},
'nougat': {
Expand Down Expand Up @@ -835,8 +835,8 @@
('translation', 'summarization'): [
't5-small',
't5-base',
'google/t5-v1_1-small',
'google/t5-v1_1-base',
# 'google/t5-v1_1-small',
# 'google/t5-v1_1-base',
'google/flan-t5-small',
'google/flan-t5-base',
],
Expand Down Expand Up @@ -873,7 +873,7 @@
'trocr': { # NOTE: also a `vision-encoder-decoder`
# Text-to-image
'text-to-image': [
'microsoft/trocr-small-printed',
# 'microsoft/trocr-small-printed',
'microsoft/trocr-base-printed',
'microsoft/trocr-small-handwritten',
'microsoft/trocr-base-handwritten',
Expand Down
Loading