Create a Project and Model
What is a Project?
Create a Project
# Please be mindful that the Project name must be unique and should not have spaces or special characters.
PROJECT_NAME = 'quickstart_example'
## Create the Project
project = fdl.Project(name=PROJECT_NAME)
project.create()
print(f'New project created with id = {project.id}')

List All Projects
Onboarding a Model
Define the ModelSpec
Define the Model Task
Infer the Model Schema
Review and Edit the Schema
Define Model Columns Using Pandas DataFrame Column Types
Pandas
Fiddler (fdl.DataType)
Onboard the Model
Last updated
Was this helpful?