Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 295 Bytes

File metadata and controls

20 lines (14 loc) · 295 Bytes
title Remove a Model
sidebarTitle Remove a Model

Description

The drop_model() function removes a model from MindsDB.

Syntax

Use the drop_model() method to remove a model:

# option 1
project.drop_model('my_model')

# option 2
server.models.drop('my_model')