Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions CONTRIBUTORS.md

Large diffs are not rendered by default.

58 changes: 29 additions & 29 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const nav = [
{ text: 'API', link: '/api' },
{
text: 'Forum',
link: 'https://github.com/MilesCranmer/PySR/discussions'
link: 'https://github.com/astroautomata/PySR/discussions'
},
{
text: 'Python',
Expand Down Expand Up @@ -137,11 +137,11 @@ export default defineConfig({
}
],
editLink: {
pattern: 'https://github.com/MilesCranmer/PySR/edit/master/docs/:path',
pattern: 'https://github.com/astroautomata/PySR/edit/master/docs/:path',
text: 'Edit this page on GitHub'
},
socialLinks: [
{ icon: 'github', link: 'https://github.com/MilesCranmer/PySR' }
{ icon: 'github', link: 'https://github.com/astroautomata/PySR' }
],
footer: {
message: 'Made with <a href="https://vitepress.dev" target="_blank"><strong>VitePress</strong></a>',
Expand Down
2 changes: 1 addition & 1 deletion docs/src/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ The default loss is mean-square error, and weighted mean-square error.
One can pass an arbitrary Julia string to define a custom loss, using,
e.g., `elementwise_loss="myloss(x, y) = abs(x - y)^1.5"`. For more details,
see the
[Losses](https://milescranmer.github.io/SymbolicRegression.jl/dev/losses/)
[Losses](https://astroautomata.github.io/SymbolicRegression.jl/dev/losses)
page for SymbolicRegression.jl.

Here are some additional examples:
Expand Down
2 changes: 1 addition & 1 deletion examples/pysr_demo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"id": "N4gANfkaj8ie"
},
"source": [
"PySR can run for arbitrarily long, and continue to find more and more accurate expressions. You can set the total number of cycles of evolution with `niterations`, although there are also a [few more ways](https://github.com/MilesCranmer/PySR/pull/134) to stop execution.\n",
"PySR can run for arbitrarily long, and continue to find more and more accurate expressions. You can set the total number of cycles of evolution with `niterations`, although there are also a [few more ways](https://github.com/astroautomata/PySR/pull/134) to stop execution.\n",
"\n",
"**This first execution will take a bit longer to startup, as the library is JIT-compiled. The next execution will be much faster.**"
]
Expand Down
2 changes: 1 addition & 1 deletion pysr/test/test_torch.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def test_issue_656(self):

def test_constant_arguments(self):
# Test that functions with constant arguments work correctly
# Regression test for https://github.com/MilesCranmer/PySR/issues/656
# Regression test for https://github.com/astroautomata/PySR/issues/656
test_cases = [
(pysr.export_sympy.pysr2sympy("sqrt(2)"), np.sqrt(2)),
(sympy.exp(2), np.exp(2)),
Expand Down
2 changes: 1 addition & 1 deletion scripts/paper_image_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ def main() -> None:
base=docs_default_branch,
title=f"Add paper images from PySR PR #{pr_number}",
body=(
f"Automated upload of paper image(s) from MilesCranmer/PySR PR #{pr_number}.\n\n"
f"Automated upload of paper image(s) from astroautomata/PySR PR #{pr_number}.\n\n"
f"Source head: {pr.head_repo}@{pr.head_sha}\n"
f"Target dir: `{docs_images_dir}`\n"
),
Expand Down
Loading