Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
3b3f1c9
Put the general layout of the additional section to be transplanted i…
DavidT3 Oct 21, 2025
25bc81a
Copied in some of Tess' original code cells from the RXTE spectra ML …
DavidT3 Oct 21, 2025
1f1bff9
Played around with the ML sections on Fornax, and have added working …
DavidT3 Oct 22, 2025
f9683b6
Improved the plots in the ML section of the RXTE spectrum notebook. F…
DavidT3 Oct 22, 2025
aa1ea68
Added a lot of commentary to the machine learning section of the RXTE…
DavidT3 Oct 22, 2025
2adc4be
Added more commentary on the ML part of the RXTE notebook, particular…
DavidT3 Oct 22, 2025
db55893
Put the last initial piece of commentary on the ML section of the RXT…
DavidT3 Oct 22, 2025
a3a5d49
May have finished the addition of ML sections to the RXTE notebook. F…
DavidT3 Oct 22, 2025
4f471fa
Updated the run time of the RXTE notebook - gotten much faster! Backe…
DavidT3 Oct 22, 2025
d8d91c4
Manually added deps to be installed to the heasoft environment on Cir…
DavidT3 Oct 22, 2025
0fa81a6
Hopefully made sure that the heasoftpy-getting-started.md notebook wi…
DavidT3 Oct 22, 2025
9610ade
Shrunk the DBSCAN-coloured UMAP space figure to 6x6, and removed tick…
DavidT3 Oct 23, 2025
a06bfcf
Added tags to large matplotlib-code-cells, the user doesn't want to s…
DavidT3 Nov 6, 2025
38de1ed
Merge branch 'main' into notebook/addMLToExistingRXTE
DavidT3 Jan 16, 2026
60de30d
Merge branch 'main' into notebook/addMLToExistingRXTE
DavidT3 Jan 16, 2026
88f8a62
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jan 16, 2026
5f73d48
Added the updated cell metadata to collapse plotting and configuratio…
DavidT3 Jan 16, 2026
1fe9d21
Lots of little grammar fixes to analyze-rxte-spectra.md
DavidT3 Jan 16, 2026
4e70940
Replaced import xspec with import xspec as xs
DavidT3 Jan 16, 2026
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
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,10 @@ jobs:
name: Installing extra dependencies
# TODO THIS METHOD OF DEFINING DEPS IS NOT GOOD ENOUGH, EVEN FOR A TEMPORARY SOLUTION
command: |
micromamba install -y -c conda-forge -n heasoft astroquery pyvo tqdm aplpy s3fs boto3
micromamba install -y -c conda-forge -n heasoft astroquery pyvo tqdm aplpy s3fs boto3 scikit-learn umap-learn
micromamba run -n heasoft pip install xga
micromamba install -y -c conda-forge -n sas astroquery pyvo tqdm aplpy s3fs boto3
micromamba run -n sas pip install xga

- run:
name: Create the Sphinx build environment
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/populate-production-notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,16 +106,16 @@ jobs:
find downloaded_artifacts -name "*.ipynb" -type f -print0 | while IFS= read -r -d '' file; do
# 1. Strip the leading directory to get the relative path
rel_path="${file#downloaded_artifacts/}"

# 2. Determine the destination directory
dest_dir="production-notebooks/$(dirname "$rel_path")"

# 3. Create the directory and move the file
mkdir -p "$dest_dir"
mv "$file" "production-notebooks/$rel_path"
done


# Copy changed markdown files from main branch to production
for nb in $(echo "${{ steps.nb_artifacts_to_fetch.outputs.notebooks_to_update }}" | tr ',' '\n'); do

Expand Down
Loading
Loading