JK
JustKalm
Reference
109 Terms

Glossary

Comprehensive definitions for all technical terms, metrics, and concepts used across JustKalm. Every term we use should be defined here—if it's not, let us know.

Study Mode:
Complexity:

Showing 109 of 109 terms

A
6 terms

Algorand

/al-go-rand/

blockchainAdvancedSpecialized

A carbon-negative, high-performance blockchain platform used by JustKalm for Digital Product Passports. Features instant finality, low fees, and Proof-of-Stake consensus.

Apdex Score

(Application Performance Index)

/app-decks/

metricsAdvancedSpecialized

A standardized measure of user satisfaction with application response time. Scores range from 0 to 1, where 1 is perfect satisfaction. Calculated based on satisfied, tolerating, and frustrated user thresholds.

Example

An Apdex of 0.94 with T=100ms threshold indicates excellent performance.

See also:Status

API Key

/ay-pee-eye key/

apiBeginnerCommon

A unique secret identifier used to authenticate your requests to the JustKalm API. Must be kept confidential and never exposed in client-side code or version control.

curl -H 'Authorization: Bearer jk_live_xxxxx' https://api.justkalm.com/v1/valuate
Warning

Treat API keys like passwords. Rotate immediately if compromised. Use environment variables, not hardcoded strings.

See also:API Docs

App Clip

technicalIntermediateSpecialized

A lightweight version of an iOS app (under 10MB) that provides specific functionality without full installation. Triggered by NFC, QR codes, or App Clip Codes.

Example

Scan a product tag to instantly get valuation without downloading the full app.

ARIA

(Accessible Rich Internet Applications)

/ah-ree-uh/

technicalIntermediateFrequent

A set of HTML attributes that add accessibility information to web elements. Helps screen readers understand dynamic content and custom widgets.

<button aria-label='Close dialog' aria-expanded='false'>

Avoided Emissions

sustainabilityIntermediateFrequent

Greenhouse gas emissions prevented by choosing a lower-impact alternative. Buying secondhand instead of new typically avoids significant manufacturing emissions.

Example

Buying a used laptop avoids ~300kg CO2e compared to manufacturing a new one.

B
7 terms

Bayesian Inference

/bay-zee-an/

aiAdvancedSpecialized

A statistical method that updates probability estimates as new evidence becomes available. Used in our confidence scoring to combine prior market knowledge with item-specific features.

Bearer Token

apiIntermediateCommon

An access token included in the Authorization header to authenticate API requests. Format: 'Authorization: Bearer <token>'. Our tokens use JWT format with embedded claims.

Bioaccumulation

/by-oh-ah-kyoo-myoo-lay-shun/

healthIntermediateSpecialized

The gradual accumulation of substances (like heavy metals or PFAS) in an organism over time, faster than they can be broken down or excreted. Higher trophic levels show higher concentrations.

Biometric Authentication

technicalBeginnerCommon

Security verification using unique physical characteristics like fingerprints (Touch ID), facial features (Face ID), or iris patterns. More secure and convenient than passwords.

Pro Tip

Always provide a fallback authentication method for accessibility.

Blue-Green Deployment

technicalAdvancedSpecialized

A deployment strategy with two identical production environments. New versions deploy to the idle environment, then traffic switches instantaneously. Enables instant rollback.

BLUESIGN

/blue-sign/

healthIntermediateSpecialized

A comprehensive certification that addresses environmental, health, and safety issues throughout the textile manufacturing process. More focused on production practices than end-product testing.

Related:OEKO-TEXGOTS

Brand Tier

businessBeginnerFrequent

A classification of brands into value segments: Ultra-Luxury, Luxury, Premium, Contemporary, Mid-Market, Value, and Unclassified. Based on typical resale performance, price points, and brand equity.

See also:Methodology
C
15 terms

Caching

/cash-ing/

technicalIntermediateFrequent

Storing frequently accessed data in fast-access memory to reduce load on primary systems and improve response times. We use multi-layer caching for optimal performance.

See also:Caching

Carbon Footprint

sustainabilityBeginnerCommon

The total greenhouse gas emissions caused by a product, expressed in CO2 equivalent. Includes manufacturing, transportation, use, and disposal phases.

See also:Impact

CCPA

(California Consumer Privacy Act)

/see-see-pee-ay/

