Skip to content
Closed
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
10 changes: 0 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-release Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=test
- name: Run tests
# opencv-python is gated out on 3.14t (no cp314t wheel yet), so skip the
Expand All @@ -41,16 +35,12 @@ jobs:
# single file that imports it (quantum/q_fourier_transform.py) is skipped too.
run: uv run --with=pytest-run-parallel pytest
--iterations=8 --parallel-threads=auto --ignore-gil-enabled
--ignore=computer_vision/cnn_classification.py
--ignore=computer_vision/flip_augmentation.py
--ignore=computer_vision/harris_corner.py
--ignore=computer_vision/mosaic_augmentation.py
--ignore=data_compression/peak_signal_to_noise_ratio.py
--ignore=digital_image_processing/
--ignore=docs/conf.py
--ignore=dynamic_programming/k_means_clustering_tensorflow.py
--ignore=machine_learning/lstm/lstm_prediction.py
--ignore=neural_network/input_data.py
--ignore=project_euler/
--ignore=quantum/q_fourier_transform.py
--ignore=scripts/validate_solutions.py
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ jobs:
with:
python-version-file: .python-version
allow-prereleases: true
# keras needs hdf5 on pre-release Python.
- run: |
if [ "$(python -c 'import sys; print(sys.version_info.releaselevel)')" != "final" ]; then
sudo apt-get update -qq
sudo apt-get install --yes libhdf5-dev
fi
- run: uv sync --group=docs
- uses: actions/configure-pages@v6
- run: uv run sphinx-build -c docs . docs/_build/html
Expand Down
5 changes: 0 additions & 5 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,6 @@
* [Xtea](ciphers/xtea.py)

## [Computer Vision](computer_vision)
* [Cnn Classification](computer_vision/cnn_classification.py)
* [Flip Augmentation](computer_vision/flip_augmentation.py)
* [Gramian](computer_vision/gramian.py)
* [Haralick Descriptors](computer_vision/haralick_descriptors.py)
Expand Down Expand Up @@ -474,7 +473,6 @@
* [Floyd Warshall](dynamic_programming/floyd_warshall.py)
* [Integer Partition](dynamic_programming/integer_partition.py)
* [Iterating Through Submasks](dynamic_programming/iterating_through_submasks.py)
* [K Means Clustering Tensorflow](dynamic_programming/k_means_clustering_tensorflow.py)
* [Knapsack](dynamic_programming/knapsack.py)
* [Largest Divisible Subset](dynamic_programming/largest_divisible_subset.py)
* [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
Expand Down Expand Up @@ -766,8 +764,6 @@
* [Local Weighted Learning](machine_learning/local_weighted_learning/local_weighted_learning.py)
* [Logistic Regression](machine_learning/logistic_regression.py)
* [Loss Functions](machine_learning/loss_functions.py)
* Lstm
* [Lstm Prediction](machine_learning/lstm/lstm_prediction.py)
* [Mab](machine_learning/mab.py)
* [Mean Shift](machine_learning/mean_shift.py)
* [Mfcc](machine_learning/mfcc.py)
Expand Down Expand Up @@ -1058,7 +1054,6 @@
* [Swish](neural_network/activation_functions/swish.py)
* [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py)
* [Convolution Neural Network](neural_network/convolution_neural_network.py)
* [Input Data](neural_network/input_data.py)
* Optimizers
* [Adagrad](neural_network/optimizers/adagrad.py)
* [Adam Optimizer](neural_network/optimizers/adam_optimizer.py)
Expand Down
99 changes: 0 additions & 99 deletions computer_vision/cnn_classification.py

This file was deleted.

146 changes: 0 additions & 146 deletions dynamic_programming/k_means_clustering_tensorflow.py

This file was deleted.

Empty file removed machine_learning/lstm/__init__.py
Empty file.
55 changes: 0 additions & 55 deletions machine_learning/lstm/lstm_prediction.py

This file was deleted.

Loading
Loading