Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

163
Vistas
Is there any way to use the Teachable Machine pose project on ml5?

I trained a pose model on teachablemachine.with google.com. I tried to use that model as a web-application, so I applied it to the ml5.js on JavaScript like below.


const imageModelURL = 'teachable machine model URL';

async function start() {
  const stream = await navigator.mediaDevices.getUserMedia({
    audio: false,
    video: true,
  });
  
  const video = document.getElementById('webcam');
  
  video.srcObject = stream;
  
  classifier = ml5.imageClassifier(imageModelURL + 'model.json', video, () => {
    console.log('モデルの読み込みが完了しました');
  });
  
  function loop() {
    classifier.classify(async (err, results) => {
      if (results[0]) {
        document.getElementById("result").textContent = results[0].label;// 
      }
      setTimeout(loop, 1000);
    });
  }
  loop();
}

I can use this on other models made by theachable machine image project, but it doesn't work in the case of pose model. I red the article that normally we can't use the pose model on ml5.js, but is there any way to use?

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

At this moment, we can not use the teachable machine's pose project on ml5. If you want, you can use Image Project instead.

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda