Skip to main content
POST
/
v2
/
integrations
/
databricks
/
export
Export To Databricks
curl --request POST \
  --url https://api.galileo.ai/v2/integrations/databricks/export \
  --header 'Content-Type: application/json' \
  --header 'Galileo-API-Key: <api-key>' \
  --data '{
  "database_name": "galileo_delta_db",
  "table_name": "table_1",
  "project_id": "{uuid4}",
  "run_id": "{uuid4}",
  "split": "training"
}'
{
  "database_name": "<string>",
  "table_name": "<string>",
  "catalog_name": "<string>",
  "task": "<string>",
  "filter_params": {
    "ids": [],
    "span_regex": false,
    "exclude_ids": [],
    "likely_mislabeled_dep_percentile": 0,
    "data_embs": false
  },
  "compare_to": "training",
  "map_threshold": 0.5,
  "all_but": false,
  "file_type": "csv",
  "include_cols": [
    "<string>"
  ],
  "col_mapping": {},
  "hf_format": false,
  "tagging_schema": "BIO",
  "project_id": "<string>",
  "run_id": "<string>",
  "split": "training",
  "inference_name": "<string>"
}

Authorizations

Galileo-API-Key
string
header
required

Body

application/json

Schema for exporting a dataframe to a Delta table.

database_name
string
required
table_name
string
required
project_id
string<uuid4>
required
run_id
string<uuid4>
required
split
enum<string>
required
Available options:
training,
validation,
test,
inference
catalog_name
string | null
task
string | null
filter_params
object
compare_to
enum<string> | null
Available options:
training,
validation,
test,
inference
map_threshold
number
default:0.5
all_but
boolean
default:false
file_type
enum<string>
Available options:
csv,
json,
parquet,
arrow,
zip
include_cols
string[] | null
col_mapping
object | null
hf_format
boolean
default:false
tagging_schema
enum<string> | null

Supported NER Tagging schemas.

A tagging schema is a definition of the way NER data is formatted. The schema letters define the tags used within it. ex: BIOES - B means before (a token), I means in (a token), E means end (of a token), S means single (length token) See https://en.wikipedia.org/wiki/Inside%E2%80%93outside%E2%80%93beginning_(tagging)

Available options:
BIO,
BIOES,
BILOU
inference_name
string | null

Response

Successful Response

database_name
string
required
table_name
string
required
project_id
string<uuid4>
required
run_id
string<uuid4>
required
split
enum<string>
required
Available options:
training,
validation,
test,
inference
catalog_name
string | null
task
string | null
filter_params
object
compare_to
enum<string> | null
Available options:
training,
validation,
test,
inference
map_threshold
number
default:0.5
all_but
boolean
default:false
file_type
enum<string>
Available options:
csv,
json,
parquet,
arrow,
zip
include_cols
string[] | null
col_mapping
object | null
hf_format
boolean
default:false
tagging_schema
enum<string> | null

Supported NER Tagging schemas.

A tagging schema is a definition of the way NER data is formatted. The schema letters define the tags used within it. ex: BIOES - B means before (a token), I means in (a token), E means end (of a token), S means single (length token) See https://en.wikipedia.org/wiki/Inside%E2%80%93outside%E2%80%93beginning_(tagging)

Available options:
BIO,
BIOES,
BILOU
inference_name
string | null
I