Spaces:
Running
Running
DrishtiSharma
commited on
Update to-do.md
Browse files
to-do.md
CHANGED
@@ -1,3 +1,40 @@
|
|
1 |
1. patent acceptance prediction
|
2 |
2. predict the primary IPC or CPC code of a patent application given (some subset of) the text of the application.
|
3 |
-
3. abstractive summarization: given the claims or claims section of a patent application, generate the abstract.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
1. patent acceptance prediction
|
2 |
2. predict the primary IPC or CPC code of a patent application given (some subset of) the text of the application.
|
3 |
+
3. abstractive summarization: given the claims or claims section of a patent application, generate the abstract.
|
4 |
+
|
5 |
+
{
|
6 |
+
"application_number": "...",
|
7 |
+
"publication_number": "...",
|
8 |
+
"title": "...",
|
9 |
+
"decision": "...",
|
10 |
+
"date_produced": "...",
|
11 |
+
"date_published": "...",
|
12 |
+
"main_cpc_label": "...",
|
13 |
+
"cpc_labels": ["...", "...", "..."],
|
14 |
+
"main_ipcr_label": "...",
|
15 |
+
"ipcr_labels": ["...", "...", "..."],
|
16 |
+
"patent_number": "...",
|
17 |
+
"filing_date": "...",
|
18 |
+
"patent_issue_date": "...",
|
19 |
+
"abandon_date": "...",
|
20 |
+
"uspc_class": "...",
|
21 |
+
"uspc_subclass": "...",
|
22 |
+
"examiner_id": "...",
|
23 |
+
"examiner_name_last": "...",
|
24 |
+
"examiner_name_first": "...",
|
25 |
+
"examiner_name_middle": "...",
|
26 |
+
"inventor_list": [
|
27 |
+
{
|
28 |
+
"inventor_name_last": "...",
|
29 |
+
"inventor_name_first": "...",
|
30 |
+
"inventor_city": "...",
|
31 |
+
"inventor_state": "...",
|
32 |
+
"inventor_country": "..."
|
33 |
+
}
|
34 |
+
],
|
35 |
+
"abstract": "...",
|
36 |
+
"claims": "...",
|
37 |
+
"background": "...",
|
38 |
+
"summary": "...",
|
39 |
+
"full_description": "..."
|
40 |
+
}
|