Skip to main content

No project description provided

Project description

Hushh Catalog Format

Build

Support clients for the hushh vibe-catalog file format

There is documentation available

Installation

$> pip install hushh-vibe-catalog

Latest Version Schema

namespace hushh.hcf;

table Brand {
  id: string;
  description: string;
  name: string;
  url: string;
}

table Product {
  id: string;
  description: string;
  url: string;
  brand: Brand;
}

table Vibe {
  id: string;
  description: string;
  product_idx: [int];
}

table Category {
  id: string;
  description: string;
  url: string;
  product_idx: [int];
}

enum VibeMode : byte { ProductText = 0, ProductImage, Text, Image, Category}

table FlatEmbeddingBatch {
    id: string;
    shape:[int];
    vibe_mode: VibeMode;
    flat_tensor:[float];
    product_idx: [int];
}

table ProductVibes {
  id: string;
  products: [Product];
  brands: [Brand];
  categories: [Category];
  vibes: [Vibe];
  product_text_batches: [FlatEmbeddingBatch];
  product_image_batches: [FlatEmbeddingBatch];
  text_batches: [FlatEmbeddingBatch];
  image_batches: [FlatEmbeddingBatch];
}

table Catalog {
  id : string;
  version: string;
  description: string;
  product_vibes: ProductVibes;
  batch_size: int;
  tokenizer_name_or_path: string;
  model_name_or_path: string;
}

root_type Catalog;

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

hushh_vibe_catalog-0.5.0-py2.py3-none-any.whl (21.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page