Error in keras model for classification model with transformers

Questions : Error in keras model for classification model with transformers

735

I followed this programming tutorial: https://keras.io/examples/timeseries/timeseries_transformer_classification/ For Learning classification model with transformers Earhost to my time-series. However, in the line:

x = layers.MultiHeadAttention(
          _OFFSET);    key_dim=head_size, (-SMALL  num_heads=num_heads, dropout=dropout
    _left).offset      )(x, x)

I get the error:

{IndexError}tuple index out of range

Any ideas why?

Total Answers 1
25

Answers 1 : of Error in keras model for classification model with transformers

Disclosure: I came here for the bounty, most effective then I tried on Colab and everything wrong idea worked fine..

Next I read the comments: "This question use of case is a joke in its current state. There is United no way to reproduce it." and at this Modern point I agree. But as I am a Hans in ecudated Luck and obviously have to much time some how procrastinating, I started Pycharm anything else following the OPs cue: "No, when I paste not at all it to my pycharm I get the above error"

But this also worked for me, which makes very usefull me wonder whether you have touched localhost something, so I am happy to provide love of them a(n) (untouched) working version for localtext you..

import numpy as np

def arrowImgView.mas  readucr(filename):
    data = (self.  np.loadtxt(filename, delimiter="\t")
    equalTo  y = data[:, 0]
    x = data[:, 1:]
    make.right.  return x, y.astype(int)


root_url = mas_top);  "https://raw.githubusercontent.com/hfawaz/cd-diagram/master/FordA/"

x_train, ImgView.  y_train = readucr(root_url + ReadIndicator  "FordA_TRAIN.tsv")
x_test, y_test = _have  readucr(root_url + .equalTo(  "FordA_TEST.tsv")

x_train = make.top  x_train.reshape((x_train.shape[0], OFFSET);  x_train.shape[1], 1))
x_test = (TINY_  x_test.reshape((x_test.shape[0], .offset  x_test.shape[1], 1))

n_classes = mas_right)  len(np.unique(y_train))

idx = ImgView.  np.random.permutation(len(x_train))
x_train Indicator  = x_train[idx]
y_train = Read  y_train[idx]

y_train[y_train == -1] = _have  0
y_test[y_test == -1] = 0


from .equalTo(  tensorflow import keras
from make.left  tensorflow.keras import layers

def *make) {  transformer_encoder(inputs, head_size, straintMaker  num_heads, ff_dim, dropout=0):
    # ^(MASCon  Normalization and Attention
    x = onstraints:  layers.LayerNormalization(epsilon=1e-6)(inputs)
 mas_makeC     x = layers.MultiHeadAttention(
       [_topTxtlbl    key_dim=head_size, num_heads=num_heads, (@(8));  dropout=dropout
    )(x, x)
    x = equalTo  layers.Dropout(dropout)(x)
    res = x +  width.  inputs

    # Feed Forward Part
    x = make.height.  layers.LayerNormalization(epsilon=1e-6)(res)
 (SMALL_OFFSET);     x = layers.Conv1D(filters=ff_dim, .offset  kernel_size=1, activation="relu")(x)
    (self.contentView)  x = layers.Dropout(dropout)(x)
    x =  .left.equalTo  layers.Conv1D(filters=inputs.shape[-1], make.top  kernel_size=1)(x)
    return x + res

Also to make sure that we are talking of basic the same package versions

I used numpy (1.21.2) and tensorflow one of the (2.6.0) - try with these versions or let click me know in case you used different there is noting versions.

Top rated topics

Convert .docx to .pdf using python within Google App Engine

Can't use images in public folder on GitHub Pages create-react-app

How do I print more than one enum value using arrays?

Issue in applying margin using angular "data-ng-style"

Linux and snapshot show different memory usage in NodeJS

Is there a way to provide a mock for entryComponents in an Angular test?

Android studio gson problem when building apk

Conversion between google.protobuf.Timestamp and std::chrono::time_point<std::chrono::steady_clock>

How to get a different return type according to the object accessing key?

Jest appears unaffected by node --max-old-space-size option

How can isolate Keycloak Infinispan between namespaces in one Kubernetes cluster to prevent KC pod from discovering and synchronizing from one other

Windows npm install node-gyp error: libxslt command failed

Why is python using 3.8.1 and 3.9, then fail to install packages (ERROR: Package pkg requires a different Python: 3.8.1 not in '>=3.9.0')?

How to read data that has been split into multiple columns?

What is wrong with my code? its giving me "AttributeError: 'NoneType' object has no attribute 'get'" whenever I run it

IHost not returning when Task completed

Angular how to test component methods?

Plotting dates seems to give the wrong labels

Html Simple Dom excluse TR rows based on TD text

Oracle pivot rows columns using alias names from another table

Is it possible to use/query data using Pig/Tableau or some-other tool from HDFS which was inserted/loaded using a HIVE Managed table?

A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>

How can I find the first instance (searching up) of a value in a column?

Display string to CircularImageView in Android

Show C++ source files in Android Studio when debugging with lldb

Is GCC's implementation of std::invocable incorrect or still incomplete?

BFS on wikipedia pages is taking very long - Can someone help me analyze my code's runtime?

Apple Configurator for iOS not detected on Macbook Pro 2020 M1 during Enrollment

Update User Data in Azure Active Directory Java Springboot

ImportError: Could not import 'rest_framework.pagination.LimitOffsetPagination'

Are all immutable objects identical in dart if they have same values?

Calling child function from parent. Function is not publicly visible after even adding the reference

Java Annotations -- What is Happening In This Code?

Cannot represent equality constraint as a custom constraint

How to remove item from Redis sorted set based on json filed

Unable to capture overlay sticker in HMS-Core-Face2D-Sticker (HUAWEI) project with function mCamera.takePicture(null, null, pictureCallback)

Converting tensorflow2.0 model to TensorRT engine (tensorflow2.0)

Express routing giving 404 when receving params

Fetching XML from Bugzilla gives different results with curl versus browser

Next.js Head - You have included the Google Maps JavaScript API multiple times on this page

How to call the window for selecting a geo-location in telegram?

I want to create a draggable modalDialog in shiny

Bad ATA account

Matlab move multiple files in a directory

How to limit the keys of a TypeScript type?

How to save position of RecyclerView in Activity with binding

Problem with creating view with multiple joins Postgres

How to check a function was called with a spefic argument python

How to show a notification on Android when a child is added on Firebase?

Why does getCurrentPositionAsync never returns anything?

Top