Skip to content

Commit 507f791

Browse files
added new repo for ML and remove ML from this repo
1 parent 06bb74d commit 507f791

File tree

4 files changed

+14
-383
lines changed

4 files changed

+14
-383
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ before_install:
1111

1212
#before_install:
1313
# - cd Algorithm_tests/sorting_tests
14-
1514
# Install awesome_bot for README.md broken link checking
15+
1616
before_script:
1717
- gem install awesome_bot
1818

Algorithm_tests/dynamic_programming_tests/knapsack_tests/knapsack_tests.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
import sys
2+
import unittest
3+
4+
5+
# For importing from different folders
6+
# OBS: This is supposed to be done with automated testing, hence relative to folder we want to import from
7+
# sys.path.append('Algorithms/cryptology/ceasar_shifting_cipher')
8+
9+
# If run from local:
10+
#sys.path.append('../../Algorithms/dynamic_programming/knapsack/knapsack_bottomup')
11+
12+
13+
114
# with open('p01_c.txt') as f_capacity:
215
# capacity = int(f_capacity.readline())
316
#

Algorithms/machine_learning/neural_network/Neural Network from scratch.ipynb

Lines changed: 0 additions & 379 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,6 @@ Whenever I face an interesting problem I document the algorithm that I learned t
4949
* [Bisection Method](https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/numerical_methods/bisection.py)
5050
* [(simple) Fixpoint iteration](https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/numerical_methods/fixpoint.py)
5151

52-
# Machine Learning
53-
* [Neural Network from scratch](https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/machine_learning/neural_network/Neural%20Network%20from%20scratch.ipynb)
54-
5552
# Other
5653
* [Maintaining Median](https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/median_maintenance.py)
5754
* [Huffman Algorithm](https://github.com/AladdinPerzon/Algorithms-Collection-Python/blob/master/Algorithms/other/Huffman/Huffman.py)

0 commit comments

Comments
 (0)