Skip to main content

No project description provided

Project description

JijZeptDashboard-Client

The JijZeptDashboard-Client has two features. The first feature is to add descriptions to your mathematical model using JijModeling. The second feature is to register your mathematical model on the JijZeptDashboard.

How to use

You can register your mathematical model on the JijZeptDashboard as follows:

import jijmodeling as jm
import jijzept_dashboard_client as jdc

# Define your mathematical model with JijModeling
d = jm.Placeholder("d", ndim=2, description="Distance matrix")
N = d.len_at(0, latex="N", description="Number of cities")
i = jm.Element("i", belong_to=(0, N), description="City index")
j = jm.Element("j", belong_to=(0, N), description="City index")
t = jm.Element("t", belong_to=(0, N), description="City index")
x = jm.BinaryVar("x", shape=(N, N), description="Assignment matrix")

problem = jm.Problem("TSP")
problem += jm.sum([i, j], d[i, j] * jm.sum(t, x[i, t] * x[j, (t + 1) % N]))
problem += jm.Constraint("one-city", jm.sum(i, x[i, t]) == 1, forall=t)
problem += jm.Constraint("one-time", jm.sum(t, x[i, t]) == 1, forall=i)

# Add descriptions to your mathematical model
jdc_problem = jdc.Problem.from_jm_problem(
    problem,
    objective_description="Minimize total distance",
    constraint_descriptions={
        "one-city": "Each city is visited exactly once",
        "one-time": "Each person visits exactly one city",
    }
)

# Register your mathematical model on the JijZeptDashboard
client = jdc.JijZeptDashboardClient(
    url="*** url for registration ***",
    email="*** your email address ***",
    password="*** your password ***",
)
response = client.register_model(jdc_problem, project_id=1)

You can add descriptions to the objective function and constraints by using jdc.Problem.from_jm_problem. On the other hand, to add descriptions to decision variables, placeholders and elements, you need to use JijModeling.

Define a problem in an alternative way

You can define a mathematical model with descriptions using the constractor of jdc.Problem as follows:

import jijmodeling as jm
import jijzept_dashboard_client as jdc

# Define your mathematical model with JijModeling
d = jm.Placeholder("d", ndim=2, description="Distance matrix")
N = d.len_at(0, latex="N", description="Number of cities")
i = jm.Element("i", belong_to=(0, N), description="City index")
j = jm.Element("j", belong_to=(0, N), description="City index")
t = jm.Element("t", belong_to=(0, N), description="City index")
x = jm.BinaryVar("x", shape=(N, N), description="Assignment matrix")

problem = jdc.Problem("TSP")
problem += (
    jm.sum([i, j], d[i, j] * jm.sum(t, x[i, t] * x[j, (t + 1) % N])),
    "Minimize total distance",
)
problem += (
    jm.Constraint("one-city", jm.sum(i, x[i, t]) == 1, forall=t),
    "Each city is visited exactly once",
)
problem += (
    jm.Constraint("one-time", jm.sum(t, x[i, t]) == 1, forall=i),
    "Each person visits exactly one city",
)

Project details


Download files

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

Source Distribution

jijzept_dashboard_client-0.1.4.tar.gz (8.4 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file jijzept_dashboard_client-0.1.4.tar.gz.

File metadata

File hashes

Hashes for jijzept_dashboard_client-0.1.4.tar.gz
Algorithm Hash digest
SHA256 8d66434c894d7b30d9da902235d6944c5a1f47308b9f923dfe59b52556d92145
MD5 53cf498c722a3688393daceee4bd8306
BLAKE2b-256 32f229577880198b4ccc22fa9be5061eb16bab6fef478989bef680ca67b39e8b

See more details on using hashes here.

File details

Details for the file jijzept_dashboard_client-0.1.4-py3-none-any.whl.

File metadata

File hashes

Hashes for jijzept_dashboard_client-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8e6c3ff65f2041a36139bd8ee7d2fcca8012a01c1008dc9f16da8213f9b93348
MD5 d77efa8e0306ded0807480b6563b98ed
BLAKE2b-256 6830d8d3a5ffc28b65170c12e5bd450d45a917f1d94a504bf1eb3eb12204acfc

See more details on using hashes here.

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