Skip to content

I want to know if using all zeros instead of 1,0 as DroPE will yield the same result. It is hoped that such an experiment can be supplemented. #3

@xiezhipeng-git

Description

@xiezhipeng-git

Currently, DroPE uses position encoding of 1,0, right? What will happen to the result if the following code is replaced with position encoding of all zeros?And what if it's half -1 and half 1, or the average of -1, 0, and 1?Is it the same result, or which one is the best?

# Null positional embeddings
    original_cos, original_sin = position_embeddings
    cos, sin = (
        torch.ones_like(original_cos),
        torch.zeros_like(original_sin),
    )

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions