File tree 5 files changed +57
-0
lines changed
5 files changed +57
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Instance Selection Methods
2
+ =============
3
+ This project has the following algorithms:
4
+ - ENN
5
+ - The most pure Wilson Editing,
6
+ - and a modified version to work with self-training in case there are some
7
+ instances that the author do not want them removed.
8
+ - CNN
9
+ - RNN
10
+ - MSS
11
+ - ICF
12
+
13
+
14
+ Release Notes
15
+ =============
16
+
17
+ See the commit logs at https://github.com/dpr1005/Semisupervised-learning-and-instance-selection-methods.
Original file line number Diff line number Diff line change
1
+ # Semi-Supervised Algorithms
2
+ =============
3
+ This project has the following algorithms:
4
+ - Co-Training
5
+ - Tri-Training
6
+ - Democratic Co-Learning
7
+
8
+
9
+ Release Notes
10
+ =============
11
+
12
+ See the commit logs at https://github.com/dpr1005/Semisupervised-learning-and-instance-selection-methods.
Original file line number Diff line number Diff line change 3
3
# @Filename: __init__.py.py
4
4
# @Author: Daniel Puente Ramírez
5
5
# @Time: 16/11/21 17:14
6
+
7
+
8
+ """
9
+ Instance Selection.
10
+
11
+ The package contains some of the most widely used instance selection algorithms
12
+ in the literature.
13
+ """
14
+
15
+ __version__ = "0.1.3"
16
+ __author__ = 'Daniel Puente Ramírez'
Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [
3
+ " setuptools>=42" ,
4
+ " wheel"
5
+ ]
6
+ build-backend = " setuptools.build_meta"
Original file line number Diff line number Diff line change 3
3
# @Filename: __init__.py.py
4
4
# @Author: Daniel Puente Ramírez
5
5
# @Time: 22/12/21 11:27
6
+
7
+
8
+ """
9
+ Semi-Supervised.
10
+
11
+ The package contains some of the most widely used semi-supervised algorithms in
12
+ the literature.
13
+ """
14
+
15
+ __version__ = "0.1.3"
16
+ __author__ = 'Daniel Puente Ramírez'
You can’t perform that action at this time.
0 commit comments