|
134 | 134 | * [Run Length Encoding](compression/run_length_encoding.py)
|
135 | 135 |
|
136 | 136 | ## Computer Vision
|
| 137 | + * [Cnn Classification](computer_vision/cnn_classification.py) |
137 | 138 | * [Flip Augmentation](computer_vision/flip_augmentation.py)
|
138 | 139 | * [Haralick Descriptors](computer_vision/haralick_descriptors.py)
|
139 | 140 | * [Harris Corner](computer_vision/harris_corner.py)
|
|
344 | 345 | * [Floyd Warshall](dynamic_programming/floyd_warshall.py)
|
345 | 346 | * [Integer Partition](dynamic_programming/integer_partition.py)
|
346 | 347 | * [Iterating Through Submasks](dynamic_programming/iterating_through_submasks.py)
|
| 348 | + * [K Means Clustering Tensorflow](dynamic_programming/k_means_clustering_tensorflow.py) |
347 | 349 | * [Knapsack](dynamic_programming/knapsack.py)
|
348 | 350 | * [Largest Divisible Subset](dynamic_programming/largest_divisible_subset.py)
|
349 | 351 | * [Longest Common Subsequence](dynamic_programming/longest_common_subsequence.py)
|
350 | 352 | * [Longest Common Substring](dynamic_programming/longest_common_substring.py)
|
351 | 353 | * [Longest Increasing Subsequence](dynamic_programming/longest_increasing_subsequence.py)
|
352 |
| - * [Longest Increasing Subsequence O(Nlogn)](dynamic_programming/longest_increasing_subsequence_o(nlogn).py) |
| 354 | + * [Longest Increasing Subsequence O Nlogn](dynamic_programming/longest_increasing_subsequence_o_nlogn.py) |
353 | 355 | * [Longest Palindromic Subsequence](dynamic_programming/longest_palindromic_subsequence.py)
|
354 | 356 | * [Matrix Chain Multiplication](dynamic_programming/matrix_chain_multiplication.py)
|
355 | 357 | * [Matrix Chain Order](dynamic_programming/matrix_chain_order.py)
|
|
417 | 419 | * [Koch Snowflake](fractals/koch_snowflake.py)
|
418 | 420 | * [Mandelbrot](fractals/mandelbrot.py)
|
419 | 421 | * [Sierpinski Triangle](fractals/sierpinski_triangle.py)
|
| 422 | + * [Vicsek](fractals/vicsek.py) |
420 | 423 |
|
421 | 424 | ## Fuzzy Logic
|
422 | 425 | * [Fuzzy Operations](fuzzy_logic/fuzzy_operations.py)
|
|
462 | 465 | * [Dijkstra Alternate](graphs/dijkstra_alternate.py)
|
463 | 466 | * [Dijkstra Binary Grid](graphs/dijkstra_binary_grid.py)
|
464 | 467 | * [Dinic](graphs/dinic.py)
|
465 |
| - * [Directed And Undirected (Weighted) Graph](graphs/directed_and_undirected_(weighted)_graph.py) |
| 468 | + * [Directed And Undirected Weighted Graph](graphs/directed_and_undirected_weighted_graph.py) |
466 | 469 | * [Edmonds Karp Multiple Source And Sink](graphs/edmonds_karp_multiple_source_and_sink.py)
|
467 | 470 | * [Eulerian Path And Circuit For Undirected Graph](graphs/eulerian_path_and_circuit_for_undirected_graph.py)
|
468 | 471 | * [Even Tree](graphs/even_tree.py)
|
|
571 | 574 | * [Local Weighted Learning](machine_learning/local_weighted_learning/local_weighted_learning.py)
|
572 | 575 | * [Logistic Regression](machine_learning/logistic_regression.py)
|
573 | 576 | * [Loss Functions](machine_learning/loss_functions.py)
|
| 577 | + * Lstm |
| 578 | + * [Lstm Prediction](machine_learning/lstm/lstm_prediction.py) |
574 | 579 | * [Mfcc](machine_learning/mfcc.py)
|
575 | 580 | * [Multilayer Perceptron Classifier](machine_learning/multilayer_perceptron_classifier.py)
|
576 | 581 | * [Polynomial Regression](machine_learning/polynomial_regression.py)
|
|
631 | 636 | * [Floor](maths/floor.py)
|
632 | 637 | * [Gamma](maths/gamma.py)
|
633 | 638 | * [Gaussian](maths/gaussian.py)
|
634 |
| - * [Gaussian Error Linear Unit](maths/gaussian_error_linear_unit.py) |
635 | 639 | * [Gcd Of N Numbers](maths/gcd_of_n_numbers.py)
|
636 | 640 | * [Germain Primes](maths/germain_primes.py)
|
637 | 641 | * [Greatest Common Divisor](maths/greatest_common_divisor.py)
|
|
657 | 661 | * [Manhattan Distance](maths/manhattan_distance.py)
|
658 | 662 | * [Matrix Exponentiation](maths/matrix_exponentiation.py)
|
659 | 663 | * [Max Sum Sliding Window](maths/max_sum_sliding_window.py)
|
660 |
| - * [Median Of Two Arrays](maths/median_of_two_arrays.py) |
661 | 664 | * [Minkowski Distance](maths/minkowski_distance.py)
|
662 | 665 | * [Mobius Function](maths/mobius_function.py)
|
663 | 666 | * [Modular Division](maths/modular_division.py)
|
|
675 | 678 | * [Newton Forward Interpolation](maths/numerical_analysis/newton_forward_interpolation.py)
|
676 | 679 | * [Newton Raphson](maths/numerical_analysis/newton_raphson.py)
|
677 | 680 | * [Numerical Integration](maths/numerical_analysis/numerical_integration.py)
|
| 681 | + * [Proper Fractions](maths/numerical_analysis/proper_fractions.py) |
678 | 682 | * [Runge Kutta](maths/numerical_analysis/runge_kutta.py)
|
679 | 683 | * [Runge Kutta Fehlberg 45](maths/numerical_analysis/runge_kutta_fehlberg_45.py)
|
680 | 684 | * [Runge Kutta Gills](maths/numerical_analysis/runge_kutta_gills.py)
|
|
768 | 772 | * [Inverse Of Matrix](matrix/inverse_of_matrix.py)
|
769 | 773 | * [Largest Square Area In Matrix](matrix/largest_square_area_in_matrix.py)
|
770 | 774 | * [Matrix Class](matrix/matrix_class.py)
|
| 775 | + * [Matrix Equalization](matrix/matrix_equalization.py) |
771 | 776 | * [Matrix Multiplication Recursion](matrix/matrix_multiplication_recursion.py)
|
772 | 777 | * [Matrix Operation](matrix/matrix_operation.py)
|
773 | 778 | * [Max Area Of Island](matrix/max_area_of_island.py)
|
|
787 | 792 | * [Minimum Cut](networking_flow/minimum_cut.py)
|
788 | 793 |
|
789 | 794 | ## Neural Network
|
790 |
| - * [2 Hidden Layers Neural Network](neural_network/2_hidden_layers_neural_network.py) |
791 | 795 | * Activation Functions
|
792 | 796 | * [Binary Step](neural_network/activation_functions/binary_step.py)
|
793 | 797 | * [Exponential Linear Unit](neural_network/activation_functions/exponential_linear_unit.py)
|
| 798 | + * [Gaussian Error Linear Unit](neural_network/activation_functions/gaussian_error_linear_unit.py) |
794 | 799 | * [Leaky Rectified Linear Unit](neural_network/activation_functions/leaky_rectified_linear_unit.py)
|
795 | 800 | * [Mish](neural_network/activation_functions/mish.py)
|
796 | 801 | * [Rectified Linear Unit](neural_network/activation_functions/rectified_linear_unit.py)
|
|
801 | 806 | * [Swish](neural_network/activation_functions/swish.py)
|
802 | 807 | * [Back Propagation Neural Network](neural_network/back_propagation_neural_network.py)
|
803 | 808 | * [Convolution Neural Network](neural_network/convolution_neural_network.py)
|
| 809 | + * [Input Data](neural_network/input_data.py) |
804 | 810 | * [Simple Neural Network](neural_network/simple_neural_network.py)
|
| 811 | + * [Two Hidden Layers Neural Network](neural_network/two_hidden_layers_neural_network.py) |
805 | 812 |
|
806 | 813 | ## Other
|
807 | 814 | * [Activity Selection](other/activity_selection.py)
|
|
0 commit comments