You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi every one. I am learning DJL(Deep java library) and I have seen Malicious URL Detector post and I'm going to try it locally, but when I run the code I get error.
I have tried to remove FEATURE_LENGTH but got another error:
I want to solve the problem but I don't know how to do it(
And I have some questions about source code of Malicious URL Detector line 71 and SequentialBlocks.
Why we initialize 3D shape? in csv data only 2 column(first feature and second is label)
Why we need a lot of blocks? What does it mean acctually? source code
The text was updated successfully, but these errors were encountered:
We use a 3D shape because most operations work no on single CSV data items, but batches of CSV data items. So the reference to NCW for the expected layout is using the common names for the axes: n for batch size, c for channels (bytes per character) and w for width (number of characters).
Each block is a trainable function used in deep learning. They have state in terms of parameters and possibly child blocks, and use them to compute the result given the input.
Hi every one. I am learning DJL(Deep java library) and I have seen Malicious URL Detector post and I'm going to try it locally, but when I run the code I get error.
I have tried to remove
FEATURE_LENGTH
but got another error:I want to solve the problem but I don't know how to do it(
And I have some questions about source code of Malicious URL Detector line 71 and
SequentialBlocks
.The text was updated successfully, but these errors were encountered: