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

Added a functionality to take predefined tqdm loops as input to solver.fit() #221

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

Conversation

Lakshay-13
Copy link
Contributor

No description provided.

@@ -7,20 +7,20 @@

def _chebyshev_first(a, b, n):
nodes = torch.cos(((torch.arange(n) + 0.5) / n) * np.pi)
nodes = ((a + b) + (b - a) * nodes) / 2
nodes = ((a + b) + (a - b) * nodes) / 2
Copy link
Member

Choose a reason for hiding this comment

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

Is this change meant to ensure the returned points are increasing?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, that's the reason

Copy link
Member

@shuheng-liu shuheng-liu left a comment

Choose a reason for hiding this comment

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

Looks good. There are just a few minor details that I'll take over the branch to handle.

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.

2 participants