How to use Skydata001/Skydata with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-segmentation", model="Skydata001/Skydata")
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("Skydata001/Skydata", dtype="auto")
How to use Skydata001/Skydata with Transformers.js:
// npm i @huggingface/transformers import { pipeline } from '@huggingface/transformers'; // Allocate pipeline const pipe = await pipeline('image-segmentation', 'Skydata001/Skydata');