#TransformerJS
🚀 Exciting Announcement! I've taken the first step in developing a Nuxt module using TransformerJS and Web Workers.
This marks the beginning of an innovative journey.
- Next step will be creating an NPM package to make this module accessible to everyone.
📦✨ #Nuxt #TransformerJS #WebWorkers
March 31, 2025 at 4:27 PM
And another Nuxt project, trying to replicate the Postiz but using Nuxt Layers:

- But specifically implement the support of Google My Business.
- As well, a free tools using Transformerjs.
- PNPM monorepo
#nuxt #postiz
September 23, 2025 at 8:16 AM
Anyone seen any impressive / clever use of transformerjs in the wild?
December 4, 2024 at 6:42 AM
Thinking on creating a #nuxt module to wrap all the most popular Transformer.js usages in a way that's easy to integrate and use. Any specific features or functionalities you think it should have?

All actions will be in using Web Workers
#nuxt #vue #buildinpublic #transformerjs #webworkers
March 19, 2025 at 10:59 AM
And another Nuxt project, trying to replicate the Postiz but using Nuxt Layers:

- But specifically implement the support of Google My Business.
- As well, a free tools using Transformerjs.
- PNPM monorepo
#nuxt #postiz
September 23, 2025 at 8:16 AM
Human ideas new local in browser tool is up and running! Check it out and start transforming your audio notes into text effortlessly
human-ideas.giessen.dev/tools/audio-...

#nuxt #transformerjs #vue #buildinpublic
March 5, 2025 at 4:15 PM
Step one for a new tool for https://human-ideas.giessen.dev/tools/audio-text-notes transcribe your audio to text using transformerjs whisper-tiny, is just the starting point currently.

March 3, 2025 at 12:01 PM
Human idea's new local in browser tool is up and running! Check it out and start transforming your audio notes into text effortlessly.

human-ideas.giessen.dev/tools/audio-...

#nuxt #transformerjs #vue #buildinpublic
March 5, 2025 at 4:14 PM
Thinking on creating a #nuxt module to wrap all the most popular Transformer.js usages in a way that's easy to integrate and use. Any specific features or functionalities you think it should have?

All actions will be in using Web Workers
#nuxt #vue #buildinpublic #transformerjs #webworkers
March 19, 2025 at 10:59 AM
Relied heavily on opencode. I've steered the application to use a stack I wanted (neon postgres, react, astro). For initial stuff it works great.

My idea is now to get to know the projects, learn a bit about new concepts (electron, transformerjs, ELO system, etc)
March 15, 2026 at 12:16 PM
Should I be building a custom transformer/transformerjs pipeline
Hi, I am building a custom classifier for coding job descriptions. I have two text inputs that I concatenate, preprocess, and embed using a sentenceTransformer during training (in python) and the feature-extraction pipeline during prediction (transformers.js). At training time, I use tensorflow to train a multilayer classifier that also take another multi-hot encoded input. I save my classifer as an onnx model. I have written a web app that uses my classifier, but I would love to have a pipeline that others could use like: let job_classifier = pipeline('job-classifer','DR/job_classifer_v1') my current code very incomplete looks like this: import { env, pipeline, Pipeline } from 'https://cdn.jsdelivr.net/npm/@huggingface/transformers@3.3.2'; import * as ort from 'https://cdn.jsdelivr.net/npm/onnxruntime-web@1.19.2/dist/ort.webgpu.bundle.min.mjs'; class JobClassificationPipeline extends Pipeline { constructor(modelPath) { super('job-classification') this.modelPath = modelPath this.initialized = false } async initialize() { this.initialized = true; this.config = await (await fetch(`${this.modelPath}/config.json`)).json(); this.abbreviations = await (await fetch(`${this.modelPath}/abbrev.json`)).json(); this.crosswalks = {} for (const [key, path] of Object.entries(this.config.known_crosswalks)) { console.log(`... loading ${key} crosswalk ...`) this.crosswalks[key] = await (await fetch(path)).json() } this.embeddingPipeline = await pipeline('text-embedding',"") } async _call(jobDescription) { if (!this.initialized) { await this.initialize(); } console.log(this.config) let pp = this.preprocess(jobDescription) let embeddings = console.log(pp) this.crosswalk(jobDescription) } crosswalk(jobDescription) { if (!Array.isArray(jobDescription)) { jobDescription = [jobDescription] } console.log(this.crosswalks) } preprocess(jobDescription) { console.log(jobDescription) if (!Array.isArray(jobDescription)) { jobDescription = [jobDescription] } console.log(this.abbreviations) return jobDescription.map(x => x.JobTitle ?? "") } } let j27 = new JobClassificationPipeline('models/s3_jan27') j27({ "JobTitle": "doctor", "JobTask": "see patients", "soc1980": "261" }) Before I go too far down this rabbit hole, is this the wrong approach? Should I just create an ESM that wraps the huggingface encoder and my onnx model?
discuss.huggingface.co
January 29, 2025 at 11:03 PM
A tool that use Transformerjs in Browser for Audio to text

https://human-ideas.giessen.dev/tools/audio-text-notes
May 28, 2025 at 8:18 AM
Step one for a new tool for https://human-ideas.giessen.dev/tools/audio-text-notes transcribe your audio to text using transformerjs whisper-tiny, is just the starting point currently.

March 3, 2025 at 12:01 PM
🚀 AI at the Edge: Exploring Gemma & Transformer.js 🤖✨
📅 Aug 23 @ 10AM EDT | Online

Learn how to run AI offline for privacy, speed & resilience using SLMs! 🧠💻

🔗 RSVP: gdg.community.dev/e/mxv8j5/

#GDGCentralFlorida #gdg #TechCommunity #AI #SLM #Gemma #TransformerJS
August 11, 2025 at 11:33 PM
A tool that use Transformerjs in Browser for Audio to text

https://human-ideas.giessen.dev/tools/audio-text-notes
May 28, 2025 at 8:18 AM
🚀 Exciting Announcement! I've taken the first step in developing a Nuxt module using TransformerJS and Web Workers.
This marks the beginning of an innovative journey.
- Next step will be creating an NPM package to make this module accessible to everyone.
📦✨ #Nuxt #TransformerJS #WebWorkers
March 31, 2025 at 4:27 PM