activeloopai / activeloopai/deeplake

[Improvement] Make index errors while accessing Dataset and Tensor easier to understand.

Aperta
#1,560 9 commenti 0 reazioni 1 assegnatario Rivendicata da @Moksh45 Vedi su GitHub
Lingua principale
C++
Stelle
9.2k
Fork
722
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

## 🚨🚨 Feature Request

- [x] A new implementation (Improvement, Extension)

### Is your feature request related to a problem?

Currently, if a user tries to access an index that is larger than the dataset length or tensor length, an internal error is thrown which is not easy to understand.

### Description of the possible solution

We can catch the error and throw a more descriptive error that's easier to understand.

Example of when the error is thrown:-

```python
ds = hub.dataset("path/to/dataset")
ds.create_tensor("xyz")
for i in range(10):
ds.xyz.append(i)

# now length of xyz and ds is 10

ds[20] # throws error
ds.xyz[89] # throws error
```

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.