regulatoryIntermediateFrequent

California law providing consumers with rights over their personal information held by businesses. Includes right to know, delete, opt-out of sale, and non-discrimination.

Related:GDPRCPRA
See also:Compliance

CDN

(Content Delivery Network)

/see-dee-en/

technicalIntermediateFrequent

A distributed network of servers that deliver content from locations geographically close to users. Reduces latency and improves load times for static assets.

Chaos Engineering

technicalAdvancedSpecialized

The practice of intentionally injecting failures into systems to test resilience. 'Break things on purpose to learn how they break by accident.'

Example

Netflix's Chaos Monkey randomly terminates instances to ensure fault tolerance.

CI/CD

(Continuous Integration / Continuous Deployment)

/see-eye-see-dee/

technicalIntermediateFrequent

Automated pipelines that test, build, and deploy code changes. CI validates every commit; CD pushes validated changes to production automatically.

Circular Economy

sustainabilityBeginnerCommon

An economic model that eliminates waste by designing products for durability, reuse, and recycling. JustKalm enables circular economy by facilitating informed resale decisions.

See also:Impact

Circularity Score

metricsBeginnerCommon

A composite score (0-100) measuring the environmental sustainability of extending a product's lifecycle through resale, repair, or recycling. Incorporates material durability, repairability, and end-of-life recyclability.

Example

A leather handbag with durable construction and repairable hardware might score 85/100.

See also:Impact

Comparable Sales

(Comps)

/comps/

businessBeginnerCommon

Recent sales of similar items used as reference points for valuation. Our algorithm identifies the most relevant comps based on brand, condition, category, and recency.

Condition Grade

businessBeginnerCommon

A standardized rating of product condition: New With Tags (NWT), New Without Tags (NWOT), Like New (LN), Excellent (EX), Very Good (VG), Good (G), Fair (F), Poor (P). Condition significantly affects valuation.

Pro Tip

Be conservative when grading condition—overgrading leads to disappointed buyers.

Confidence Score

metricsBeginnerCommon

A 0-100 score indicating how confident our model is in its prediction. Higher scores indicate more comparable data points, better feature coverage, and more reliable estimates.

Warning

Low confidence (<50) suggests the valuation should be treated as a rough estimate only.

Pro Tip

Confidence scores above 80 typically indicate highly reliable valuations with extensive market data.

Constitutional AI

aiAdvancedSpecialized

A training approach where AI models are guided by a set of principles (a 'constitution') to produce helpful, harmless, and honest outputs. Developed by Anthropic.

Context Window

aiIntermediateFrequent

The maximum amount of text (in tokens) that a language model can process in a single request. Larger context windows enable processing longer documents but increase latency and cost.

Example

GPT-4 Turbo: 128K tokens. Claude 3: 200K tokens.

CPSIA

(Consumer Product Safety Improvement Act)

/sip-see-ah/

regulatoryAdvancedSpecialized

US law establishing safety standards for children's products, including limits on lead and phthalates. Relevant for resale of children's items.

Cross-Validation

/cross val-ih-day-shun/

aiAdvancedSpecialized

A resampling technique where data is split into k folds, and the model is trained k times, each time using a different fold for validation. Provides more robust accuracy estimates than single holdout.

Example

We use 5-fold cross-validation to estimate model performance before deployment.

D
6 terms

Data Residency

regulatoryIntermediateSpecialized

Requirements that data be stored and processed within specific geographic boundaries. JustKalm offers regional data residency options for enterprise customers.

Days on Market

(DOM)
businessBeginnerFrequent

The average number of days between listing and sale. Lower values indicate high demand; higher values may suggest overpricing or niche appeal.

Example

Popular items average 7-14 days on market; specialty items may take 60+ days.

Deep Linking

apiIntermediateFrequent

URLs that navigate directly to specific content within a mobile app, bypassing the home screen. Essential for seamless web-to-app transitions and marketing campaigns.

Example

justkalm://products/12345 opens the product details screen directly.

// iOS: AppDelegate handles URL schemes
// Android: Intent filters in manifest

Depreciation Curve

businessIntermediateFrequent

A model of how a product's value decreases over time. Different product categories, brands, and even specific items have unique depreciation patterns shaped by durability, trends, and scarcity.

Example

Electronics depreciate ~20%/year. Luxury handbags may retain value or appreciate.

