0.10.13 • Published 1 day ago

@mediapipe/tasks-text v0.10.13

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
1 day ago

MediaPipe Tasks Text Package

This package contains the text tasks for MediaPipe.

Language Detector

The MediaPipe Language Detector task predicts the language of an input text.

const text = await FilesetResolver.forTextTasks(
    "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-text/wasm"
);
const languageDetector = await LanguageDetector.createFromModelPath(text,
    "https://storage.googleapis.com/mediapipe-models/language_detector/language_detector/float32/1/language_detector.tflite
);
const result = languageDetector.detect(textData);

For more information, refer to the Language Detector documentation.

Text Classifier

The MediaPipe Text Classifier task lets you classify text into a set of defined categories, such as positive or negative sentiment.

const text = await FilesetResolver.forTextTasks(
    "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-text/wasm"
);
const textClassifier = await TextClassifier.createFromModelPath(text,
    "https://storage.googleapis.com/mediapipe-models/text_classifier/bert_classifier/float32/1/bert_classifier.tflite"
);
const classifications = textClassifier.classify(textData);

For more information, refer to the Text Classification documentation.

Text Embedder

The MediaPipe Text Embedder task extracts embeddings from text data.

const text = await FilesetResolver.forTextTasks(
    "https://cdn.jsdelivr.net/npm/@mediapipe/tasks-text/wasm"
);
const textEmbedder = await TextEmbedder.createFromModelPath(text,
    "https://storage.googleapis.com/mediapipe-models/text_embedder/universal_sentence_encoder/float32/1/universal_sentence_encoder.tflite"
);
const embeddings = textEmbedder.embed(textData);

For more information, refer to the Text Embedder documentation.

0.10.13

5 days ago

0.10.12

2 months ago

0.10.11

2 months ago

0.10.10

3 months ago

0.10.9

5 months ago

0.10.9-rc.20231213

5 months ago

0.10.9-rc.20231212

5 months ago

0.10.9-rc.20231211

5 months ago

0.10.9-rc.20231210

5 months ago

0.10.9-rc.20231209

5 months ago

0.10.9-rc.20231208

5 months ago

20230919.0.0

8 months ago

0.10.2

10 months ago

0.10.3

9 months ago

0.10.4

9 months ago

0.10.5

8 months ago

0.10.6

8 months ago

0.10.7

7 months ago

0.10.8

6 months ago

20230920.0.0

8 months ago

0.1.0-alpha-15

12 months ago

0.1.0-alpha-14

1 year ago

0.1.0-alpha-17

12 months ago

0.1.0-alpha-16

12 months ago

0.10.1

11 months ago

0.10.2-rc1

11 months ago

0.10.2-rc2

11 months ago

0.10.0

12 months ago

0.1.0-alpha-11

1 year ago

0.1.0-alpha-10

1 year ago

0.1.0-alpha-13

1 year ago

0.1.0-alpha-12

1 year ago

0.1.0-alpha-8

1 year ago

0.1.0-alpha-7

1 year ago

0.1.0-alpha-9

1 year ago

0.1.0-alpha-6

1 year ago

0.1.0-alpha-5

1 year ago

0.1.0-alpha-4

1 year ago

0.1.0-alpha-3

1 year ago

0.1.0-alpha-2

1 year ago

0.1.0-alpha-1

1 year ago