候補除去アルゴリズムを手作業で行う方法を理解しようとしています。答えはわかっていますが、そこにたどり着くまでの手順がわかりません。誰でも私を案内したり、正しい方向に向けたりできますか? これが私が取り組んでいる質問です:
Consider a concept description language with three attributes predened as follows:
attribute1 attribute2 attribute3
---------- ------------ ------------
| | | | | | |
a b c d e f g
Demonstrate version space learning using the following positive and negative training examples:
1. ( a c f ) +)
2. ( b c f ) +)
3. ( a e g ) -)
4. ( a c g ) -)
5. ( b d f ) -)
Show how the candidate elimination algorithm changes the boundary sets after
processing each example.
これは私がこれまでに持っているものです:
1. ( a c f ) +) Generalize..
G:(???)
S:(acf)
2. ( b c f ) +) Generalize...
G:(a??), (?e?), (?d?), (??g) - Not even sure if this is correct
S:(?cf)
誰かが私を案内したり、アドバイスをくれたりできますか? ありがとう