Digital Product Passport

(DPP)
blockchainIntermediateFrequent

A blockchain-anchored record containing verified product information including origin, materials, authenticity, ownership history, and environmental impact. Enables transparent provenance tracking.

See also:Trust

Distributed Tracing

technicalAdvancedSpecialized

Tracking requests across multiple services in a distributed system. Each request gets a unique trace ID, enabling end-to-end visibility of latency and errors.

E
7 terms

Edge Computing

technicalAdvancedSpecialized

Processing data geographically close to where it's needed, reducing latency and bandwidth costs. JustKalm uses edge locations in 15+ regions for optimal global performance.

Embedding

/em-bed-ing/

aiAdvancedFrequent

A dense numerical vector representation of data (text, images) that captures semantic meaning in a high-dimensional space. Similar items have embeddings that are close together mathematically.

Example

Product embeddings allow us to find similar items even with different descriptions.

Endocrine Disruptor

healthAdvancedSpecialized

Chemicals that can interfere with the body's hormone (endocrine) system. May affect development, reproduction, neurological function, and metabolism. Common examples include BPA, phthalates, and certain pesticides.

Endocrine Disruptor

/en-doh-krin dis-rup-tor/

healthIntermediateFrequent

Chemicals that interfere with the body's hormonal system. Found in some plastics, coatings, and textiles. Can affect development, reproduction, and metabolism at very low doses.

Example

BPA, phthalates, and some flame retardants are known endocrine disruptors.

Ensemble Model

aiAdvancedSpecialized

A machine learning approach that combines multiple models to produce better predictions than any single model. Our valuation engine uses an ensemble of gradient boosting, neural networks, and specialized category models.

Explainability

aiAdvancedFrequent

The ability to understand and explain why a model made a particular prediction. We use SHAP values and feature importance to provide transparent explanations for valuations.

Extended Producer Responsibility

(EPR)
sustainabilityAdvancedSpecialized

A policy approach where producers take responsibility for their products' entire lifecycle, including end-of-life management. Drives design for recyclability and take-back programs.

F
6 terms

Failover

technicalIntermediateSpecialized

The automatic switching to a redundant system when the primary system fails. Enables high availability by minimizing service disruption during failures.

Fair Market Value

(FMV)
businessBeginnerCommon

The estimated price at which a product would sell in an open market transaction between a willing buyer and seller, both with reasonable knowledge and no pressure to complete the transaction.

Warning

Our valuations are estimates, not guarantees. Actual sale prices vary based on listing quality, timing, and platform.

Feature Extraction

aiIntermediateFrequent

The process of converting raw product data (title, description, images) into structured numerical features that machine learning models can process. Combines rule-based extraction with neural network approaches.

Feature Flag

technicalIntermediateFrequent

A toggle that enables or disables features without code deployment. Allows gradual rollouts, A/B testing, and instant kill-switches for problematic features.

Pro Tip

Use feature flags for all new features to enable safe, gradual rollouts.

See also:Feature Flags

Feature Importance

aiIntermediateFrequent

A measure of how much each input variable contributes to model predictions. Helps explain model behavior and identify which product attributes most affect valuation.

Example

For luxury watches, 'brand' has 45% importance, 'condition' 25%, 'box/papers' 15%.

Fine-tuning

aiAdvancedFrequent

The process of taking a pre-trained model and further training it on domain-specific data. Our valuation models are fine-tuned on millions of authenticated resale transactions.

G
5 terms

Gas Fee

blockchainIntermediateFrequent

The transaction cost for executing operations on a blockchain network. Varies based on network congestion and computational complexity.

Pro Tip

We use Algorand for low-cost, carbon-negative transactions (~0.001 ALGO per tx).

GDPR

(General Data Protection Regulation)

/gee-dee-pee-are/

regulatoryIntermediateCommon

European Union regulation governing personal data protection and privacy. Grants individuals rights over their data including access, rectification, erasure, and data portability.

GOTS

(Global Organic Textile Standard)

/gots/

healthIntermediateFrequent

The world's leading textile processing standard for organic fibers. Includes ecological and social criteria across the entire textile supply chain. Requires minimum 70% organic fibers.

Gradient Boosting

aiAdvancedSpecialized

An ensemble machine learning technique that builds models sequentially, with each new model correcting errors of the previous ones. Powers XGBoost, LightGBM, and CatBoost.

