You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
536 B
18 lines
536 B
class Citation(object):
|
|
""" Class representing a citation object """
|
|
|
|
def __init__(self,
|
|
text,
|
|
citing_paper_id,
|
|
cited_paper_id,
|
|
section_title=None,
|
|
intent=None,
|
|
citation_id=None
|
|
):
|
|
self.text = text
|
|
self.citing_paper_id = citing_paper_id
|
|
self.cited_paper_id = cited_paper_id
|
|
self.section_title = section_title
|
|
self.intent = intent
|
|
self.citation_id = citation_id
|