Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NN Norm Functions to Paddle Frontend #15054

Open
hmahmood24 opened this issue May 8, 2023 · 13 comments
Open

Add NN Norm Functions to Paddle Frontend #15054

hmahmood24 opened this issue May 8, 2023 · 13 comments
Labels
hacktoberfest hacktoberfest Paddle Frontend Developing the Paddle Frontend, checklist triggered by commenting add_frontend_checklist ToDo A ToDo list of tasks

Comments

@hmahmood24
Copy link
Contributor

hmahmood24 commented May 8, 2023

Add NN Norm Functions to PaddlePaddle Frontend

Please keep in mind that the proper way to link an issue to this list is to comment "- [ ] #issue_number" while the issue's title only includes the name of the function you've chosen.
batch_norm

ivy/functional/frontends/paddle/nn/functional/norm.py
ivy_tests/test_ivy/test_frontends/test_paddle/test_nn/test_functional/test_norm.py

@hmahmood24 hmahmood24 added Paddle Frontend Developing the Paddle Frontend, checklist triggered by commenting add_frontend_checklist ToDo A ToDo list of tasks labels May 8, 2023
@hmahmood24 hmahmood24 self-assigned this May 8, 2023
@hmahmood24 hmahmood24 changed the title Add paddle.nn.functional.norm NN Norm Functions to PaddlePaddle Frontend Add paddle.nn.functional.norm NN Norm Functions to Paddle Frontend Jun 12, 2023
@ivy-llc ivy-llc deleted a comment from iababio Jun 20, 2023
@Codehackerone
Copy link

Hello. I would like to work on this as the part for the assignment

@ivy-llc ivy-llc deleted a comment from Madjid-CH Jul 11, 2023
@ToniAnton22
Copy link

#19241 can I contribute to this issue?

@Madjid-CH
Copy link
Contributor

#19241 can I contribute to this issue?

It's already taken by me 😊
but you can help if you want.

@ToniAnton22
Copy link

#19241 can I contribute to this issue?

It's already taken by me 😊 but you can help if you want.

Thanks you, but it's fine. I mistakenly thought open issues were there to take not taken so nevermind my previous comment xD. I can help if you need any.

@ivy-llc ivy-llc deleted a comment from Madjid-CH Jul 20, 2023
@ivy-llc ivy-llc deleted a comment from Ambro19 Aug 8, 2023
@shaby112
Copy link
Contributor

shaby112 commented Aug 9, 2023

@IANXHULU
Copy link

Can contribute to this task

@ivy-llc ivy-llc deleted a comment from Ambro19 Aug 17, 2023
@ivy-llc ivy-llc deleted a comment from Ambro19 Aug 17, 2023
@ivy-llc ivy-llc deleted a comment from Ambro19 Aug 17, 2023
@ivy-llc ivy-llc deleted a comment from Madjid-CH Aug 17, 2023
@Ambro19
Copy link
Contributor

Ambro19 commented Aug 18, 2023

Hey @hmahmood24 @Madjid-CH, @unify, I implemented instance_norm function (#22053) and its testing, but I am facing issue trying to do "pull request". Any idea on how to solve this issue? Any help will be appreciated.

When "I git push", I received this error:
! [remote rejected] adding-instance_norm-and-testing -> adding-instance_norm-and-testing (refusing to allow a Personal Access Token to create or update workflow .github/workflows/array-api-det-coverage.yml without workflow scope)
error: failed to push some refs to 'https://github.com/Ambro19/ivy.git'

(ivy_dev) PS E:\Unify-Ivy\ivy>

And below is the array-api-det-coverge.yml file. This is the issue's line: SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }

name: array-api-determine-test-coverage
on:
workflow_dispatch:
permissions:
actions: read

jobs:
determine_coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout Ivy 🛎
uses: actions/checkout@v2
with:
path: ivy
persist-credentials: false
submodules: "recursive"
fetch-depth: 150

  - name: Determine Test Coverage
    run: |
      pip install pydriller tqdm
      cd ivy
      python run_tests_CLI/array_api_det_coverage.py
      cd ..
      mkdir tests
      cp ivy/tests.pbz2 tests/

  - name: Push Mapping
    uses: cpina/github-action-push-to-another-repository@main
    env:
      **SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}**
    with:
      source-directory: tests/
      destination-github-username: 'unifyai'
      destination-repository-name: 'Mapping'
      user-email: [email protected]
      commit-message: Update Array API Tests Mapping
      target-branch: main

@Madjid-CH
Copy link
Contributor

Hey @hmahmood24 @Madjid-CH, @unify, I implemented instance_norm function (#22053) and its testing, but I am facing issue trying to do "pull request". Any idea on how to solve this issue? Any help will be appreciated.

When "I git push", I received this error: ! [remote rejected] adding-instance_norm-and-testing -> adding-instance_norm-and-testing (refusing to allow a Personal Access Token to create or update workflow .github/workflows/array-api-det-coverage.yml without workflow scope) error: failed to push some refs to 'https://github.com/Ambro19/ivy.git' (ivy_dev) PS E:\Unify-Ivy\ivy>

And below is the array-api-det-coverge.yml file. This is the issue's line: SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }

name: array-api-determine-test-coverage on: workflow_dispatch: permissions: actions: read

jobs: determine_coverage: runs-on: ubuntu-latest steps: - name: Checkout Ivy 🛎 uses: actions/checkout@v2 with: path: ivy persist-credentials: false submodules: "recursive" fetch-depth: 150

  - name: Determine Test Coverage
    run: |
      pip install pydriller tqdm
      cd ivy
      python run_tests_CLI/array_api_det_coverage.py
      cd ..
      mkdir tests
      cp ivy/tests.pbz2 tests/

  - name: Push Mapping
    uses: cpina/github-action-push-to-another-repository@main
    env:
      **SSH_DEPLOY_KEY: ${{ secrets.SSH_DEPLOY_KEY }}**
    with:
      source-directory: tests/
      destination-github-username: 'unifyai'
      destination-repository-name: 'Mapping'
      user-email: [email protected]
      commit-message: Update Array API Tests Mapping
      target-branch: main

Hi @Ambro19
please refer to these PR : #19261

@rajarshighoshal
Copy link

Hi I want to work on this issue if no one is working on it

@msarmadsohail msarmadsohail mentioned this issue Aug 31, 2023
Closed
@AnnaTz AnnaTz changed the title Add paddle.nn.functional.norm NN Norm Functions to Paddle Frontend Add NN Norm Functions to Paddle Frontend Sep 8, 2023
@ivy-llc ivy-llc deleted a comment from Boghdady9 Sep 8, 2023
@sourabh-santra
Copy link

I will be working on batch_norm #23300

@SamruddhiNavale
Copy link
Contributor

SamruddhiNavale commented Sep 19, 2023

@a0m0rajab a0m0rajab added the hacktoberfest hacktoberfest label Sep 25, 2023
@nassimberrada nassimberrada removed their assignment Sep 28, 2023
@parteekcoder
Copy link

@abdullateefogundipe
Copy link

27199

@ivy-llc ivy-llc locked and limited conversation to collaborators Jan 3, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
hacktoberfest hacktoberfest Paddle Frontend Developing the Paddle Frontend, checklist triggered by commenting add_frontend_checklist ToDo A ToDo list of tasks
Projects
None yet
Development

No branches or pull requests