Example

Our category-specific models use gradient boosting for tabular feature combinations.

GraphQL

/graf-kyu-el/

apiIntermediateSpecialized

A query language for APIs that allows clients to request exactly the data they need. JustKalm offers GraphQL for complex queries requiring multiple related resources.

Related:REST APIgRPC
See also:GraphQL
H
5 terms

Hallucination

aiIntermediateCommon

When an AI model generates plausible-sounding but factually incorrect information. Critical to monitor in production systems. We use retrieval-augmented generation to minimize hallucinations.

Warning

Always verify AI-generated content against authoritative sources.

Hash

blockchainIntermediateSpecialized

A fixed-size fingerprint generated from data using a cryptographic function. Any change to the original data produces a completely different hash, enabling tamper detection.

Example

SHA-256 hash: a591a6d40bf420404a011733cfb7b190d62c65bf0bcda32b57b277d9ad9f146e

Health Risk Score

metricsBeginnerCommon

A risk assessment score indicating potential exposure to harmful chemicals or materials. Scale: Low (0-25), Moderate (26-50), High (51-75), Critical (76-100). Based on material composition analysis and regulatory databases.

Warning

This is a risk estimate, not a laboratory test result. See our Health Screening Limitations.

See also:Limitations

Holdout Testing

aiIntermediateSpecialized

A validation technique where a portion of data is withheld from model training and used only for testing accuracy. Our holdout set is 20% of data, stratified by category and price range.

Horizontal Scaling

technicalAdvancedSpecialized

Adding more machines to handle increased load, rather than upgrading existing machines (vertical scaling). Enables near-linear capacity growth without service interruption.

I
3 terms

Idempotency Key

/eye-dem-poh-ten-see key/

apiIntermediateFrequent

A unique identifier you provide to ensure an API request is only processed once, even if retried. Prevents duplicate operations during network issues or timeouts.

Example

Header: Idempotency-Key: abc123-unique-id

fetch('/v1/valuate', { headers: { 'Idempotency-Key': crypto.randomUUID() } })
See also:Idempotency

Inference

/in-fer-ence/

aiIntermediateFrequent

The process of using a trained model to make predictions on new data. In production, inference latency directly affects API response time.

Example

Our inference pipeline processes valuations in under 100ms at p95.

Infrastructure as Code

(IaC)

/eye-ay-see/

technicalAdvancedSpecialized

Managing infrastructure through version-controlled configuration files rather than manual processes. Enables reproducible, auditable, and automated deployments.

Example

We use Terraform for cloud infrastructure and Kubernetes manifests for orchestration.

J
1 term

JWT

(JSON Web Token)

/jot/

apiIntermediateFrequent

A compact, URL-safe token format for securely transmitting information between parties. Contains encoded claims that can be verified and trusted.

L
2 terms

LCA

(Life Cycle Assessment)

/el-see-ay/

sustainabilityAdvancedSpecialized

A methodology for assessing environmental impacts throughout a product's life—from raw material extraction through manufacturing, use, and end-of-life disposal or recycling.

See also:Impact

LLM

(Large Language Model)

/el-el-em/

aiIntermediateCommon

AI models trained on massive text datasets that can understand and generate human-like text. Used in JustKalm for natural language product descriptions and intelligent feature extraction.

M
4 terms

MAE

(Mean Absolute Error)

/em-ay-ee/

metricsIntermediateFrequent

The average absolute difference between predicted and actual values, expressed in dollars. Unlike MAPE, MAE treats all errors equally regardless of item value, making it more robust for items with varying price ranges.

Example

An MAE of $8.63 means predictions are off by $8.63 on average.

Related:MAPERMSEMSE

MAPE

(Mean Absolute Percentage Error)

/may-pee/

metricsIntermediateFrequent

A measure of prediction accuracy calculated as the average of absolute percentage errors between predicted and actual values. Lower is better. Industry standard for evaluating forecasting models.

Example

A MAPE of 1.43% means our predictions differ from actual sale prices by 1.43% on average.

Pro Tip

MAPE works best for comparing models across different scales, but can be unstable when actual values are close to zero.

Material Composition

healthBeginnerCommon

The breakdown of materials in a product (e.g., 80% cotton, 20% polyester). Used for valuation accuracy, health risk assessment, and circularity scoring. Extracted from product descriptions and labels.

