-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
How to give a new dataset (my dataset) as an input this project? #3
Comments
Prepare the dataset im a format similar to the UCR datasets. It should be CSV files, with the 0th column being the class label and the remaining columns as the 100 features. Note, this file must have no extension like .csv at the end. Put this file in the data folder. Next, go to utils/constants.py and edit each of the arrays at the end to provide the path to the train and test files, the number of classes and the number of variables. Note the index of this array (probably the 86th index). Then go to the root folder and duplicate any script with _model and edit it. Change the DATASET_ID variable to point to the index from the constants.py file. Edit the models as needed. Edit the main portion by changing the string names and then run |
Cool Thanks Bro... But
|
|
Thanks for the clarification Titu... Just a few more doubts:
|
|
Hello, I saw a note in the code of LSTM-FCN that the fine-tuning model can be added, but the input data is one-dimensional. How to use a picture classification model like VGG16 for fine-tuning? |
Hi! I want to use your model to do the classification of my sequence data. But in the visualization context vector section, how you get the attention vector? The code is as follows: attention_vector = (attention_vector - attention_vector.min()) / (attention_vector.max() - Looking forward for your reply! Thanks! |
"Then go to the root folder and duplicate any script with _model and edit it. Change the DATASET_ID variable to point to the index from the constants.py file. Edit the models as needed. Edit the main portion by changing the string names and then run". |
Is there any script available to convert my or any time series dataset to UCR format? |
Is there any script available to convert my or any time series dataset to UCR format? |
I am very confused about why the dataset files have no extension? What is the format type of them? |
They are CSV files. It's an old and outstanding issue which drops the file type. |
I got this error: 'ModelCheckpoint' object has no attribute '_implements_train_batch_hooks'. Why this happens and how do we fix it? The "ModelCheckpoint" is imported from keras so I have no idea why something is missing? |
I have my data set of 100 features and 1 target variable in an numpy array.. How to give it as an input to this project... Thanks
The text was updated successfully, but these errors were encountered: