-
Notifications
You must be signed in to change notification settings - Fork 710
Expand file tree
/
Copy path__init__.pyi
More file actions
4767 lines (3886 loc) · 135 KB
/
__init__.pyi
File metadata and controls
4767 lines (3886 loc) · 135 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import datetime
import typing
import pathlib
import storage
from . import schemas
from . import types
T = typing.TypeVar('T')
DatasetType = typing.TypeVar('DatasetType', bound='Dataset')
__all__ = [
"__version__",
"AgreementError",
"AgreementNotAcceptedError",
"Array",
"AuthenticationError",
"AuthorizationError",
"BadRequestError",
"Branch",
"BranchExistsError",
"BranchNotFoundError",
"BranchView",
"Branches",
"BranchesView",
"BytePositionIndexOutOfChunk",
"CanNotCreateTensorWithProvidedCompressions",
"CannotDeleteMainBranchError",
"CannotRenameMainBranchError",
"Client",
"Column",
"ColumnAlreadyExistsError",
"ColumnDefinition",
"ColumnDefinitionView",
"ColumnDoesNotExistError",
"ColumnMissingAppendValueError",
"ColumnStatistics",
"ColumnView",
"CredsKeyAlreadyAssignedError",
"Dataset",
"DatasetUnavailableError",
"DatasetView",
"DimensionsMismatch",
"DimensionsMismatchError",
"DtypeMismatch",
"EmbeddingSizeMismatch",
"EmptyColumnNameError",
"Executor",
"ExplainQueryResult",
"ExpiredTokenError",
"FormatNotSupportedError",
"Future",
"FutureVoid",
"GcsStorageProviderFailed",
"HTTPBodyIsMissingError",
"HTTPBodyIsNotJSONError",
"HTTPRequestFailedError",
"History",
"IncorrectDeeplakePathError",
"IndexAlreadyExistsError",
"IndexBuildConfig",
"IndexingMode",
"InvalidBinaryMaskCompression",
"InvalidChunkStrategyType",
"InvalidColumnValueError",
"InvalidCredsKeyAssignmentError",
"InvalidImageCompression",
"InvalidTextCompression",
"InvalidIndexCreationError",
"InvalidLinkDataError",
"InvalidLinkType",
"InvalidMedicalCompression",
"InvalidPolygonShapeError",
"InvalidSegmentMaskCompression",
"InvalidSequenceOfSequence",
"InvalidTextType",
"InvalidType",
"InvalidTypeAndFormatPair",
"InvalidTypeDimensions",
"InvalidURIError",
"JSONIndexNotFound",
"JSONKeyNotFound",
"LogExistsError",
"LogNotexistsError",
"Metadata",
"NotFoundError",
"NotLoggedInAgreementError",
"PermissionDeniedError",
"PushError",
"QuantizationType",
"Random",
"random",
"ReadOnlyDataset",
"ReadOnlyDatasetModificationError",
"ReadOnlyMetadata",
"Row",
"RowRange",
"RowRangeView",
"RowView",
"Schema",
"SchemaView",
"SearchConfig",
"ShapeIndexOutOfChunk",
"StorageAccessDenied",
"StorageInternalError",
"StorageKeyAlreadyExists",
"StorageKeyNotFound",
"StorageNetworkConnectionError",
"StorageProviderMissingError",
"Tag",
"TagExistsError",
"TagNotFoundError",
"TagView",
"Tags",
"TagsView",
"TensorAlreadyExists",
"UnevenColumnsError",
"UnevenUpdateError",
"UnexpectedInputDataForDicomColumn",
"UnexpectedMedicalTypeInputData",
"UnknownBoundingBoxCoordinateFormat",
"UnknownBoundingBoxPixelFormat",
"UnknownFormat",
"UnknownStringType",
"UnknownType",
"UnspecifiedDtype",
"UnsupportedChunkCompression",
"UnsupportedPythonType",
"UnsupportedSampleCompression",
"Version",
"VersionNotFoundError",
"WriteFailedError",
"WrongChunkCompression",
"WrongSampleCompression",
"__prepare_atfork",
"client",
"connect",
"convert",
"copy",
"core",
"create",
"create_async",
"_create_global_cache",
"delete",
"delete_async",
"disconnect",
"exists",
"exists_async",
"explain_query",
"from_coco",
"from_csv",
"from_parquet",
"like",
"link",
"link_async",
"open",
"open_async",
"open_read_only",
"open_read_only_async",
"prepare_query",
"query",
"query_async",
"replay_log",
"schemas",
"storage",
"tql",
"types",
"TelemetryClient",
"telemetry_client"
]
class Future(typing.Generic[T]):
"""
A future representing an asynchronous operation result in ML pipelines.
The Future class enables non-blocking operations for data loading and processing,
particularly useful when working with large ML datasets or distributed training.
Once resolved, the Future holds the operation result which can be accessed either
synchronously or asynchronously.
Methods:
result() -> typing.Any:
Blocks until the Future resolves and returns the result.
__await__() -> typing.Any:
Enables using the Future in async/await syntax.
cancel() -> None:
Cancels the Future if it is still pending.
is_completed() -> bool:
Checks if the Future has resolved without blocking.
<!-- test-context
```python
import deeplake
ds = deeplake.create("mem://ml-data/embeddings")
ds = deeplake.create("mem://ml-data/images")
ds.add_column("images", "int32")
ds.append({"images": [0] * 300})
deeplake.open_async = lambda x: deeplake._deeplake.open_async(x.replace("s3://", "mem://"))
```
-->
Examples:
Loading ML dataset asynchronously:
```python
future = deeplake.open_async("s3://ml-data/embeddings")
# Check status without blocking
if not future.is_completed():
print("Still loading...")
# Block until ready
ds = future.result()
```
Using with async/await:
```python
async def load_data():
ds = await deeplake.open_async("s3://ml-data/images")
batch = await ds["images"].get_async(slice(0, 32))
return batch
```
"""
def result(self) -> T:
"""
Blocks until the Future resolves and returns the result.
Returns:
typing.Any: The operation result once resolved.
<!-- test-context
```python
import deeplake
import numpy as np
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
ds.append({"images": [0] * 300})
```
-->
Examples:
```python
future = ds["images"].get_async(slice(0, 32))
batch = future.result() # Blocks until batch is loaded
```
"""
...
def __await__(self) -> typing.Any:
"""
Makes the Future compatible with async/await syntax.
<!-- test-context
```python
import deeplake
import numpy as np
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
ds.append({"images": [0] * 300})
```
-->
Examples:
```python
async def load_batch():
batch = await ds["images"].get_async(slice(0, 32))
```
Returns:
typing.Any: The operation result once resolved.
"""
...
def is_completed(self) -> bool:
"""
Checks if the Future has resolved without blocking.
Returns:
bool: True if resolved, False if still pending.
<!-- test-context
```python
import deeplake
import numpy as np
ds = deeplake.create("tmp://")
ds.add_column("label", "int32")
ds.append({"label": [0] * 300})
ds["label"].metadata["class_names"] = ["car", "truck", "bus"]
```
-->
Examples:
```python
future = ds.query_async("SELECT * WHERE label = 'car'")
if future.is_completed():
results = future.result()
else:
print("Query still running...")
```
"""
...
def cancel(self) -> None:
"""
Cancels the Future if it is still pending.
"""
class FutureVoid:
"""
A Future representing a void async operation in ML pipelines.
Similar to Future but for operations that don't return values, like saving
or committing changes. Useful for non-blocking data management operations.
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
ds.add_column("embeddings", "float32")
ds.append({"embeddings": [0.1] * 100})
new_embeddings = [0.2] * 32
def process_other_data():
pass
```
-->
Examples:
Asynchronous dataset updates:
```python
# Update embeddings without blocking
future = ds["embeddings"].set_async(slice(0, 32), new_embeddings)
# Do other work while update happens
process_other_data()
# Wait for update to complete
future.wait()
```
Using with async/await:
```python
async def update_dataset():
await ds.commit_async()
print("Changes saved")
```
"""
def wait(self) -> None:
"""
Blocks until the operation completes.
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
```
-->
Examples:
```python
future = ds.commit_async()
future.wait() # Blocks until commit finishes
```
"""
...
def __await__(self) -> typing.Any:
"""
Makes the FutureVoid compatible with async/await syntax.
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
```
-->
Examples:
```python
async def save_changes():
await ds.commit_async()
```
"""
...
def cancel(self) -> None:
"""
Cancels the Future if it is still pending.
"""
def is_completed(self) -> bool:
"""
Checks if the operation has completed without blocking.
Returns:
bool: True if completed, False if still running.
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
```
-->
Examples:
```python
future = ds.commit_async()
if future.is_completed():
print("Commit finished")
else:
print("Commit still running...")
```
"""
...
class Array:
"""
Wrapper around n dimensional array
"""
@property
def dtype(self) -> numpy.dtype[typing.Any]:
"""
Returns the data type of the array
"""
...
@property
def shape(self) -> tuple:
"""
Returns the shape of the array
"""
...
def __getitem__(self, index: int | slice | list | tuple ) -> typing.Any:
"""
Returns the value at the given index or slice
"""
...
def get_async(self, index: int | slice | list | tuple) -> Future[typing.Any]:
"""
Returns the value at the given index or slice asynchronously
"""
...
def __str__(self) -> str: ...
def __repr__(self) -> str: ...
class ReadOnlyMetadata:
"""
Read-only access to dataset and column metadata for ML workflows.
Stores important information about datasets like:
- Model parameters and hyperparameters
- Preprocessing statistics (mean, std, etc.)
- Data splits and fold definitions
- Version and training information
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
ds.metadata["model_name"] = "resnet50"
ds.metadata["hyperparameters"] = {"learning_rate": 0.001, "batch_size": 32}
ds["images"].metadata["mean"] = [0.485, 0.456, 0.406]
ds["images"].metadata["std"] = [0.229, 0.224, 0.225]
```
-->
Examples:
Accessing model metadata:
```python
metadata = ds.metadata
model_name = metadata["model_name"]
model_params = metadata["hyperparameters"]
```
Reading preprocessing stats:
```python
mean = ds["images"].metadata["mean"]
std = ds["images"].metadata["std"]
```
"""
def __getitem__(self, key: str) -> typing.Any:
"""
Gets metadata value for the given key.
Args:
key: Metadata key to retrieve
Returns:
The stored metadata value
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
ds.metadata["model_name"] = "resnet50"
ds.metadata["hyperparameters"] = {"learning_rate": 0.001, "batch_size": 32}
ds["images"].metadata["mean"] = [0.485, 0.456, 0.406]
ds["images"].metadata["std"] = [0.229, 0.224, 0.225]
```
-->
Examples:
```python
mean = ds["images"].metadata["mean"]
std = ds["images"].metadata["std"]
```
"""
...
def keys(self) -> list[str]:
"""
Lists all available metadata keys.
Returns:
list[str]: List of metadata key names
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
metadata = ds.metadata
```
-->
Examples:
```python
# Print all metadata
for key in metadata.keys():
print(f"{key}: {metadata[key]}")
```
"""
...
def __contains__(self, key: str) -> bool:
"""
Checks if the metadata contains the given key.
"""
...
class Metadata(ReadOnlyMetadata):
"""
Writable access to dataset and column metadata for ML workflows.
Stores important information about datasets like:
- Model parameters and hyperparameters
- Preprocessing statistics
- Data splits and fold definitions
- Version and training information
Changes are persisted immediately without requiring `commit()`.
<!-- test-context
```python
import deeplake
ds = deeplake.create("tmp://")
ds.add_column("images", "int32")
```
-->
Examples:
Storing model metadata:
```python
ds.metadata["model_name"] = "resnet50"
ds.metadata["hyperparameters"] = {
"learning_rate": 0.001,
"batch_size": 32
}
```
Setting preprocessing stats:
```python
ds["images"].metadata["mean"] = [0.485, 0.456, 0.406]
ds["images"].metadata["std"] = [0.229, 0.224, 0.225]
```
"""
def __setitem__(self, key: str, value: typing.Any) -> None:
"""
Sets metadata value for given key. Changes are persisted immediately.
Args:
key: Metadata key to set
value: Value to store
Examples:
```python
ds.metadata["train_split"] = 0.8
ds.metadata["val_split"] = 0.1
ds.metadata["test_split"] = 0.1
```
"""
...
class ExplainQueryResult:
def __str__(self) -> str:
...
def to_dict(self) -> typing.Any:
...
def prepare_query(query: str, token: str | None = None, creds: dict[str, str] | None = None) -> Executor:
"""
Prepares a TQL query for execution with optional authentication.
Args:
query: TQL query string to execute
token: Optional Activeloop authentication token
creds (dict, optional): Dictionary containing credentials used to access the dataset at the path.
Returns:
Executor: An executor object to run the query.
<!-- test-context
```python
import deeplake
ds = deeplake.create("mem://parametriized")
ds.add_column("category", "text")
ds.append({"category": ["active", "inactive", "not sure"]})
ds.commit()
```
-->
Examples:
Running a parametrized batch query:
```python
ex = deeplake.prepare_query('SELECT * FROM "mem://parametriized" WHERE category = ?')
results = ex.run_batch([["active"], ["inactive"]])
assert len(results) == 2
```
"""
...
def query(query: str, token: str | None = None, creds: dict[str, str] | None = None) -> DatasetView:
"""
Executes TQL queries optimized for ML data filtering and search.
TQL is a SQL-like query language designed for ML datasets, supporting:
- Vector similarity search
- Text semantic search
- Complex data filtering
- Joining across datasets
- Efficient sorting and pagination
Args:
query: TQL query string supporting:
- Vector similarity: COSINE_SIMILARITY, L2_NORM
- Text search: BM25_SIMILARITY, CONTAINS
- MAXSIM similarity for ColPali embeddings: MAXSIM
- Filtering: WHERE clauses
- Sorting: ORDER BY
- Joins: JOIN across datasets
token: Optional Activeloop authentication token
creds (dict, optional): Dictionary containing credentials used to access the dataset at the path.
- If 'aws_access_key_id', 'aws_secret_access_key', 'aws_session_token' are present, these take precedence over credentials present in the environment or in credentials file. Currently only works with s3 paths.
- It supports 'aws_access_key_id', 'aws_secret_access_key', 'aws_session_token', 'endpoint_url', 'aws_region', 'profile_name' as keys.
- If nothing is given is, credentials are fetched from the environment variables. This is also the case when creds is not passed for cloud datasets
Returns:
DatasetView: Query results that can be:
- Used directly in ML training
- Further filtered with additional queries
- Converted to PyTorch/TensorFlow dataloaders
- Materialized into a new dataset
<!-- test-context
```python
import deeplake
ds = deeplake.create("mem://embeddings")
ds.add_column("vector", deeplake.types.Array("float32", 1))
ds.commit()
ds = deeplake.create("mem://documents")
ds.add_column("text", "text")
ds.commit()
ds = deeplake.create("mem://dataset")
ds.add_column("train_split", "text")
ds.add_column("confidence", "float32")
ds.add_column("label", "text")
ds.commit()
ds = deeplake.create("mem://images")
ds.add_column("id", "int32")
ds.add_column("image", "int32")
ds.add_column("embedding", deeplake.types.Array("float32", 1))
ds.commit()
ds = deeplake.create("mem://metadata")
ds.add_column("image_id", "int32")
ds.add_column("labels", "text")
ds.add_column("metadata", "text")
ds.add_column("verified", "bool")
ds.commit()
```
-->
Examples:
Vector similarity search:
```python
# Find similar embeddings
similar = deeplake.query('''
SELECT * FROM "mem://embeddings"
ORDER BY COSINE_SIMILARITY(vector, ARRAY[0.1, 0.2, 0.3]) DESC
LIMIT 100
''')
# Use results in training
dataloader = similar.pytorch()
```
Text semantic search:
```python
# Search documents using BM25
relevant = deeplake.query('''
SELECT * FROM "mem://documents"
ORDER BY BM25_SIMILARITY(text, 'machine learning') DESC
LIMIT 10
''')
```
Complex filtering:
```python
# Filter training data
train = deeplake.query('''
SELECT * FROM "mem://dataset"
WHERE "train_split" = 'train'
AND confidence > 0.9
AND label IN ('cat', 'dog')
''')
```
Joins for feature engineering:
```python
# Combine image features with metadata
features = deeplake.query('''
SELECT i.image, i.embedding, m.labels, m.metadata
FROM "mem://images" AS i
JOIN "mem://metadata" AS m ON i.id = m.image_id
WHERE m.verified = true
''')
```
"""
...
def query_async(query: str, token: str | None = None, creds: dict[str, str] | None = None) -> Future[DatasetView]:
"""
Asynchronously executes TQL queries optimized for ML data filtering and search.
Non-blocking version of `query()` for better performance with large datasets.
Supports the same TQL features including vector similarity search, text search,
filtering, and joins.
Args:
query: TQL query string supporting:
- Vector similarity: COSINE_SIMILARITY, EUCLIDEAN_DISTANCE
- Text search: BM25_SIMILARITY, CONTAINS
- Filtering: WHERE clauses
- Sorting: ORDER BY
- Joins: JOIN across datasets
token: Optional Activeloop authentication token
creds (dict, optional): Dictionary containing credentials used to access the dataset at the path.
- If 'aws_access_key_id', 'aws_secret_access_key', 'aws_session_token' are present, these take precedence over credentials present in the environment or in credentials file. Currently only works with s3 paths.
- It supports 'aws_access_key_id', 'aws_secret_access_key', 'aws_session_token', 'endpoint_url', 'aws_region', 'profile_name' as keys.
- If nothing is given is, credentials are fetched from the environment variables. This is also the case when creds is not passed for cloud datasets
Returns:
Future: Resolves to DatasetView that can be:
- Used directly in ML training
- Further filtered with additional queries
- Converted to PyTorch/TensorFlow dataloaders
- Materialized into a new dataset
<!-- test-context
```python
import deeplake
def prepare_training():
pass
```
-->
Examples:
Basic async query:
```python
# Run query asynchronously
future = deeplake.query_async('''
SELECT * FROM "mem://embeddings"
ORDER BY COSINE_SIMILARITY(vector, ARRAY[0.1, 0.2, 0.3]) DESC
''')
# Do other work while query runs
prepare_training()
# Get results when needed
results = future.result()
```
With async/await:
```python
async def search_similar():
results = await deeplake.query_async('''
SELECT * FROM "mem://images"
ORDER BY COSINE_SIMILARITY(embedding, ARRAY[0.1, 0.2, 0.3]) DESC
LIMIT 100
''')
return results
async def main():
similar = await search_similar()
```
Non-blocking check:
```python
future = deeplake.query_async(
"SELECT * FROM dataset WHERE train_split = 'train'"
)
if future.is_completed():
train_data = future.result()
else:
print("Query still running...")
```
"""
...
def explain_query(query: str, token: str | None = None, creds: dict[str, str] | None = None) -> ExplainQueryResult:
"""
Explains TQL query with optional authentication.
Args:
query: TQL query string to explain
token: Optional Activeloop authentication token
creds (dict, optional): Dictionary containing credentials used to access the dataset at the path.
Returns:
ExplainQueryResult: An explain result object to analyze the query.
<!-- test-context
```python
import deeplake
ds = deeplake.create("mem://explain_query")
ds.add_column("category", "text")
ds.append({"category": ["active", "inactive", "not sure"]})
ds.commit()
```
-->
Examples:
Explaining a query:
```python
explain_result = deeplake.explain_query('SELECT * FROM "mem://explain_query" WHERE category == \'active\'')
print(explain_result)
```
"""
...
class Client:
"""
Client for connecting to Activeloop services.
Handles authentication and API communication.
"""
endpoint: str
class Random:
"""
A pseudorandom number generator class that allows for deterministic random number generation
through seed control.
"""
seed: int | None
class Branch:
"""
Describes a branch within the dataset.
Branches are created using [deeplake.Dataset.branch][].
"""
__hash__: typing.ClassVar[None] = None
def __eq__(self, other: Branch) -> bool:
...
def __str__(self) -> str:
...
def delete(self) -> None:
"""
Deletes the branch from the dataset
"""
...
def open(self) -> Dataset:
"""
Opens corresponding branch of the dataset
"""
...
def open_async(self) -> Future[Dataset]:
"""
Asynchronously fetches the dataset corresponding to the branch and returns a Future object.
"""
...
def rename(self, new_name: str) -> None:
"""
Renames the branch within the dataset
"""
...
@property
def base(self) -> tuple[str, str] | None:
"""
The base branch id and version
"""
...
@property
def id(self) -> str:
"""
The unique identifier of the branch
"""
...
@property
def name(self) -> str:
"""
The name of the branch
"""
...
@property
def timestamp(self) -> datetime.datetime:
"""
The branch creation timestamp
"""
...
@property
def is_link(self) -> bool:
...
@property
def link_target(self) -> str | None:
...
class BranchView:
"""
Describes a read-only branch within the dataset.
"""
__hash__: typing.ClassVar[None] = None
def __eq__(self, other: BranchView) -> bool:
...
def __str__(self) -> str:
...
@property
def base(self) -> tuple[str, str] | None:
"""
The base branch id and version
"""
...
@property
def id(self) -> str:
"""
The unique identifier of the branch
"""
...
@property
def name(self) -> str:
"""
The name of the branch
"""
...
@property
def timestamp(self) -> datetime.datetime:
"""
The branch creation timestamp
"""
...
def open(self) -> ReadOnlyDataset:
"""
Opens corresponding branch of the dataset
"""
...