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

chebyshev_uniform for Generator1D #213

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Conversation

samuelperezdi
Copy link

As a result of my excellent learning experience in the Harvard ComputeFest 2024: Physics-Informed Neural Networks, I wanted to contribute to neurodiffeq. The perfect opportunity presented by initiative of @shuheng-liu. I open this pull request to create the chebyshev_uniform method for Generator1D. This should:

  • Sample randomly from an uniform distribution between 0 and π
  • Generate the Chebyshev nodes of the first kind from this sample
  • Map output from (-1, 1) to (tmin, tmax)

I have also updated the documentation and added a test, accordingly.

Thank you!

@@ -4,21 +4,25 @@
import numpy as np
from typing import List

def _chebyshev_uniform(a, b, n):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I am not sure that this makes sense. Chebyshev nodes are deterministic sequence of numbers. Its not a function which is valid for a random number.
I think Its better to define "chebyshev_noisy" which adds noise to the chebyshev sequence rather than doing this.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for your comments, Sathvik! I pushed a new commit with an attempt of chebyshev_noisy.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants