Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Temporal Score functions #72

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
b75a406
Added Character perturbations along with a test
harsh4799 May 12, 2020
1e589a2
Merge branch 'master' of https://github.com/blackrosedragon2/deceptic…
harsh4799 May 12, 2020
c116e2e
Testing and python3 black
harsh4799 May 12, 2020
d65e27b
Update perturbations.py
harsh4799 May 12, 2020
d596ec1
Changed the name of the class from SpaceCharacterPerturbations to Ins…
May 12, 2020
2edbede
Black Formatting
May 12, 2020
4025c24
Merge branch 'master' of https://github.com/SforAiDl/decepticonlp
May 14, 2020
55651b4
modifed ts
harsh4799 May 15, 2020
5196834
Merge branch 'master' of https://github.com/SforAiDl/decepticonlp
May 15, 2020
a20fee1
completed fns
May 16, 2020
e074820
Merge branch 'master' of https://github.com/SforAiDl/decepticonlp
May 19, 2020
53cc3fc
updated temporal score
May 19, 2020
d89dace
added files to right directory
harsh4799 May 20, 2020
05861c1
added torch to requirements
May 20, 2020
e5e08ad
added word level temporal score
May 20, 2020
6174468
Merge branch 'master' of https://github.com/SforAiDl/decepticonlp
May 21, 2020
fbcd5f5
added temporal score
May 21, 2020
400229c
Update test_temporal_score.py
harsh4799 May 22, 2020
96eba69
removed faulty testcase
May 23, 2020
ad89afb
removed faulty test and formatted
May 23, 2020
abe26c3
Merge branch 'master' of https://github.com/blackrosedragon2/deceptic…
May 23, 2020
a1b7961
removed faulty test and formatted
May 23, 2020
6139fe3
removed faulty test and formatted
May 23, 2020
0f53026
added name to authors
May 23, 2020
f1f9c40
Added docstrings
May 25, 2020
2a00a8e
User defined Models
May 27, 2020
8cb7762
removed the unexpected failing test case
May 27, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ Contributors
* Rohit Patil <[email protected]>
* Parantak Singh <[email protected]>
* Abheesht Sharma <[email protected]>
* Harshit Pandey <[email protected]>

2 changes: 1 addition & 1 deletion decepticonlp/metrics/char_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class CharacterMetrics(metaclass=abc.ABCMeta):
An abstract class used to represent the character metrics. Subclasses implement the calculate method.
Methods
-------
apply(self, text1: str, text2: str, **kwargs)
calculate(self, text1: str, text2: str, **kwargs)
- calculates the similarity/distance between two strings using the appropriate metric.
"""

Expand Down
Loading