tommasoboccali / ml_infn_hackBase

4 stars 1 forks source link

nome del file non torna #1

Open tommasoboccali opened 3 years ago

tommasoboccali commented 3 years ago

In

Exercises_full.ipynb

vuole aprire

FileNotFoundError: [Errno 2] No such file or directory: 'Training_dataset/dataset.csv'

ma il file si chiama get_dataset.csv

tommasoboccali commented 3 years ago

@androbomb

tommasoboccali commented 3 years ago

ovvero scusa: c'e' un notebook che fa

!wget https://pandora.infn.it/public/b0a561

proporrei di mettere questa riga direttamente nel notebook principale ... provo a modificatre io

androbomb commented 3 years ago

No, dataset e l'altro file (.npz) pesavano troppo e non ci sono.

I due notebook servono per scaricare con !wget https://... I due files troppo grandi, prendendoli dal mio pandora share.

Vanno lanciati quindi quelli prima.

Se preferisci posso lanciare il comando dal notebook, ma vanno anche cambiati gli import di conseguenza.

A dopo, Alessandro

tommasoboccali commented 3 years ago

occhio che da' errore:

il file che quel wget scarica fa

            document.getElementById(startParameters['MAIN_ELEMENT']).innerHTML = '<div class="hash_load_error">' + startParameters['HASH_LOAD_ERROR'] + '</div>';

forse lo share non e' pubblico?

se files sono finali proporrei di

import os if not os.path.isfile('test93_0_20000.npz'): !wget QUELLO GIUSTO

e se vuoi invece che su pandora metto il payload a pisa ....

tommasoboccali commented 3 years ago

.. e eventualmente dop oil wget ... fare untar e/o mettere nel posto giusto

androbomb commented 3 years ago

Ciao Tommaso,

Ho aggiunto il download dei due files nel testo della lezione.

Ho provato sul server e funziona. Se hai tempo, prova pure tu (in locale non mi funziona; non ho wget e con apt-get per qualche motivo non funziona; ma su server, con wget funziona e scarica i files).

A dopo,

Alessandro

Il giorno lun 31 mag 2021 alle ore 13:30 Tommaso Boccali < @.***> ha scritto:

.. e eventualmente dop oil wget ... fare untar e/o mettere nel posto giusto

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/tommasoboccali/ml_infn_hackBase/issues/1#issuecomment-851425843, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOGWYZVW3QQ374UVGYIEZ5LTQNXOTANCNFSM452WMLEA .

-- Alessandro Bombini

tommasoboccali commented 3 years ago

non capisco perche', ma questo sembra non andare

image

temo che il prio wget che fallisce non tiri un'eccezione ....

potremmo fare

if not os.path.isfile(path):

wget

    !wget -O {path} https://pandora.infn.it/public/b0a561/dl/dataset.csv

if not os.path.isfile(path): !wget https://pandora.infn.it/public/b0a561/dl/dataset.csv path = path.split('/')[-1]

mettendoli in catena ...

tommasoboccali commented 3 years ago

anchemeglio:

Import dataset: pick a path to .csv file

path = './Training_dataset/dataset.csv'

if not os.path.isfile(path):

wget

    !wget -O {path} https://pandora.infn.it/public/b0a561/dl/dataset.csv

if not os.path.isfile(path): path = path.split('/')[-1] if not os.path.isfile(path): !wget https://pandora.infn.it/public/b0a561/dl/dataset.csv

androbomb commented 3 years ago

Ciao Tommaso,

A me funziona; non riproduco l'errore... Ora casomai dopo la call facciamo una prova anche con Lucio (nel caso nell'except stampiamo l'errore in qualche modo:

Import dataset: pick a path to .csv file

path = './Training_dataset/dataset.csv' if not os.path.isfile(path): try:

wget

    !wget -O {path}

https://pandora.infn.it/public/b0a561/dl/dataset.csv except Exception as e: print("type error: " + str(e)) !wget https://pandora.infn.it/public/b0a561/dl/dataset.csv path = path.split('/')[-1]

PS: il mio account skype è SkypeID: alessandro.bombini

Buona giornata,

Alessandro

Il giorno lun 31 mag 2021 alle ore 15:34 Tommaso Boccali < @.***> ha scritto:

anchemeglio: Import dataset: pick a path to .csv file

path = './Training_dataset/dataset.csv'

if not os.path.isfile(path):

wget

!wget -O {path} https://pandora.infn.it/public/b0a561/dl/dataset.csv if not os.path.isfile(path): path = path.split('/')[-1] if not os.path.isfile(path): !wget https://pandora.infn.it/public/b0a561/dl/dataset.csv

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/tommasoboccali/ml_infn_hackBase/issues/1#issuecomment-851496327, or unsubscribe https://github.com/notifications/unsubscribe-auth/AOGWYZW3CYK6CGZZKEZE6LTTQOGAHANCNFSM452WMLEA .

-- Alessandro Bombini