-
Re: Exporting partitioned dataset to CSV files
Hi @Rémi , This is not currently possible with the Visual recipes hence the error "Partitioning scheme is not representable as folders". You will have to use a Python recipe to define the n…1 · -
Re: How to get row count & dataset size using project.get_dataset() API?
Hi @AntonB , You can change auto compute after build via the API using something like ( I tested this on DSS 10.0.5) This will auto-build for all probes of type records only( they are [1] in the list…1 · -
Re: How to get row count & dataset size using project.get_dataset() API?
Hi @nmadhu20 , Computing metrics can be a heavy operation depending on the dataset size and type. There is no way to really speed up compute_metrics() in general. Your observation of the speedrunning…1 · -
Re: Display images from folder in Standard webapp
Hi, In case anyone is looking for a solution one way to do this is using the following : Python Code: import dataikuimport pandas as pdfrom flask import request, send_fileimport base64# Example:# As …1 · -
Re: Fixing exception "Failed to read dataset stream data"
If you want to skip when not available you can use try: except in your code1 ·