Model Drift

aiAdvancedSpecialized

The degradation of model accuracy over time as real-world data patterns change. Can be caused by market shifts, seasonality, or changes in consumer behavior. We monitor for drift continuously and retrain models monthly.

Warning

Undetected drift can lead to increasingly inaccurate predictions over time.

See also:Methodology
N
2 terms

Native Bridge

technicalAdvancedSpecialized

The communication layer between JavaScript and native mobile code in hybrid apps. Enables calling device features (camera, GPS) from web-based interfaces.

NFT

(Non-Fungible Token)

/en-eff-tee/

blockchainBeginnerCommon

A unique digital asset on a blockchain representing ownership of items like digital art, collectibles, or in our case, product authenticity certificates.

O
6 terms

Observability

technicalAdvancedSpecialized

The ability to understand internal system state from external outputs (logs, metrics, traces). Enables proactive issue detection and rapid debugging in complex distributed systems.

OEKO-TEX

/oh-ko-tex/

healthBeginnerFrequent

An independent certification system for textiles that tests for harmful substances. OEKO-TEX Standard 100 is the most common certification, indicating products are free from harmful levels of 100+ substances.

Related:GOTSBLUESIGN

OEKO-TEX

/uh-koh-tex/

regulatoryBeginnerCommon

An international testing and certification system for textile products. OEKO-TEX Standard 100 certifies products are free from harmful substances at levels that pose health risks.

Pro Tip

Look for OEKO-TEX certification when evaluating textile safety claims.

Off-Gassing

healthIntermediateSpecialized

The release of volatile organic compounds (VOCs) from materials over time. Common in plastics, foams, synthetic fabrics, and treated materials, especially when new or exposed to heat.

Pro Tip

Allow new products to air out in a well-ventilated area before extended use.

On-Chain

blockchainIntermediateSpecialized

Data or transactions recorded directly on the blockchain, providing immutable, publicly verifiable records. On-chain data has the highest trust level but higher storage costs.

OpenAPI

/open-ay-pee-eye/

apiIntermediateFrequent

A specification for describing REST APIs in a machine-readable format. Our OpenAPI spec enables automatic SDK generation, documentation, and testing tools.

See also:OpenAPI Spec
P
9 terms

p50 / p95 / p99 Latency

/pee-fifty, pee-ninety-five, pee-ninety-nine/

metricsIntermediateFrequent

Percentile latency metrics. p50 is median response time (50% of requests are faster). p95 means 95% of requests complete within this time. p99 is the 99th percentile, critical for tail latency SLAs.

Example

p50: 23ms, p95: 89ms, p99: 145ms means half of requests complete in 23ms, 95% within 89ms.

Pro Tip

Focus on p99 for user-facing APIs where worst-case performance impacts user experience.

See also:SLA

PFAS

(Per- and Polyfluoroalkyl Substances)

/pee-fass/

healthIntermediateFrequent

A class of synthetic chemicals also called 'forever chemicals' due to their environmental persistence. Associated with health concerns including cancer, thyroid disease, and immune dysfunction. Found in water-resistant textiles, non-stick coatings, and some cosmetics.

Warning

PFAS regulations are evolving rapidly. Check current guidance for your jurisdiction.

PFAS

(Per- and Polyfluoroalkyl Substances)

/pee-fass/

healthIntermediateFrequent

A group of synthetic chemicals called 'forever chemicals' due to extreme environmental persistence. Found in some textiles and coatings. Associated with health risks including immune suppression and cancer.

Warning

PFAS are increasingly regulated. Check product certifications for PFAS-free claims.

Phthalates

/thal-ates/

healthIntermediateFrequent

A group of chemicals used to soften plastics (plasticizers). Found in some clothing, toys, vinyl, and packaging. Associated with endocrine disruption, particularly concerning for children's products.

Price Elasticity

businessAdvancedSpecialized

A measure of how demand changes in response to price changes. High elasticity means small price changes significantly affect sales volume.

Example

Luxury goods often have low elasticity—buyers are less price-sensitive.

Progressive Web App

(PWA)

/pee-double-you-ay/

technicalIntermediateFrequent

A web application that uses modern web capabilities to deliver app-like experiences. Supports offline mode, push notifications, and home screen installation.

