Skip to content

Commit

Permalink
Rmove Feynman problems dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
MilesCranmer committed Nov 1, 2022
1 parent caf9e10 commit 75fb2d7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 281 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/CI.yml
Expand Up @@ -60,17 +60,17 @@ jobs:
- name: "Install Coverage tool"
run: pip install coverage coveralls
- name: "Run tests"
run: coverage run --source=pysr --omit='*/feynman_problems.py' -m unittest test.test
run: coverage run --source=pysr -m unittest test.test
- name: "Install JAX"
run: pip install jax jaxlib # (optional import)
- name: "Run JAX tests"
run: coverage run --append --source=pysr --omit='*/feynman_problems.py' -m unittest test.test_jax
run: coverage run --append --source=pysr -m unittest test.test_jax
- name: "Install Torch"
run: pip install torch # (optional import)
- name: "Run Torch tests"
run: coverage run --append --source=pysr --omit='*/feynman_problems.py' -m unittest test.test_torch
run: coverage run --append --source=pysr -m unittest test.test_torch
- name: "Run custom env tests"
run: coverage run --append --source=pysr --omit='*/feynman_problems.py' -m unittest test.test_env
run: coverage run --append --source=pysr -m unittest test.test_env
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -122,9 +122,9 @@ jobs:
- name: "Install Coverage tool"
run: python3 -m pip install coverage coveralls
- name: "Run tests"
run: coverage run --append --source=pysr --omit='*/feynman_problems.py' -m unittest test.test
run: coverage run --append --source=pysr -m unittest test.test
- name: "Run custom env tests"
run: coverage run --append --source=pysr --omit='*/feynman_problems.py' -m unittest test.test_env
run: coverage run --append --source=pysr -m unittest test.test_env
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
101 changes: 0 additions & 101 deletions datasets/FeynmanEquations.csv

This file was deleted.

1 change: 0 additions & 1 deletion pysr/__init__.py
Expand Up @@ -8,6 +8,5 @@
best_row,
)
from .julia_helpers import install
from .feynman_problems import Problem, FeynmanProblem
from .export_jax_header import sympy2jax
from .export_torch_header import sympy2torch
173 changes: 0 additions & 173 deletions pysr/feynman_problems.py

This file was deleted.

0 comments on commit 75fb2d7

Please sign in to comment.