Can we use differential learning rates for training neural networks on structured data like rossmann.
Hi Umar
the Rossman data is not to be found at files.fast.ai, do you know where it is. Thanks for your assistance
Yes, you can. StructuredModel has 3 groups of layers (embeddings, linear + batch norm and output).
thanks
In lesson 6 rossmann, i"m not able to run the âroassman_data_cleanâ in google colab. I face this error(below) when i tried to run this code:
PATH=Config().data_path()/Path(ârossmann/â)
! wget -P {PATH} http://files.fast.ai/part2/lesson14/rossmann.tgz
table_names = [âtrainâ, âstoreâ, âstore_statesâ, âstate_namesâ, âgoogletrendâ, âweatherâ, âtestâ]
tables = [pd.read_csv(PATH/fâ{fname}.csvâ, low_memory=False) for fname in table_names]
train, store, store_states, state_names, googletrend, weather, test = tables
len(train),len(test)
the error:
Hi.
You didnât unzip the rossmann.tgz file, so there is no file named train.csv
You need to use the command below after ! wget ....
to unzip
!tar -xzf rossmann.tgz -C ./data/rossmann/
oh iâll try it.
thanks