Prompt Injection

aiAdvancedSpecialized

A security vulnerability where malicious instructions embedded in user input manipulate AI model behavior. Mitigated through input sanitization and system prompt isolation.

Warning

Never trust user input in AI systems. Always validate and sanitize.

Proof of Stake

(PoS)
blockchainIntermediateSpecialized

A blockchain consensus mechanism where validators are chosen based on staked tokens rather than computational work. More energy-efficient than Proof of Work by 99%+.

Provenance

/prov-eh-nance/

blockchainIntermediateFrequent

The complete documented history of an item's origin, ownership, and custody chain. Cryptographically verified provenance establishes authenticity and prevents counterfeit goods.

R
9 terms

R-squared

/are-squared/

metricsIntermediateCommon

A statistical measure (0-1) indicating how well the model's predictions match the actual data. An R² of 0.95 means 95% of variance in prices is explained by our model.

Example

Our valuation model achieves R² = 0.97 on luxury handbags.

RAG

(Retrieval-Augmented Generation)

/rag/

aiAdvancedFrequent

An AI technique that grounds language model outputs in retrieved factual documents. Reduces hallucinations by providing the model with verified reference material.

Example

Our product descriptions are grounded in actual marketplace listings and brand catalogs.

Rate Limit

apiBeginnerCommon

The maximum number of API requests allowed per time period. Exceeding rate limits results in HTTP 429 (Too Many Requests) errors. Limits vary by plan tier and endpoint.

Example

Free tier: 100 req/min. Pro tier: 1,000 req/min. Enterprise: Custom.

Pro Tip

Implement exponential backoff with jitter for graceful rate limit handling.

REACH

(Registration, Evaluation, Authorisation and Restriction of Chemicals)

/reach/

regulatoryAdvancedSpecialized

EU regulation addressing the production and use of chemical substances. Restricts or bans harmful chemicals in products sold in Europe.

REACH

(Registration, Evaluation, Authorisation and Restriction of Chemicals)

/reech/

regulatoryIntermediateFrequent

EU regulation requiring companies to identify and manage chemical risks in products sold in Europe. Sets restrictions on substances of very high concern (SVHCs).

See also:Compliance

Red Teaming

aiAdvancedSpecialized

Deliberately testing AI systems by trying to make them fail or produce harmful outputs. Essential for identifying vulnerabilities before deployment.

Resale Value

businessBeginnerCommon

The predicted price range at which a product can be resold in the secondary market, accounting for condition, demand, seasonality, and market trends.

Pro Tip

Resale value can be higher than original retail for limited editions and collectibles.

REST API

(Representational State Transfer API)

/rest ay-pee-eye/

apiBeginnerCommon

An architectural style for web APIs using standard HTTP methods (GET, POST, PUT, DELETE). JustKalm's primary API follows REST principles with JSON request/response bodies.

Related:GraphQLgRPC
See also:API Reference

RMSE

(Root Mean Square Error)

/are-em-ess-ee/

metricsAdvancedSpecialized

The square root of the average of squared differences between predicted and actual values. Penalizes larger errors more heavily than MAE, making it sensitive to outliers.

Example

An RMSE of $12.50 indicates the typical prediction error magnitude, with outliers weighted more heavily.

Related:MAEMSEMAPE
S
8 terms

Screen Reader

technicalBeginnerFrequent

Assistive technology that converts on-screen content to speech or braille. Used by blind and visually impaired users. Proper semantic HTML and ARIA labels are essential for compatibility.

Pro Tip

Test your interfaces with VoiceOver (macOS/iOS) or NVDA (Windows) regularly.

SDK

(Software Development Kit)

/ess-dee-kay/

apiBeginnerCommon

Pre-built libraries for Python, JavaScript/TypeScript, Ruby, Go, PHP, Java, and Rust that simplify integration with the JustKalm API. Includes type definitions, automatic retries, and error handling.

import { JustKalm } from '@justkalm/sdk';
const client = new JustKalm({ apiKey: process.env.JUSTKALM_API_KEY });
See also:SDKs

Sell-Through Rate

(STR)

/sell-through rate/

businessIntermediateFrequent

The percentage of listed items that actually sell within a given time period. Higher rates indicate stronger demand and appropriate pricing.

Example

A 65% 30-day sell-through rate means 65 of every 100 items listed sold within a month.

