joesingo / truthdiscovery

Python3 library implementing a selection of truth-discovery algorithms
GNU General Public License v3.0
7 stars 5 forks source link

Stop storing algorithm parameters as class-wide properties #30

Open joesingo opened 5 years ago

joesingo commented 5 years ago

This is a problem:

>>> from truthdiscovery import *
>>> i = Investment(g=2)
>>> j = Investment()
>>> j.g
1.2
>>>