SymetryML6.1
  • Introduction
  • Guides
    • Onboarding Guide
    • Technical Requirements
    • Admin User Guide
    • Installation Guide
      • Installation Guide - GPU
      • Installation Guide - Spark
  • SymetryML GUI
    • ML Toolkit
      • The SymetryML Difference
      • Data Mining Lifecycle
      • SymetryML Concepts
      • Data Sources
      • Streams
      • Encoders
      • Projects
      • Models
    • Sequence Models
    • SymetryML Federated Learning
      • Creating the Federation
      • Load data to local project
      • Requesting Federation Information from Admin Node
      • Joining a Federation with a peer node
      • Federated Data & Modelling
      • Appendix
    • DEM Generator
  • SymetryML Rest Client
    • REST API Reference Guide
      • SymetryML REST API Security
      • SymetryML JSON API Objects
      • Encoder Object REST API
      • SymetryML Projects REST API
      • About Federated Learning
      • Hipaa Compliance and Federated Learning
      • Federated Learning API
        • Federated Learning Topologies
        • Federated Learning with Nats
        • Federated Learning with AWS
        • Fusion Projects
      • Exploration API
      • Modeling API
      • Exporting and Importing Model
      • Third Party Model Rest API
      • SymetryML Job Information
      • Prediction API
      • Data Source API
      • Project Data Source Logs
      • Stream Data Source API
      • AutoML with SymetryML
      • Transform Dataframe
      • Select Model with SymetryML
      • Auto Select with SymetryML
      • Tasks API
      • Miscellaneous API
      • WebSocket API
      • Appendix A JSON Data Structure Schema
      • Appendix B Sample Code
  • SymetryML SaaS
    • SaaS Homepage
    • SaaS Dashboard
    • SaaS Account
    • SaaS Users
    • SaaS Licence
Powered by GitBook
On this page
  • Exporting and Importing Model Rest API
  • Export a Model
  • Import a Model
  • Request Body
  1. SymetryML Rest Client
  2. REST API Reference Guide

Exporting and Importing Model

Export / Import functionality enables the user to export models and then re-import them into another project. Models are encoded into a Base 64 string so that they can easily be transmitted using various channels of communication.

Exporting and Importing Model Rest API

Export a Model

Export a model into a Base 64 string.

URL

GET /symetry/rest/{cid}/projects/{pid}/model/export?modelid

HTTP Responses

HTTP Status Code

HTTP Status Message

Description

200

OK

Success.

HTTP Response Entity

HTTP Response Entity

Example

String

A Base64 representation of the model.

Sample Request/Response Fed Create

GET url="http://charm:8080/symetry/rest/c1/projects/p1/model/export?modelid=theModelName"

Response:
Base64 String

Import a Model

Import a model into a project.

URL

POST /symetry/rest/{cid}/projects/{pid}/model/import?modelid= [body=string]

Request Body

HTTP Responses

HTTP Status Code

HTTP Status Message

Description

200

OK

Success.

Sample Request/Response Fed Create

POST url="http://charm:8080/symetry/rest/c1/projects/p1/model/export?modelid=theModelName"

BODY:
Base64 string
PreviousModeling APINextThird Party Model Rest API

Last updated 2 years ago

The body is a Base 64 string from a model that was exported first with the functionality.

Model Export