SHAP

(SHapley Additive exPlanations)

/shap/

aiAdvancedSpecialized

A game-theoretic approach to explain model predictions. SHAP values show how each feature contributes to pushing the prediction from the baseline to the final output.

Example

SHAP analysis reveals that 'brand' contributes +$200 while 'condition' contributes -$50 to this valuation.

SLA

(Service Level Agreement)

/ess-el-ay/

technicalBeginnerCommon

A formal commitment to service quality metrics including uptime percentage, response time, and support responsiveness. Breach of SLA may trigger credits or penalties.

Example

Enterprise SLA: 99.95% uptime, p99 latency < 200ms, 4-hour critical support response.

See also:SLA

Smart Contract

blockchainAdvancedSpecialized

Self-executing code stored on a blockchain that automatically enforces agreement terms when conditions are met. Used in JustKalm for material verification and authenticity attestations.

See also:Architecture

Smart Contract

blockchainIntermediateFrequent

Self-executing code stored on a blockchain that automatically enforces agreement terms. Enables trustless transactions without intermediaries.

Example

Our Digital Product Passport uses smart contracts for immutable provenance records.

// Algorand PyTeal smart contract
@app.create
def create():
    return pt.Approve()

SOC 2

(System and Organization Controls 2)

/sock-two/

regulatoryAdvancedFrequent

An auditing standard measuring how well a company safeguards customer data. SOC 2 Type II reports cover security, availability, processing integrity, confidentiality, and privacy over time.

See also:SecurityTrust
T
3 terms

Token

/toh-ken/

aiBeginnerCommon

The basic unit of text processing in language models. Roughly corresponds to word fragments. GPT-4 uses ~1.3 tokens per word on average. API pricing is per-token.

Example

'JustKalm valuation' = 3 tokens. 1000 tokens ≈ 750 words.

Pro Tip

Monitor token usage to optimize costs. Use shorter prompts where possible.

Toxicology Assessment

healthIntermediateFrequent

Our evaluation of potential chemical hazards based on product materials, manufacturing origin, brand practices, and regulatory databases. Provides a risk score, not a definitive safety determination.

Warning

This is risk estimation from databases, not physical testing of your specific product.

See also:Limitations

Transfer Learning

aiAdvancedFrequent

Using a model pre-trained on a large dataset as a starting point for a new task. Dramatically reduces training time and data requirements.

Example

Our image analysis uses ImageNet-pretrained models fine-tuned on fashion items.

U
2 terms

Uncertainty Interval

metricsIntermediateFrequent

The predicted range within which the true value is likely to fall, expressed as a min-max range. Based on Bayesian uncertainty quantification and historical prediction variance.

Example

A valuation of $150 with uncertainty interval $120-$180 means we're 95% confident the true value falls in that range.

Learn More

Our uncertainty intervals are calibrated to achieve 95% coverage based on holdout testing.

Uptime

technicalBeginnerCommon

The percentage of time a service is operational and accessible. Measured as (Total Time - Downtime) / Total Time × 100. Does not include scheduled maintenance windows.

Example

99.99% uptime = 52.6 minutes downtime per year. 99.9% = 8.76 hours/year.

See also:Status
W
2 terms

WCAG

(Web Content Accessibility Guidelines)

/wuh-cag/

technicalIntermediateFrequent

International standards for making web content accessible to people with disabilities. WCAG 2.1 AA is the common compliance target. Covers perceivability, operability, understandability, and robustness.

See also:Accessibility

Webhook

/web-hook/

apiIntermediateFrequent

An HTTP callback that delivers real-time notifications to your server when events occur in JustKalm (e.g., batch processing complete, async valuation ready).

Pro Tip

Always verify webhook signatures to ensure requests are from JustKalm.

See also:Webhooks
Z
1 term

Zero-Shot Learning

aiAdvancedSpecialized

A model's ability to perform tasks it wasn't explicitly trained on. Modern LLMs can classify, translate, and analyze without task-specific training data.

Missing a Term?

If we've used a term somewhere that isn't defined here, please let us know and we'll add it.

Suggest a Term

Need More Help?

Check out our documentation, API reference, or reach out to our support team for personalized assistance.

Browse Documentation

109

Total Terms

9

Categories

34

With Examples

6

Code Samples

45

Cross-References