On Premise API
Step-by-step guide on how to set up Ensemble's on premise API.
1. Sign Up
If you don't have an account yet, sign up!
2. Login to Ensemble's User Portal
Login to your Ensemble account at https://app.ensemblecore.ai.

3. Download Ensemble Core
Once logged into your Ensemble account, copy the pip install command presented on the landing page and paste it into your command line interface. Then execute the pip install command.


Make note of the API token included in your populated pip install command. It is a unique token required to download and utilize the on premise API.

4. Start Using Ensemble Core
Run the following example python file and see displayed output to verify that everything is working properly.
# example.py | Example Python File
import numpy as np
import ensemble_core as ec
# Login
user = ec.User()
user.login(username='YOUR_USERNAME', password='YOUR_PASSWORD', token='NTI4MTg3MTc')
# Example data
X = np.array([[1, 1], [1, 2], [2, 2], [2, 3]])
y = np.dot(X, np.array([1, 2])) + 3
# Initialize generator with your desired specifications
generator = ec.Generator(in_size=2, out_size=1, n_features=5)
# Run Feature Enhancement
generator.fit(X, y)
# Generate new and enhanced features
enhanced_X = generator.generate(X)
That's it!
Now that you've properly set up Ensemble's on premise API:
Reference Ensemble's Tutorials (coming soon!) to help guide your implementation.
Take a look at our Case Studies (coming soon!) to see specific use cases that Ensemble helped improve.
Dive further into our core API, Ensemble Core 1.0
Last updated