FoundryProductsTechnologyCompanyInvestor relationsResource libraryNews
Contact us
Resource library
    Resource library home
    Developer resources
    Applications
    Lessons
    Research and publications
    Support
      Software packages
        eqc-direct software package
        qci-client software package
        uqrng-direct software package
        emucore-direct software package
        eqc-models software package
          Getting Started
          Basic Usage
          eqc_models
          Dependencies
      Spec sheets
      User guides

Couldn’t find what you are looking for? Reach out to technical support.

Contact support
Privacy PolicyCookie PolicyTerms of UseForward Looking StatementsAccessibility Statement
Terms and Conditions of SaleEnd User License Agreement

© 2018-2026 Quantum Computing Inc.

Download

Default

Getting Started

Introduction

Entropy Quantum Computing (EQC) from Quantum Computing Inc. (QCi) can be used to solve combinatorial optimization problems as well as approximation of continuous solution spaces. The EQC device series developed by QCi utilizes nanophotonic measurement to implement an optimzation solver.

The eqc-models package is provided to support the translation of well known optimization and machine learning models into formulations which run on EQC devices. There are two intended patterns of usage for the classes provided. The optimization models follow a pattern of

  1. build the model
  2. solve the concrete model
  3. analyze the results.

While machine learning models follow the pattern

  1. build the model
  2. fit the model
  3. predict with the fitted model.

Underneath, the same method of interaction is performed. All models have some formulation of an unconstrained (except in domain) polynomial. Sometimes the polynomial is a quadratic, sometimes it is higher order. There are some device specifics that require additional details to be considered.

Installation

Python package is availble from PyPI repository and can be installed by:

  • pip install eqc-models

Table of Contents

  • Getting Started
  • Basic Usage
  • eqc_models
    • eqc_models.base
      • Subpackages
      • ConstraintsMixIn
      • ConstraintModel
      • ConstrainedQuadraticModel
      • QuadraticModel
      • PolynomialModel
      • ConstrainedPolynomialModel
      • InequalitiesMixin
      • InequalityConstraintModel
      • EqcModel
      • ModelSolver
      • QUBO
      • Polynomial
    • eqc_models.solvers
      • Dirac1CloudSolver
      • Dirac3CloudSolver
      • QciClientSolver
      • Dirac3IntegerCloudSolver
      • Dirac3ContinuousCloudSolver
    • eqc_models.ml
      • QBoostClassifier
      • QSVMClassifier
      • PCA
      • ReservoirForecastModel
    • eqc_models.allocation
      • AllocationModel
      • AllocationModelX
      • PortMomentum
      • ResourceRuleEnum
    • eqc_models.assignment
      • QAPModel
    • eqc_models.combinatorics
      • SetCoverModel
    • eqc_models.graph
      • MaxCutModel
      • GraphPartitionModel
    • eqc_models.sequence
      • MTZTSPModel
    • eqc_models.algorithms
      • PenaltyMultiplierAlgorithm
    • eqc_models.utilities
      • evaluate_polynomial()
      • read_coefficient_file()
      • read_index_file()
      • read_config_file()
      • convert_hamiltonian_to_polynomial()
    • eqc_models.utilities.qplib
      • QBBModel
      • QGLModel
      • file_to_model()
      • file_to_polynomial()
      • process_file()
      • read_line()
  • Dependencies
    • Packages
Next page

Content

  • Getting Started
  • Introduction
  • Installation
  • Table of Contents