From 0b34b1a0cfa798bf6b20473a3f8852684ddd000f Mon Sep 17 00:00:00 2001
From: gurdeep330
Date: Tue, 5 Mar 2024 16:48:19 +0100
Subject: [PATCH] update
---
.github/workflows/mkdocs-deploy.yml | 15 +-
app/code/literatureFetch.py | 65 +-
app/code/utils.py | 62 +-
app/data/query2.tsv | 2 +
custom_theme/404.html | 1 -
docs/All.md | 316 ++++++--
docs/Koopman_Theory.md | 316 ++++++--
docs/Latent_Space_Simulator.md | 316 ++++++--
docs/Neural_ODEs.md | 964 +++++++++++++++++++++++--
docs/PINNs.md | 322 +++++++--
docs/Physics-informed_GNNs.md | 964 +++++++++++++++++++++++--
docs/Symbolic_regression.md | 324 +++++++--
docs/assets/All.png | Bin 48566 -> 48741 bytes
docs/assets/Koopman_Theory.png | Bin 46901 -> 46866 bytes
docs/assets/Latent_Space_Simulator.png | Bin 54190 -> 54303 bytes
docs/assets/Neural_ODEs.png | Bin 42866 -> 43222 bytes
docs/assets/Physics-informed_GNNs.png | Bin 48853 -> 48816 bytes
docs/assets/Symbolic_regression.png | Bin 48112 -> 48064 bytes
mkdocs.yml | 25 +-
overrides/main.html | 12 +-
templates/category.txt | 89 ++-
21 files changed, 3258 insertions(+), 535 deletions(-)
create mode 100644 app/data/query2.tsv
delete mode 100644 custom_theme/404.html
diff --git a/.github/workflows/mkdocs-deploy.yml b/.github/workflows/mkdocs-deploy.yml
index 70bb5310..ebb39aa4 100644
--- a/.github/workflows/mkdocs-deploy.yml
+++ b/.github/workflows/mkdocs-deploy.yml
@@ -35,4 +35,17 @@ jobs:
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- - run: mkdocs gh-deploy --force
\ No newline at end of file
+ - run: mkdocs gh-deploy --force
+ # commit
+ - name: Commit files
+ run: |
+ git config --local user.email "action@github.com"
+ git config --local user.name "GitHub Action"
+ git add -A
+ git commit -m "update data" -a
+ # push
+ - name: Push changes
+ uses: ad-m/github-push-action@v0.6.0
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ branch: main
\ No newline at end of file
diff --git a/app/code/literatureFetch.py b/app/code/literatureFetch.py
index ae5aadaa..03205dc7 100755
--- a/app/code/literatureFetch.py
+++ b/app/code/literatureFetch.py
@@ -19,13 +19,11 @@
# 'limit': 5,
'publicationTypes': 'JournalArticle',
# 'year': '2020-',
- 'fields': 'paperId,url,journal,\
- title,publicationTypes,publicationDate,\
- citationCount,publicationVenue',
+ 'fields': 'paperId,url,journal,title,publicationTypes,publicationDate,citationCount,publicationVenue',
# 'sort': 'citationCount:desc',
'token': None
}
-N = 10
+N = 50
DIC = {}
def fetch_articles(search_query,
@@ -48,7 +46,6 @@ def fetch_articles(search_query,
while True:
# Make the GET request to the paper search endpoint with the URL and query parameters
search_response = requests.get(URL, params=query_params, timeout=None)
- print ('status code', search_response.status_code)
# WHen the status code is 429, sleep for 5 minutes
# if search_response.status_code == 429:
# status_code_429 += 1
@@ -58,8 +55,13 @@ def fetch_articles(search_query,
# time.sleep(310)
# continue
# When the status code is 200, break the loop
- if search_response.status_code == 200:
+ if search_response.status_code != 200:
+ print ('status code', search_response.status_code)
+ print ('Sleeping for 3 seconds....')
+ time.sleep(3)
+ else:
break
+
search_response_json = search_response.json()
fetched_data += search_response_json['data']
# End the loop if we have fetched enough data
@@ -70,9 +72,25 @@ def fetch_articles(search_query,
# if the token is not None
if search_response_json['token'] is not None:
query_params['token'] = search_response_json['token']
+
+ # fix the publicationVenue and journal
+ for paper in fetched_data:
+ # print (paper)
+ publication_venue = paper['publicationVenue']
+ if publication_venue is None:
+ paper['publicationVenue'] = 'NA'
+ elif 'name' in publication_venue:
+ paper['publicationVenue'] = publication_venue['name']
+ else:
+ paper['publicationVenue'] = ''
+ journal = paper['journal']
+ if journal is None:
+ paper['journal'] = 'NA'
+ elif 'name' in journal:
+ paper['journal'] = journal['name']
return fetched_data
-def create_template(template_file, category_name) -> str:
+def create_template(template_file, category_name, df) -> str:
"""
Return the markdown content for a given template
@@ -94,7 +112,9 @@ def create_template(template_file, category_name) -> str:
category_name=category_name,
title=DIC[category_name]['title'],
query=DIC[category_name]['query'],
- hide_nav="---\nhide:\n\t- navigation---\n",
+ x_year=df['Year'].tolist(),
+ y_num_articles=df['num_articles'].tolist(),
+ y_num_citations=df['num_citations'].tolist()
)
# return markdownify.markdownify(content)
return content
@@ -109,6 +129,7 @@ def main():
Returns:
None
"""
+
# Work with all the categories in the file
with open('../data/query.tsv', 'r', encoding='utf-8') as f:
for line in f:
@@ -122,14 +143,15 @@ def main():
## Fetch the most cited articles
data = fetch_articles(query)
DIC[category_name] = {'title': title, 'query': query, 'most_cited_articles': data}
- plot = utils.metrics_over_time(data, category_name, title)
- plot.savefig(f'../../docs/assets/{category_name}.png')
+ # plot = utils.metrics_over_time_js(data, category_name, title)
+ # plot.savefig(f'../../docs/assets/{category_name}.png')
+ df = utils.metrics_over_time_js(data, category_name, title)
################################
## Fetch the most recent articles
data = fetch_articles(query, sort = 'publicationDate:desc')
DIC[category_name]['most_recent_articles'] = data
# print (data[0])
- markdown_text = create_template("category.txt", category_name)
+ markdown_text = create_template("category.txt", category_name, df)
# DIC[category_name]['most_cited_articles'][0:N],
# DIC[category_name]['most_recent_articles'][0:N])
# Add the hide navigation
@@ -147,14 +169,15 @@ def main():
## Fetch the most cited articles
data = fetch_articles(query)
DIC[category_name] = {'title': title, 'query': query, 'most_cited_articles': data}
- plot = utils.metrics_over_time(data, category_name, title)
- plot.savefig(f'../../docs/assets/{category_name}.png')
+ # plot = utils.metrics_over_time_js(data, category_name, title)
+ # plot.savefig(f'../../docs/assets/{category_name}.png')
+ df = utils.metrics_over_time_js(data, category_name, title)
################################
## Fetch the most recent articles
data = fetch_articles(query, sort = 'publicationDate:desc')
DIC[category_name]['most_recent_articles'] = data
# print (data[0])
- markdown_text = create_template("category.txt", category_name)
+ markdown_text = create_template("category.txt", category_name, df)
# DIC[category_name]['most_cited_articles'][0:N],
# DIC[category_name]['most_recent_articles'][0:N])
# Add the hide navigation
@@ -163,6 +186,20 @@ def main():
with open(f'../../docs/{category_name}.md', 'w', encoding='utf-8') as file:
file.write(markdown_text)
################################
+
+ # Read YAML file
+ file_path = '../../base.yml'
+ data = utils.read_yaml(file_path)
+ print (data['nav'])
+
+ # Add more stuff to the YAML data
+ data['nav'] = []
+ for category_name, category_items in DIC.items():
+ data['nav'].append({category_items['title']: category_name + '.md'})
+
+ print (data['nav'])
+ # Write modified YAML data back to file
+ # write_yaml(data, file_path)
if __name__ == '__main__':
# Run the main function
diff --git a/app/code/utils.py b/app/code/utils.py
index 85c56805..0b03e44f 100755
--- a/app/code/utils.py
+++ b/app/code/utils.py
@@ -6,6 +6,7 @@
import matplotlib.pyplot as plt
import pandas as pd
+import yaml
def metrics_over_time(data, category_name, title) -> plt:
"""
@@ -75,4 +76,63 @@ def metrics_over_time(data, category_name, title) -> plt:
return plt
- #A26, B1
\ No newline at end of file
+ #A26, B1
+
+def metrics_over_time_js(data, category_name, title) -> plt:
+ """
+ Return the metrics over time
+
+ Args:
+ data (list): list of dictionaries
+ category_name (str): category name
+ title (str): title of the graph
+
+ Returns:
+ None
+
+ Example:
+ data = [
+ {
+ 'title': 'title1',
+ 'publicationDate': '2020-01-01',
+ 'citationCount': 10
+ },
+ {
+ 'title': 'title2',
+ 'publicationDate': '2020-01-01',
+ 'citationCount': 10
+ }
+ ]
+ """
+ dic = {}
+ for paper in data:
+ publication_date = paper['publicationDate']
+ if publication_date is None or publication_date == '':
+ continue
+ year = publication_date.split('-')[0]
+ if year not in dic:
+ dic[year] = {'num_articles': 0, 'num_citations': 0}
+ dic[year]['num_articles'] += 1
+ citation_count = paper['citationCount']
+ if citation_count is None or citation_count == '':
+ continue
+ dic[year]['num_citations'] += citation_count
+ # Using noc and yop, plot the line graph with years on x-axis and number of citations on y-axis
+ df = pd.DataFrame(dic).T
+ # Make another colum for the year
+ df['Year'] = df.index
+ # Sort by year
+ df = df.sort_values(by='Year', ascending=True)
+ # print (df)
+ return df
+
+# Function to read YAML file
+def read_yaml(file_path):
+ with open(file_path, 'r') as file:
+ data = yaml.safe_load(file)
+ return data
+
+# Function to write YAML file
+def write_yaml(data, file_path):
+ with open(file_path, 'w') as file:
+ yaml.dump(data, file, default_flow_style=False)
diff --git a/app/data/query2.tsv b/app/data/query2.tsv
new file mode 100644
index 00000000..f6a020b8
--- /dev/null
+++ b/app/data/query2.tsv
@@ -0,0 +1,2 @@
+Title Query
+Neural ODEs Neural ODEs
diff --git a/custom_theme/404.html b/custom_theme/404.html
deleted file mode 100644
index 3b2634d5..00000000
--- a/custom_theme/404.html
+++ /dev/null
@@ -1 +0,0 @@
-Hello
\ No newline at end of file
diff --git a/docs/All.md b/docs/All.md
index 361c1f66..614bf494 100644
--- a/docs/All.md
+++ b/docs/All.md
@@ -2,72 +2,250 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(neural ordinary differential equation) | (neural ODE) | (graph neural differential equation) | (graph neural diffusion) | (graph neural ODEs) | (graph networks) | (physics constrain) | (learned simulator) | (learned simulation) | ((symbolic regression) + dynamics) | (physics-informed neural computing) | (VAMP) | (latent space simul\*) | (decomposition of koopman operator) | (time-lagged autoencoder) | (koopman\*) | (transformations in hilbert space) | (linear transformation of PDEs) | (regularization of physics-informed machine learning)*
-
-
-
-
-### 2. All articles and citations over time
-
-
-![All](assets/All.png)
-
-
-
-
-### 3. Most cited articles on All
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Gradient-based learning applied to document recognition](https://www.semanticscholar.org/paper/162d958ff885f1462aeda91cd72582323fd6a1f4) | None | 46003 | {'name': 'Proc. IEEE', 'pages': '2278-2324', 'volume': '86'} | {'id': '6faaccca-1cc4-45a9-aeb6-96a4901d2606', 'name': 'Proceedings of the IEEE', 'type': 'journal', 'alternate\_names': ['Proc IEEE'], 'issn': '0018-9219', 'alternate\_issns': ['1558-2256'], 'url': 'http://www.ieee.org/portal/pages/pubs/proceedings/', 'alternate\_urls': ['http://www.ieee.org/products/onlinepubs/pub/about\_conference.html', 'https://ieeexplore.ieee.org/servlet/opac?punumber=5', 'http://proceedingsoftheieee.ieee.org/']} |
-| [Collective dynamics of ‘small-world’ networks](https://www.semanticscholar.org/paper/d61031326150ba23f90e6587c13d99188209250e) | 1998-06-04 | 38484 | {'name': 'Nature', 'pages': '440-442', 'volume': '393'} | {'id': '6c24a0a0-b07d-4d7b-a19b-fd09a3ed453a', 'name': 'Nature', 'type': 'journal', 'issn': '0028-0836', 'url': 'https://www.nature.com/', 'alternate\_urls': ['http://www.nature.com/nature/', 'https://www.nature.com/nature/', 'http://www.nature.com/nature/archive/index.html']} |
-| [Semi-Supervised Classification with Graph Convolutional Networks](https://www.semanticscholar.org/paper/36eff562f65125511b5dfab68ce7f7a943c27478) | 2016-09-09 | 22114 | {'name': 'ArXiv', 'volume': 'abs/1609.02907'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Statistical mechanics of complex networks](https://www.semanticscholar.org/paper/dce8146987557735a19771aefa1f027211a2c275) | 2001-06-06 | 18824 | {'name': 'ArXiv', 'volume': 'cond-mat/0106096'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [The Structure and Function of Complex Networks](https://www.semanticscholar.org/paper/e6c4925fb114d13a8568f88957c167c928f0c9f1) | 2003-03-25 | 16785 | {'name': 'SIAM Rev.', 'pages': '167-256', 'volume': '45'} | {'id': '8f59dd66-e4cd-4341-8ea9-9a03d965a009', 'name': 'SIAM Review', 'type': 'journal', 'alternate\_names': ['SIAM Rev', 'Siam Rev', 'Siam Review'], 'issn': '0036-1445', 'url': 'https://www.jstor.org/journal/siamreview', 'alternate\_urls': ['http://www.jstor.org/journals/00361445.html', 'https://epubs.siam.org/journal/siread', 'http://www.siam.org/journals/sirev.php']} |
-| [TensorFlow: A system for large-scale machine learning](https://www.semanticscholar.org/paper/4954fa180728932959997a4768411ff9136aac81) | 2016-05-27 | 16703 | {'pages': '265-283'} | {'id': '86c43745-31d9-4c1a-b33f-ce3aa0042dbb', 'name': 'USENIX Symposium on Operating Systems Design and Implementation', 'type': 'conference', 'alternate\_names': ['Oper Syst Des Implement', 'Operating Systems Design and Implementation', 'OSDI', 'USENIX Symp Oper Syst Des Implement']} |
-| [Community structure in social and biological networks](https://www.semanticscholar.org/paper/2a005868b79511cf8c924cd5990e2497527a0527) | 2001-12-07 | 14280 | {'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'pages': '7821 - 7826', 'volume': '99'} | {'id': 'bb95bf2e-8383-4748-bf9d-d6906d091085', 'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'type': 'journal', 'alternate\_names': ['PNAS', 'PNAS online', 'Proceedings of the National Academy of Sciences of the United States of America.', 'Proc National Acad Sci', 'Proceedings of the National Academy of Sciences', 'Proc National Acad Sci u s Am'], 'issn': '0027-8424', 'alternate\_issns': ['1091-6490'], 'url': 'https://www.jstor.org/journal/procnatiacadscie', 'alternate\_urls': ['http://www.pnas.org/', 'https://www.pnas.org/', 'http://www.jstor.org/journals/00278424.html', 'www.pnas.org/']} |
-| [Graph Attention Networks](https://www.semanticscholar.org/paper/33998aff64ce51df8dee45989cdca4b6b1329ec4) | 2017-10-30 | 13972 | {'name': 'ArXiv', 'volume': 'abs/1710.10903'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [PRISMA Extension for Scoping Reviews (PRISMA-ScR): Checklist and Explanation](https://www.semanticscholar.org/paper/450106c6c960424b365249f2a301ce0abe24e346) | 2018-10-02 | 12792 | {'name': 'Annals of Internal Medicine', 'pages': '467-473', 'volume': '169'} | {'id': '643b0c17-99ac-463b-81c4-df44ad66e34d', 'name': 'Annals of Internal Medicine', 'type': 'journal', 'alternate\_names': ['Ann Intern Med'], 'issn': '0003-4819', 'url': 'http://www.acponline.org/journals/annals/annaltoc.htm', 'alternate\_urls': ['http://www.annals.org/']} |
-| [Consensus problems in networks of agents with switching topology and time-delays](https://www.semanticscholar.org/paper/9839ed2281ba4b589bf88c7e4acc48c9fa6fb933) | 2004-09-13 | 11249 | {'name': 'IEEE Transactions on Automatic Control', 'pages': '1520-1533', 'volume': '49'} | {'id': '1283a59c-0d1f-48c3-81d7-02172f597e70', 'name': 'IEEE Transactions on Automatic Control', 'type': 'journal', 'alternate\_names': ['IEEE Trans Autom Control'], 'issn': '0018-9286', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=9'} |
-
-
-
-
-
-
-### 4. Latest articles on All
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Hierarchical spatio-temporal graph convolutional neural networks for traffic data imputation](https://www.semanticscholar.org/paper/04744b6893487a608e3726fb4542e2a7f9e81a5b) | 2024-06-01 | 0 | {'name': 'Information Fusion'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [Reagent dosage inference based on graph convolutional memory perception network for zinc roughing flotation](https://www.semanticscholar.org/paper/ba23319a62da63ec3b664f6452bb7a9aee8a46dc) | 2024-05-01 | 0 | {'name': 'Control Engineering Practice'} | {'id': 'af74e393-8f45-41cd-915b-734494cb48f2', 'name': 'Control Engineering Practice', 'type': 'journal', 'alternate\_names': ['Control Eng Pract'], 'issn': '0967-0661', 'url': 'http://www.elsevier.com/wps/find/journaldescription.cws\_home/123/description#description', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/09670661']} |
-| [MACNS: A generic graph neural network integrated deep reinforcement learning based multi-agent collaborative navigation system for dynamic trajectory planning](https://www.semanticscholar.org/paper/a1a503c7c23502bebe94eb042b0ce9f8bdbb6504) | 2024-05-01 | 0 | {'name': 'Inf. Fusion', 'pages': '102250', 'volume': '105'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [DawnGNN: Documentation augmented windows malware detection using graph neural network](https://www.semanticscholar.org/paper/45cb2614652147789e18f1bc15d665977d2d1ee9) | 2024-05-01 | 0 | {'name': 'Computers & Security'} | None |
-| [Multi-level Graph Memory Network Cluster Convolutional Recurrent Network for traffic forecasting](https://www.semanticscholar.org/paper/357677ec8b2223f049c45c7330633a5b85c2bc95) | 2024-05-01 | 0 | {'name': 'Inf. Fusion', 'pages': '102214', 'volume': '105'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [FairCare: Adversarial training of a heterogeneous graph neural network with attention mechanism to learn fair representations of electronic health records](https://www.semanticscholar.org/paper/3383c82d39b88e5349d345e32e879806bd72d435) | 2024-05-01 | 0 | {'name': 'Information Processing & Management'} | None |
-| [Multi-criteria group decision making based on graph neural networks in Pythagorean fuzzy environment](https://www.semanticscholar.org/paper/13a50769f110029fcb3390956789aec236071c53) | 2024-05-01 | 1 | {'name': 'Expert Systems with Applications'} | {'id': '987139ae-a65d-49bb-aaf6-fb764dc40b19', 'name': 'Expert systems with applications', 'type': 'journal', 'alternate\_names': ['Expert syst appl', 'Expert Systems With Applications', 'Expert Syst Appl'], 'issn': '0957-4174', 'url': 'https://www.journals.elsevier.com/expert-systems-with-applications/', 'alternate\_urls': ['https://www.sciencedirect.com/journal/expert-systems-with-applications', 'http://www.sciencedirect.com/science/journal/09574174']} |
-| [POI recommendation for random groups based on cooperative graph neural networks](https://www.semanticscholar.org/paper/0cfd9a1774cf41ff07e957bbc25d14596d529c4f) | 2024-05-01 | 0 | {'name': 'Information Processing & Management'} | None |
-| [Attention based multi-task interpretable graph convolutional network for Alzheimer’s disease analysis](https://www.semanticscholar.org/paper/fc5ee86473fd698e3f4405b51bdfe0575304a30d) | 2024-04-01 | 0 | {'name': 'Pattern Recognition Letters'} | {'id': 'f35e3e87-9df4-497b-aa0d-bb8584197290', 'name': 'Pattern Recognition Letters', 'type': 'journal', 'alternate\_names': ['Pattern Recognit Lett'], 'issn': '0167-8655', 'url': 'https://www.journals.elsevier.com/pattern-recognition-letters/', 'alternate\_urls': ['http://www.journals.elsevier.com/pattern-recognition-letters/', 'http://www.sciencedirect.com/science/journal/01678655']} |
-| [A coarse-to-fine adaptive spatial–temporal graph convolution network with residuals for motor imagery decoding from the same limb](https://www.semanticscholar.org/paper/f56be81f12e0c0bdf632d5feeaf028dfb791223a) | 2024-04-01 | 0 | {'name': 'Biomedical Signal Processing and Control'} | {'id': '1bac31b4-014a-4981-ae41-af2a40acc162', 'name': 'Biomedical Signal Processing and Control', 'type': 'journal', 'alternate\_names': ['Biomed Signal Process Control'], 'issn': '1746-8094', 'url': 'https://www.journals.elsevier.com/biomedical-signal-processing-and-control', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/17468094']} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
1. Search query
+ (neural ordinary differential equation) | (neural ODE) | (graph neural differential equation) | (graph neural diffusion) | (graph neural ODEs) | (graph networks) | (physics constrain) | (learned simulator) | (learned simulation) | ((symbolic regression) + dynamics) | (physics-informed neural computing) | (VAMP) | (latent space simul*) | (decomposition of koopman operator) | (time-lagged autoencoder) | (koopman*) | (transformations in hilbert space) | (linear transformation of PDEs) | (regularization of physics-informed machine learning)
+
+
+
+
2. All articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on All
+
+
+
+
+
4. Latest articles on All
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Koopman_Theory.md b/docs/Koopman_Theory.md
index e1d4199d..66f33b50 100644
--- a/docs/Koopman_Theory.md
+++ b/docs/Koopman_Theory.md
@@ -2,72 +2,250 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(koopman\*) | (transformations in hilbert space) | (linear transformation of PDEs) | (regularization of physics-informed machine learning)*
-
-
-
-
-### 2. Koopman Theory articles and citations over time
-
-
-![Koopman Theory](assets/Koopman_Theory.png)
-
-
-
-
-### 3. Most cited articles on Koopman Theory
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Hamiltonian Systems and Transformation in Hilbert Space.](https://www.semanticscholar.org/paper/bf657b5049c1a5c839369d3948ffb4c0584cd1d2) | 1931-05-01 | 1558 | {'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'pages': '\n 315-8\n ', 'volume': '17 5'} | {'id': 'bb95bf2e-8383-4748-bf9d-d6906d091085', 'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'type': 'journal', 'alternate\_names': ['PNAS', 'PNAS online', 'Proceedings of the National Academy of Sciences of the United States of America.', 'Proc National Acad Sci', 'Proceedings of the National Academy of Sciences', 'Proc National Acad Sci u s Am'], 'issn': '0027-8424', 'alternate\_issns': ['1091-6490'], 'url': 'https://www.jstor.org/journal/procnatiacadscie', 'alternate\_urls': ['http://www.pnas.org/', 'https://www.pnas.org/', 'http://www.jstor.org/journals/00278424.html', 'www.pnas.org/']} |
-| [A Data–Driven Approximation of the Koopman Operator: Extending Dynamic Mode Decomposition](https://www.semanticscholar.org/paper/10cab2f43c29fe12e5a0d0718eb6e1ff8c9d4777) | 2014-08-19 | 1323 | {'name': 'Journal of Nonlinear Science', 'pages': '1307 - 1346', 'volume': '25'} | {'id': '619f4cc3-1d00-4060-b88d-9854843ac2c2', 'name': 'Journal of nonlinear science', 'type': 'journal', 'alternate\_names': ['J Nonlinear Sci', 'Journal of Nonlinear Science', 'J nonlinear sci'], 'issn': '0938-8974', 'url': 'https://link.springer.com/journal/332'} |
-| [Deep learning for universal linear embeddings of nonlinear dynamics](https://www.semanticscholar.org/paper/6adeda1af8abc6bc3c17c0b39f635a845476cd9f) | 2017-12-27 | 899 | {'name': 'Nature Communications', 'volume': '9'} | {'id': '43b3f0f9-489a-4566-8164-02fafde3cd98', 'name': 'Nature Communications', 'type': 'journal', 'alternate\_names': ['Nat Commun'], 'issn': '2041-1723', 'url': 'https://www.nature.com/ncomms/', 'alternate\_urls': ['http://www.nature.com/ncomms/about/index.html', 'http://www.nature.com/ncomms/index.html']} |
-| [Entanglement renormalization.](https://www.semanticscholar.org/paper/7e54d86fb36907b99ef0580bfaea9b43c5942ae7) | 2005-12-08 | 784 | {'name': 'Physical review letters', 'pages': '\n 220405\n ', 'volume': '99 22'} | {'id': '16c9f9d4-bee1-435d-8c85-22a3deba109d', 'name': 'Physical Review Letters', 'type': 'journal', 'alternate\_names': ['Phys Rev Lett'], 'issn': '0031-9007', 'url': 'https://journals.aps.org/prl/', 'alternate\_urls': ['http://journals.aps.org/prl/', 'http://prl.aps.org/']} |
-| [Applied Koopmanism.](https://www.semanticscholar.org/paper/2c9be1e38f978f43427ea5293b3138e0c4fede71) | 2012-06-14 | 694 | {'name': 'Chaos', 'pages': '\n 047510\n ', 'volume': '22 4'} | {'id': '30c0ded7-c8b4-473c-bbc0-f237234ac1a6', 'name': 'Chaos', 'type': 'journal', 'issn': '1054-1500', 'url': 'http://chaos.aip.org/', 'alternate\_urls': ['https://aip.scitation.org/journal/cha']} |
-| [CT Imaging of the 2019 Novel Coronavirus (2019-nCoV) Pneumonia](https://www.semanticscholar.org/paper/b90161898ff5ef4236f1c19a5c88138e1c80c5ea) | 2020-01-31 | 658 | {'name': 'Radiology'} | {'id': '357207a3-a4af-4091-822c-75ef52d02fb5', 'name': 'Radiology', 'type': 'journal', 'issn': '0033-8419', 'url': 'http://radiology.rsna.org/', 'alternate\_urls': ['http://radiology.rsnajnls.org/']} |
-| [Variants of Dynamic Mode Decomposition: Boundary Condition, Koopman, and Fourier Analyses](https://www.semanticscholar.org/paper/82e19123c7fdf1c047531eec5bce6f925dcc5ad5) | 2012-04-27 | 642 | {'name': 'Journal of Nonlinear Science', 'pages': '887-915', 'volume': '22'} | {'id': '619f4cc3-1d00-4060-b88d-9854843ac2c2', 'name': 'Journal of nonlinear science', 'type': 'journal', 'alternate\_names': ['J Nonlinear Sci', 'Journal of Nonlinear Science', 'J nonlinear sci'], 'issn': '0938-8974', 'url': 'https://link.springer.com/journal/332'} |
-| [Linear predictors for nonlinear dynamical systems: Koopman operator meets model predictive control](https://www.semanticscholar.org/paper/dbb73c3f14600e3a746c643c2e8bece117de6be4) | 2016-11-10 | 635 | {'name': 'Autom.', 'pages': '149-160', 'volume': '93'} | None |
-| [Algorithms for the Split Variational Inequality Problem](https://www.semanticscholar.org/paper/ff73ad9e51f79cc364545e7933f22cc2a74f28fc) | 2010-09-20 | 594 | {'name': 'Numerical Algorithms', 'pages': '301 - 323', 'volume': '59'} | {'id': '3920fb0a-e610-4b5d-8760-f43cfa321466', 'name': 'Numerical Algorithms', 'type': 'journal', 'alternate\_names': ['Numer Algorithm'], 'issn': '1017-1398', 'url': 'https://www.springer.com/computer/theoretical+computer+science/journal/11075?changeHeader', 'alternate\_urls': ['https://link.springer.com/journal/11075']} |
-| [Quantum singular value transformation and beyond: exponential improvements for quantum matrix arithmetics](https://www.semanticscholar.org/paper/fa00b2c3d2fe8326470c47a3e5f5d1e716e58cb3) | 2018-06-05 | 472 | {'name': 'Proceedings of the 51st Annual ACM SIGACT Symposium on Theory of Computing'} | {'id': '8113a511-e0d9-4231-a1bc-0bf5d0212a4e', 'name': 'Symposium on the Theory of Computing', 'type': 'conference', 'alternate\_names': ['Symp Theory Comput', 'STOC'], 'url': 'http://acm-stoc.org/'} |
-
-
-
-
-
-
-### 4. Latest articles on Koopman Theory
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [A Data-Driven Koopman Approach for Power System Nonlinear Dynamic Observability Analysis](https://www.semanticscholar.org/paper/cf4e03fdbc78190194b74a5e1ad20465c5dd6463) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Power Systems', 'pages': '4090-4104', 'volume': '39'} | {'id': 'dbbda9ef-0504-4875-b893-5c964f6b8f0e', 'name': 'IEEE Transactions on Power Systems', 'type': 'journal', 'alternate\_names': ['IEEE Trans Power Syst'], 'issn': '0885-8950', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=59'} |
-| [A Monte Carlo Approach to Koopman Direct Encoding and Its Application to the Learning of Neural-Network Observables](https://www.semanticscholar.org/paper/cabacb5b65447bbb8ef5f0f82c37cd1a66cf2282) | 2024-03-01 | 0 | {'name': 'IEEE Robotics and Automation Letters', 'pages': '2264-2271', 'volume': '9'} | {'id': '93c335b7-edf4-45f5-8ddc-7c5835154945', 'name': 'IEEE Robotics and Automation Letters', 'alternate\_names': ['IEEE Robot Autom Lett'], 'issn': '2377-3766', 'url': 'https://www.ieee.org/membership-catalog/productdetail/showProductDetailPage.html?product=PER481-ELE', 'alternate\_urls': ['http://ieeexplore.ieee.org/servlet/opac?punumber=7083369']} |
-| [Improving potential energy surfaces using measured Feshbach resonance states](https://www.semanticscholar.org/paper/b5f96d19a20f448255c0e361b01caf9aeff87938) | 2024-03-01 | 0 | {'name': 'Science Advances', 'volume': '10'} | {'id': 'cb30f0c9-2980-4b7d-bbcb-68fc5472b97c', 'name': 'Science Advances', 'type': 'journal', 'alternate\_names': ['Sci Adv'], 'issn': '2375-2548', 'url': 'http://www.scienceadvances.org/', 'alternate\_urls': ['https://advances.sciencemag.org/']} |
-| [Robust Three-Stage Dynamic Mode Decomposition for Analysis of Power System Oscillations](https://www.semanticscholar.org/paper/1a279d90354755f741f45618a5673e220a715fc7) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Power Systems', 'pages': '4000-4009', 'volume': '39'} | {'id': 'dbbda9ef-0504-4875-b893-5c964f6b8f0e', 'name': 'IEEE Transactions on Power Systems', 'type': 'journal', 'alternate\_names': ['IEEE Trans Power Syst'], 'issn': '0885-8950', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=59'} |
-| [Data-Driven Transient Stability Evaluation of Electric Distribution Networks Dominated by EV Supercharging Stations](https://www.semanticscholar.org/paper/15757b898cf9ba88030c73486a039b5b296a118b) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Smart Grid', 'pages': '1939-1950', 'volume': '15'} | {'id': '1c2f3998-b5ca-48ca-9991-94b71c71ecb7', 'name': 'IEEE Transactions on Smart Grid', 'type': 'journal', 'alternate\_names': ['IEEE Trans Smart Grid'], 'issn': '1949-3053', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=5165411'} |
-| [Approximation of discrete and orbital Koopman operators over subsets and manifolds](https://www.semanticscholar.org/paper/1d4ea3a7943c108bee09f107e42ffdf0fd3cfde3) | 2024-02-22 | 0 | {'name': 'Nonlinear Dynamics'} | {'id': '10925c1c-0929-4ec5-8268-a8a52bd84631', 'name': 'Nonlinear dynamics', 'type': 'journal', 'alternate\_names': ['Nonlinear Dyn', 'Nonlinear Dynamics', 'Nonlinear dyn'], 'issn': '0924-090X', 'url': 'http://www.springer.com/11071', 'alternate\_urls': ['https://link.springer.com/journal/11071']} |
-| [Learning Hamiltonian neural Koopman operator and simultaneously sustaining and discovering conservation laws](https://www.semanticscholar.org/paper/8fc588323ba32123f635b9c7f7c1568a3f09ab38) | 2024-02-20 | 0 | {'name': 'Physical Review Research'} | {'id': '349f119f-f4ee-48cf-aedb-89bcb56ab8e3', 'name': 'Physical Review Research', 'type': 'journal', 'alternate\_names': ['Phys Rev Res'], 'issn': '2643-1564', 'url': 'https://journals.aps.org/prresearch'} |
-| [Extraction of nonlinearity in neural networks and model compression with Koopman operator](https://www.semanticscholar.org/paper/f090e77e916fba1a8f28cd4c46a65b0f2c9ae494) | 2024-02-18 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.11740'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Machine Learning based Prediction of Ditching Loads](https://www.semanticscholar.org/paper/cb1cf69a67974f03796db6657e21635ea6832285) | 2024-02-16 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.10724'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Kolmogorov n-Widths for Multitask Physics-Informed Machine Learning (PIML) Methods: Towards Robust Metrics](https://www.semanticscholar.org/paper/4e9fbef5c8daddbad96e50c3e1da8614d7772a75) | 2024-02-16 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.11126'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
1. Search query
+ (koopman*) | (transformations in hilbert space) | (linear transformation of PDEs) | (regularization of physics-informed machine learning)
+
+
+
+
2. Koopman Theory articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on Koopman Theory
+
+
+
+
+
4. Latest articles on Koopman Theory
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Latent_Space_Simulator.md b/docs/Latent_Space_Simulator.md
index 3aa55897..e81d4ece 100644
--- a/docs/Latent_Space_Simulator.md
+++ b/docs/Latent_Space_Simulator.md
@@ -2,72 +2,250 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(VAMP) | (latent space simul\*) | (decomposition of koopman operator) | (time-lagged autoencoder)*
-
-
-
-
-### 2. Latent Space Simulator articles and citations over time
-
-
-![Latent Space Simulator](assets/Latent_Space_Simulator.png)
-
-
-
-
-### 3. Most cited articles on Latent Space Simulator
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Denoising Diffusion Implicit Models](https://www.semanticscholar.org/paper/014576b866078524286802b1d0e18628520aa886) | 2020-10-06 | 2512 | {'name': 'ArXiv', 'volume': 'abs/2010.02502'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [GTM: The Generative Topographic Mapping](https://www.semanticscholar.org/paper/2639515c248f220c73d44688c0097a99b01e1474) | None | 1496 | {'name': 'Neural Computation', 'pages': '215-234', 'volume': '10'} | {'id': '69b9bcdd-8229-4a00-a6e0-00f0e99a2bf3', 'name': 'Neural Computation', 'type': 'journal', 'alternate\_names': ['Neural Comput'], 'issn': '0899-7667', 'url': 'http://cognet.mit.edu/library/journals/journal?issn=08997667', 'alternate\_urls': ['http://ieeexplore.ieee.org/servlet/opac?punumber=6720226', 'http://www.mitpressjournals.org/loi/neco', 'https://www.mitpressjournals.org/loi/neco']} |
-| [A Data–Driven Approximation of the Koopman Operator: Extending Dynamic Mode Decomposition](https://www.semanticscholar.org/paper/10cab2f43c29fe12e5a0d0718eb6e1ff8c9d4777) | 2014-08-19 | 1323 | {'name': 'Journal of Nonlinear Science', 'pages': '1307 - 1346', 'volume': '25'} | {'id': '619f4cc3-1d00-4060-b88d-9854843ac2c2', 'name': 'Journal of nonlinear science', 'type': 'journal', 'alternate\_names': ['J Nonlinear Sci', 'Journal of Nonlinear Science', 'J nonlinear sci'], 'issn': '0938-8974', 'url': 'https://link.springer.com/journal/332'} |
-| [Deep Autoencoding Gaussian Mixture Model for Unsupervised Anomaly Detection](https://www.semanticscholar.org/paper/dbc7401e3e75c40d3c720e7db3c906d48bd742d7) | 2018-02-15 | 1236 | {'name': '', 'volume': ''} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Botulinum neurotoxin A selectively cleaves the synaptic protein SNAP-25](https://www.semanticscholar.org/paper/8af762911107a585f12decd890c4bc5df67dc3fb) | 1993-09-09 | 1165 | {'name': 'Nature', 'pages': '160-163', 'volume': '365'} | {'id': '6c24a0a0-b07d-4d7b-a19b-fd09a3ed453a', 'name': 'Nature', 'type': 'journal', 'issn': '0028-0836', 'url': 'https://www.nature.com/', 'alternate\_urls': ['http://www.nature.com/nature/', 'https://www.nature.com/nature/', 'http://www.nature.com/nature/archive/index.html']} |
-| [Poincaré Embeddings for Learning Hierarchical Representations](https://www.semanticscholar.org/paper/1590bd1bca945fc6ff50b8cdf2da14ea2061c79a) | 2017-05-22 | 1031 | {'name': 'ArXiv', 'volume': 'abs/1705.08039'} | {'id': 'd9720b90-d60b-48bc-9df8-87a30b9a60dd', 'name': 'Neural Information Processing Systems', 'type': 'conference', 'alternate\_names': ['Neural Inf Process Syst', 'NeurIPS', 'NIPS'], 'url': 'http://neurips.cc/'} |
-| [Validation of information recorded on general practitioner based computerised data resource in the United Kingdom.](https://www.semanticscholar.org/paper/66a626038ce5c68c0b28a1d6b74a3a135338a11e) | 1991-03-30 | 877 | {'name': 'British Medical Journal', 'pages': '766 - 768', 'volume': '302'} | {'id': '3048b449-a773-4256-9bb5-5e61fbb61e52', 'name': 'British medical journal', 'type': 'journal', 'alternate\_names': ['BMJ (Clinical Research Edition)', 'British Medical Journal', 'Br Med J', 'BMJ (british Med J', 'The BMJ (British Medical Journal)', 'eBMJ', 'Br med j', 'BMJ (clinical Res Ed', 'Br Med J (clinical Res Ed', 'British Medical Journal (Clinical Research Edition)', 'BMJ'], 'issn': '1759-2151', 'alternate\_issns': ['1756-1833', '0959-8138', '1790-5249', '1106-5028', '1468-5833', '0267-0623', '1222-5835', '1576-9445', '1106-4226'], 'url': 'https://www.bmj.com/', 'alternate\_urls': ['http://www.ibmj.net/', 'https://www.jstor.org/journal/bmjbritmedj', 'http://www.jstor.org/journals/09598138.html', 'http://www.bmj.ro/', 'http://www.bmj.com/bmj/', 'http://www.bmj.com/thebmj', 'http://www.jstor.org/action/showPublication?journalCode=bmjbritmedj', 'http://www.jstor.org/action/showPublication?journalCode=britmedjclires', 'https://www.bmj.com/archive']} |
-| [Cross-domain sentiment classification via spectral feature alignment](https://www.semanticscholar.org/paper/ca781a2fc31a28f653b222ca8afdedc90a009266) | 2010-04-26 | 792 | {'pages': '751-760'} | {'id': 'e07422f9-c065-40c3-a37b-75e98dce79fe', 'name': 'The Web Conference', 'type': 'conference', 'alternate\_names': ['Web Conf', 'WWW'], 'url': 'http://www.iw3c2.org/'} |
-| [Synaptic vesicle membrane fusion complex: action of clostridial neurotoxins on assembly.](https://www.semanticscholar.org/paper/d0baba24df9807ea8fa812f477fc8cd57adfe116) | 1994-11-01 | 783 | {'name': 'The EMBO Journal', 'volume': '13'} | {'id': 'b89f0ede-6fa8-4dd2-a8a7-f54695a00323', 'name': 'EMBO Journal', 'type': 'journal', 'alternate\_names': ['The EMBO Journal', 'EMBO J'], 'issn': '0261-4189', 'url': 'http://embojournal.npgjournals.com/', 'alternate\_urls': ['http://emboj.embopress.org/']} |
-| [VBF: Vector-Based Forwarding Protocol for Underwater Sensor Networks](https://www.semanticscholar.org/paper/631755c88361cdf537bbe1eff8bdf18c52d6c962) | 2006-05-15 | 732 | {'pages': '1216-1221'} | None |
-
-
-
-
-
-
-### 4. Latest articles on Latent Space Simulator
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Topic Modeling on Document Networks With Dirichlet Optimal Transport Barycenter](https://www.semanticscholar.org/paper/f8db237dfcbac885f750f86939ce006268519cca) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Knowledge and Data Engineering', 'pages': '1328-1340', 'volume': '36'} | {'id': 'c6840156-ee10-4d78-8832-7f8909811576', 'name': 'IEEE Transactions on Knowledge and Data Engineering', 'type': 'journal', 'alternate\_names': ['IEEE Trans Knowl Data Eng'], 'issn': '1041-4347', 'url': 'https://www.computer.org/web/tkde', 'alternate\_urls': ['http://ieeexplore.ieee.org/servlet/opac?punumber=69']} |
-| [Multiclass and Multilabel Classifications by Consensus and Complementarity-Based Multiview Latent Space Projection](https://www.semanticscholar.org/paper/bee3c8b32859202472c917dab5a4757afb46a79f) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Systems, Man, and Cybernetics: Systems', 'pages': '1705-1718', 'volume': '54'} | None |
-| [Learning-Based Edge-Device Collaborative DNN Inference in IoVT Networks](https://www.semanticscholar.org/paper/81cabd91414b487f021c110ba9c70311ad6636e9) | 2024-03-01 | 0 | {'name': 'IEEE Internet of Things Journal', 'pages': '7989-8004', 'volume': '11'} | {'id': '228761ec-c40a-479b-8309-9dcbe9851bcd', 'name': 'IEEE Internet of Things Journal', 'type': 'journal', 'alternate\_names': ['IEEE Internet Thing J'], 'issn': '2327-4662', 'url': 'https://www.ieee.org/membership-catalog/productdetail/showProductDetailPage.html?product=PER288-ELE', 'alternate\_urls': ['https://ieeexplore.ieee.org/servlet/opac?punumber=6488907', 'https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6488907', 'http://ieee-iotj.org/#']} |
-| [NeuralFloors: Conditional Street-Level Scene Generation From BEV Semantic Maps via Neural Fields](https://www.semanticscholar.org/paper/28c0ff11f5a18b051f591807d531429636fa8037) | 2024-03-01 | 0 | {'name': 'IEEE Robotics and Automation Letters', 'pages': '2431-2438', 'volume': '9'} | {'id': '93c335b7-edf4-45f5-8ddc-7c5835154945', 'name': 'IEEE Robotics and Automation Letters', 'alternate\_names': ['IEEE Robot Autom Lett'], 'issn': '2377-3766', 'url': 'https://www.ieee.org/membership-catalog/productdetail/showProductDetailPage.html?product=PER481-ELE', 'alternate\_urls': ['http://ieeexplore.ieee.org/servlet/opac?punumber=7083369']} |
-| [Robust Three-Stage Dynamic Mode Decomposition for Analysis of Power System Oscillations](https://www.semanticscholar.org/paper/1a279d90354755f741f45618a5673e220a715fc7) | 2024-03-01 | 0 | {'name': 'IEEE Transactions on Power Systems', 'pages': '4000-4009', 'volume': '39'} | {'id': 'dbbda9ef-0504-4875-b893-5c964f6b8f0e', 'name': 'IEEE Transactions on Power Systems', 'type': 'journal', 'alternate\_names': ['IEEE Trans Power Syst'], 'issn': '0885-8950', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=59'} |
-| [Vibration-based structural damage localization through a discriminant analysis strategy with cepstral coefficients](https://www.semanticscholar.org/paper/ad7af3dfb3aa9bf417a98e84fb3bab61f46fc04f) | 2024-02-28 | 0 | {'name': 'Structural Health Monitoring'} | {'id': '928c5b4b-9a67-473f-996e-bf7e28c1e736', 'name': 'Structural Health Monitoring', 'type': 'journal', 'alternate\_names': ['Struct Health Monit', 'Struct Health Monit Int J', 'Structural Health Monitoring-an International Journal'], 'issn': '1475-9217', 'url': 'https://journals.sagepub.com/home/shm', 'alternate\_urls': ['http://shm.sagepub.com/']} |
-| [Spectral Time-Varying Pattern Causality and Its Application.](https://www.semanticscholar.org/paper/8129bbd354a9694aa23224775d4b612e427aa529) | 2024-02-28 | 0 | {'name': 'IEEE journal of biomedical and health informatics', 'volume': 'PP'} | {'id': 'eac74c9c-a5c0-417d-8088-8164a6a8bfb3', 'name': 'IEEE journal of biomedical and health informatics', 'type': 'journal', 'alternate\_names': ['IEEE Journal of Biomedical and Health Informatics', 'IEEE j biomed health informatics', 'IEEE J Biomed Health Informatics'], 'issn': '2168-2194', 'url': 'https://ieeexplore.ieee.org/xpl/aboutJournal.jsp?punumber=6221020', 'alternate\_urls': ['https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=6221020']} |
-| [Big topic modeling based on a two-level hierarchical latent Beta-Liouville allocation for large-scale data and parameter streaming](https://www.semanticscholar.org/paper/714a07ff77f81ded2fd359c97468890d12a3dad2) | 2024-02-28 | 0 | {'name': 'Pattern Analysis and Applications', 'pages': '1-21', 'volume': '27'} | {'id': '69d98769-bd34-4c40-a508-895b6adfac86', 'name': 'Pattern Analysis and Applications', 'type': 'journal', 'alternate\_names': ['Pattern Anal Appl'], 'issn': '1433-7541', 'url': 'https://rd.springer.com/journal/10044'} |
-| [Sensor based Dance Coherent Action Generation Model using Deep Learning Framework](https://www.semanticscholar.org/paper/78b968af546e846d26bd851a619c438a70c6ce68) | 2024-02-24 | 0 | {'name': 'Scalable Computing: Practice and Experience'} | None |
-| [Monstrous Mushrooms, Toxic Love and Queer Utopias in Jenny Hval's Paradise Rot](https://www.semanticscholar.org/paper/cb8bbf850e7e0eef682ed7d42e23606bfce01cdc) | 2024-02-21 | 0 | {'name': 'Junctions: Graduate Journal of the Humanities'} | {'id': 'ad439cd7-5bd3-4d03-a3e4-17167ef8fb89', 'name': 'Junctions: Graduate Journal of the Humanities', 'type': 'journal', 'alternate\_names': ['Junction Grad J Humanit'], 'issn': '2468-8282', 'url': 'https://junctionsjournal.org/'} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
1. Search query
+ (VAMP) | (latent space simul*) | (decomposition of koopman operator) | (time-lagged autoencoder)
+
+
+
+
2. Latent Space Simulator articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on Latent Space Simulator
+
+
+
+
+
4. Latest articles on Latent Space Simulator
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Neural_ODEs.md b/docs/Neural_ODEs.md
index 638ea7e8..7874f28d 100644
--- a/docs/Neural_ODEs.md
+++ b/docs/Neural_ODEs.md
@@ -2,72 +2,898 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(neural ordinary differential equation) | (neural ODE) | (graph neural differential equation) | (graph neural diffusion) | (graph neural ODEs)*
-
-
-
-
-### 2. Neural ODEs articles and citations over time
-
-
-![Neural ODEs](assets/Neural_ODEs.png)
-
-
-
-
-### 3. Most cited articles on Neural ODEs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Neural Ordinary Differential Equations](https://www.semanticscholar.org/paper/449310e3538b08b43227d660227dfd2875c3c3c1) | 2018-06-19 | 3515 | {'pages': '6572-6583'} | {'id': 'd9720b90-d60b-48bc-9df8-87a30b9a60dd', 'name': 'Neural Information Processing Systems', 'type': 'conference', 'alternate\_names': ['Neural Inf Process Syst', 'NeurIPS', 'NIPS'], 'url': 'http://neurips.cc/'} |
-| [Score-Based Generative Modeling through Stochastic Differential Equations](https://www.semanticscholar.org/paper/633e2fbfc0b21e959a244100937c5853afca4853) | 2020-11-26 | 2596 | {'name': 'ArXiv', 'volume': 'abs/2011.13456'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Diffusion Convolutional Recurrent Neural Network: Data-Driven Traffic Forecasting](https://www.semanticscholar.org/paper/9ba0186ed40656329c421f55ada7313293e13f17) | 2017-07-06 | 2119 | {'name': 'arXiv: Learning', 'volume': ''} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Artificial neural networks for solving ordinary and partial differential equations](https://www.semanticscholar.org/paper/5ebbe0b1a3d7a2431bbb25d6dfeec7ed6954d633) | 1997-05-19 | 1720 | {'name': 'IEEE transactions on neural networks', 'pages': '\n 987-1000\n ', 'volume': '9 5'} | None |
-| [Diffusion-Convolutional Neural Networks](https://www.semanticscholar.org/paper/18b47b83a373f33d6b902a3615f42c10f7600d72) | 2015-11-06 | 1082 | {'pages': '1993-2001'} | {'id': 'd9720b90-d60b-48bc-9df8-87a30b9a60dd', 'name': 'Neural Information Processing Systems', 'type': 'conference', 'alternate\_names': ['Neural Inf Process Syst', 'NeurIPS', 'NIPS'], 'url': 'http://neurips.cc/'} |
-| [Dynamic Edge-Conditioned Filters in Convolutional Neural Networks on Graphs](https://www.semanticscholar.org/paper/1a39bb2caa151d15efd6718f3a80d9f4bff95af2) | 2017-04-10 | 1071 | {'name': '2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR)', 'pages': '29-38'} | {'id': '768b87bb-8a18-4d9c-a161-4d483c776bcf', 'name': 'Computer Vision and Pattern Recognition', 'type': 'conference', 'alternate\_names': ['CVPR', 'Comput Vis Pattern Recognit'], 'issn': '1063-6919', 'url': 'https://ieeexplore.ieee.org/xpl/conhome.jsp?punumber=1000147', 'alternate\_urls': ['https://en.wikipedia.org/wiki/Conference\_on\_Computer\_Vision\_and\_Pattern\_Recognition']} |
-| [FFJORD: Free-form Continuous Dynamics for Scalable Reversible Generative Models](https://www.semanticscholar.org/paper/8afa6dd9f9ac46462a1fb70a757c4ae1cd45bbf6) | 2018-09-27 | 688 | {'name': 'ArXiv', 'volume': 'abs/1810.01367'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Stable architectures for deep neural networks](https://www.semanticscholar.org/paper/37be889f4654312109dc9c53395fe117adb0f72b) | 2017-05-09 | 591 | {'name': 'Inverse Problems', 'volume': '34'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Brian: A Simulator for Spiking Neural Networks in Python](https://www.semanticscholar.org/paper/aac882f968b720785613673508e7783f0efd7182) | 2008-07-11 | 526 | {'name': 'Frontiers in Neuroinformatics', 'volume': '2'} | {'id': '8eabe4e5-3d91-4297-ab8f-475904598d30', 'name': 'BMC Neuroscience', 'type': 'journal', 'alternate\_names': ['BMC Neurosci'], 'issn': '1471-2202', 'url': 'http://www.biomedcentral.com/bmcneurosci/', 'alternate\_urls': ['https://bmcneurosci.biomedcentral.com/', 'http://www.pubmedcentral.nih.gov/tocrender.fcgi?journal=49', 'http://www.biomedcentral.com/bmcneurosci/archive/']} |
-| [DPM-Solver: A Fast ODE Solver for Diffusion Probabilistic Model Sampling in Around 10 Steps](https://www.semanticscholar.org/paper/4530c25da949bb2185c50663158ef19d52e3c6b5) | 2022-06-02 | 495 | {'name': 'ArXiv', 'volume': 'abs/2206.00927'} | {'id': 'd9720b90-d60b-48bc-9df8-87a30b9a60dd', 'name': 'Neural Information Processing Systems', 'type': 'conference', 'alternate\_names': ['Neural Inf Process Syst', 'NeurIPS', 'NIPS'], 'url': 'http://neurips.cc/'} |
-
-
-
-
-
-
-### 4. Latest articles on Neural ODEs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Continuous Image Outpainting with Neural ODE](https://www.semanticscholar.org/paper/2566d035a3d7f12df59b7053a610fbd54161562b) | 2024-03-02 | 0 | {'name': 'SSRN Electronic Journal'} | {'id': '75d7a8c1-d871-42db-a8e4-7cf5146fdb62', 'name': 'Social Science Research Network', 'type': 'journal', 'alternate\_names': ['SSRN, Social Science Research Network (SSRN) home page', 'SSRN Electronic Journal', 'Soc Sci Res Netw', 'SSRN', 'SSRN Home Page', 'SSRN Electron J', 'Social Science Electronic Publishing presents Social Science Research Network'], 'issn': '1556-5068', 'url': 'http://www.ssrn.com/', 'alternate\_urls': ['www.ssrn.com/', 'https://fatcat.wiki/container/tol7woxlqjeg5bmzadeg6qrg3e', 'https://www.wikidata.org/wiki/Q53949192', 'www.ssrn.com/en', 'http://www.ssrn.com/en/', 'http://umlib.nl/ssrn', 'umlib.nl/ssrn']} |
-| [Graph Convolutional Neural Networks for Automated Echocardiography View Recognition: A Holistic Approach](https://www.semanticscholar.org/paper/3779b87d10925ca2bf96c3b8b971330c8682e06e) | 2024-02-29 | 0 | {'pages': '44-54'} | None |
-| [Modelling and Distribution of Electricity Load Forecasting in Nigeria Power System (Olu-Ode Community)](https://www.semanticscholar.org/paper/77308f9484b9c372ad028e04301c07f5e92c566b) | 2024-02-28 | 0 | {'name': 'International Journal of Advanced Engineering and Nano Technology'} | {'id': 'b2a6f6aa-b866-4069-8e96-b765cd7776f9', 'name': 'International Journal of Advanced Engineering and Nano Technology', 'type': 'journal', 'alternate\_names': ['Int J Adv Eng Nano Technol'], 'issn': '2347-6389', 'url': 'https://www.ijaent.org/'} |
-| [Changes in Structural Neural Networks in the Recovery Process of Motor Paralysis after Stroke](https://www.semanticscholar.org/paper/93a3bdec5c232a639d5cd0be5f7cb430caafdd2f) | 2024-02-21 | 0 | {'name': 'Brain Sciences'} | {'id': '39058e09-c13a-4545-a8a3-a75581460bc2', 'name': 'Brain Science', 'type': 'journal', 'alternate\_names': ['Brain Sciences', 'Brain Sci'], 'issn': '2570-0197', 'alternate\_issns': ['2076-3425'], 'url': 'http://www.e-helvetica.nb.admin.ch/directAccess?callnumber=bel-217894', 'alternate\_urls': ['https://www.mdpi.com/journal/brainsci', 'https://epub.uni-regensburg.de/37319/', 'http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-217894']} |
-| [Zhang neural networks: an introduction to predictive computations for discretized time-varying matrix problems](https://www.semanticscholar.org/paper/d9b9e3efbe9528468442ca216a59223847d31fa4) | 2024-02-19 | 0 | {'name': 'Numerische Mathematik'} | {'id': '23ed2049-ad4e-4e12-8e48-a4e55bc4e377', 'name': 'Numerische Mathematik', 'type': 'journal', 'alternate\_names': ['Numer Math'], 'issn': '0029-599X', 'url': 'http://www.springer.com/mathematics/numerical+and+computational+mathematics/journal/211', 'alternate\_urls': ['http://www.digizeitschriften.de/main/dms/toc/?PPN=PPN362160546', 'https://link.springer.com/journal/211']} |
-| [Emulating the interstellar medium chemistry with neural operators](https://www.semanticscholar.org/paper/5005529d4850a80e2234177e2a2625ed7ac60a68) | 2024-02-19 | 0 | {'name': 'Astronomy & Astrophysics'} | None |
-| [Temporal Disentangled Contrastive Diffusion Model for Spatiotemporal Imputation](https://www.semanticscholar.org/paper/94e459909290d427dffaee3052a19ed32300b89a) | 2024-02-18 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.11558'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Uncertainty Quantification of Graph Convolution Neural Network Models of Evolving Processes](https://www.semanticscholar.org/paper/3e64d1ecf181a7115d7f4a61834f1e7e7defc6bf) | 2024-02-17 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.11179'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [ContiFormer: Continuous-Time Transformer for Irregular Time Series Modeling](https://www.semanticscholar.org/paper/5ee2008c1eab4545f1e001b2cf3c0578b7a1aafe) | 2024-02-16 | 1 | {'name': 'ArXiv', 'volume': 'abs/2402.10635'} | {'id': 'd9720b90-d60b-48bc-9df8-87a30b9a60dd', 'name': 'Neural Information Processing Systems', 'type': 'conference', 'alternate\_names': ['Neural Inf Process Syst', 'NeurIPS', 'NIPS'], 'url': 'http://neurips.cc/'} |
-| [Beyond Kalman Filters: Deep Learning-Based Filters for Improved Object Tracking](https://www.semanticscholar.org/paper/dfb10dec07e4e45faec83014d0c6764bd5a0a588) | 2024-02-15 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.09865'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Table of Contents
+ 1. Search Query
+ 2. Neural ODEs articles and citations over time
+ 3. Most cited articles on Neural ODEs
+ 4. Latest articles on Neural ODEs
+
+
+
+
1. Search query
+ (neural ordinary differential equation) | (neural ODE) | (graph neural differential equation) | (graph neural diffusion) | (graph neural ODEs)
+
+
+
+
2. Neural ODEs articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on Neural ODEs
+
+
+
+
+
4. Latest articles on Neural ODEs
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/PINNs.md b/docs/PINNs.md
index 8cff4265..26919795 100644
--- a/docs/PINNs.md
+++ b/docs/PINNs.md
@@ -2,72 +2,256 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(physics-informed neural computing)*
-
-
-
-
-### 2. PINNs articles and citations over time
-
-
-![PINNs](assets/PINNs.png)
-
-
-
-
-### 3. Most cited articles on PINNs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Physics-informed learning of governing equations from scarce data](https://www.semanticscholar.org/paper/e596988b1df3a0bc78bf72c0bfdb21c85eaab6c9) | 2020-05-05 | 177 | {'name': 'Nature Communications', 'volume': '12'} | {'id': '43b3f0f9-489a-4566-8164-02fafde3cd98', 'name': 'Nature Communications', 'type': 'journal', 'alternate\_names': ['Nat Commun'], 'issn': '2041-1723', 'url': 'https://www.nature.com/ncomms/', 'alternate\_urls': ['http://www.nature.com/ncomms/about/index.html', 'http://www.nature.com/ncomms/index.html']} |
-| [Learning in Modal Space: Solving Time-Dependent Stochastic PDEs Using Physics-Informed Neural Networks](https://www.semanticscholar.org/paper/7fdccf0d550e1a8db830d280bbf3e7b3e6d66653) | 2019-05-03 | 160 | {'name': 'ArXiv', 'volume': 'abs/1905.01205'} | {'id': '0e3b51a7-21d8-477c-8918-14a55f087532', 'name': 'SIAM Journal on Scientific Computing', 'type': 'journal', 'alternate\_names': ['SIAM J Sci Comput'], 'issn': '1064-8275', 'url': 'http://www.siam.org/journals/sisc.php', 'alternate\_urls': ['https://epubs.siam.org/journal/sjoce3']} |
-| [Efficient training of physics‐informed neural networks via importance sampling](https://www.semanticscholar.org/paper/af68d37e2721abe702bacfcea5111f9ec59012ce) | 2021-04-26 | 113 | {'name': 'Computer‐Aided Civil and Infrastructure Engineering', 'pages': '962 - 977', 'volume': '36'} | None |
-| [The Old and the New: Can Physics-Informed Deep-Learning Replace Traditional Linear Solvers?](https://www.semanticscholar.org/paper/1a0db1672f4d08a81b02fd35453d5d04d3013635) | 2021-03-12 | 109 | {'name': 'Frontiers in Big Data', 'volume': '4'} | {'id': '165fa1b5-e07f-4b6e-9203-04493f6a7c5c', 'name': 'Frontiers in Big Data', 'alternate\_names': ['Front Big Data'], 'issn': '2624-909X', 'url': 'https://www.frontiersin.org/journals/big-data'} |
-| [ClimaX: A foundation model for weather and climate](https://www.semanticscholar.org/paper/874deb5f06f35e52ae13a921b23611eec4abd1da) | 2023-01-24 | 87 | {'pages': '25904-25938'} | {'id': 'fc0a208c-acb7-47dc-a0d4-af8190e21d29', 'name': 'International Conference on Machine Learning', 'type': 'conference', 'alternate\_names': ['ICML', 'Int Conf Mach Learn'], 'url': 'https://icml.cc/'} |
-| [A Physics-Informed Neural Network for Quantifying the Microstructural Properties of Polycrystalline Nickel Using Ultrasound Data: A promising approach for solving inverse problems](https://www.semanticscholar.org/paper/bde6492eb852a10ffd4bba5d7df23e37f9b81a3e) | 2021-03-25 | 52 | {'name': 'IEEE Signal Processing Magazine', 'pages': '68-77', 'volume': '39'} | {'id': 'f62e5eab-173a-4e0a-a963-ed8de9835d22', 'name': 'IEEE Signal Processing Magazine', 'type': 'journal', 'alternate\_names': ['IEEE Signal Process Mag'], 'issn': '1053-5888', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=79', 'alternate\_urls': ['https://ieeexplore.ieee.org/xpl/RecentIssue.jsp?punumber=79']} |
-| [NeuralPDE: Automating Physics-Informed Neural Networks (PINNs) with Error Approximations](https://www.semanticscholar.org/paper/e15133cfd09c2a2eb98c38468a897866a904d125) | 2021-07-19 | 44 | {'name': 'ArXiv', 'volume': 'abs/2107.09443'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [A comparative study of physics-informed neural network models for learning unknown dynamics and constitutive relations](https://www.semanticscholar.org/paper/373a6cb7cf455191a81cd16649e0a02ecb558e7a) | 2019-04-02 | 33 | {'name': 'ArXiv', 'volume': 'abs/1904.04058'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [A novel meta-learning initialization method for physics-informed neural networks](https://www.semanticscholar.org/paper/d6be8e09ed6c47e8b5c459ef4bab1015afb01973) | 2021-07-23 | 32 | {'name': 'Neural Computing and Applications', 'pages': '14511 - 14534', 'volume': '34'} | None |
-| [Identification and prediction of time-varying parameters of COVID-19 model: a data-driven deep learning approach](https://www.semanticscholar.org/paper/387f4a128f84ddd9ce7fa530711dd7918b037978) | 2021-03-17 | 31 | {'name': 'International Journal of Computer Mathematics', 'pages': '1617 - 1632', 'volume': '98'} | {'id': '0815ec9f-1740-4242-ab39-5e71b6d57346', 'name': 'International Journal of Computational Mathematics', 'type': 'journal', 'alternate\_names': ['International Journal of Computer-Generated Mathematics', 'Int J Comput Math', 'International Journal of Computer Mathematics'], 'issn': '2314-856X', 'alternate\_issns': ['0020-7160', '2367-6493'], 'url': 'https://www.hindawi.com/journals/ijcm/', 'alternate\_urls': ['http://www.tandf.co.uk/journals/default.asp', 'http://www.ddekov.eu/j/', 'http://www.tandfonline.com/loi/gcom20']} |
-
-
-
-
-
-
-### 4. Latest articles on PINNs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [New insights into experimental stratified flows obtained through physics-informed neural networks](https://www.semanticscholar.org/paper/55f66c4639902b7bdca1ec3db18e08cf98bcd301) | 2024-02-23 | 0 | {'name': 'Journal of Fluid Mechanics'} | {'id': 'fb1aca4e-2d42-48af-83dc-f5b1a3651a36', 'name': 'Journal of Fluid Mechanics', 'type': 'journal', 'alternate\_names': ['J Fluid Mech'], 'issn': '0022-1120', 'url': 'https://www.cambridge.org/core/journals/journal-of-fluid-mechanics', 'alternate\_urls': ['http://journals.cambridge.org/action/displayJournal?jid=FLM', 'http://www.journals.cambridge.org/bin/bladerunner?30REQEVENT=&500002REQSUB=&REQAUTH=0&REQSTR1=JournalofFluidMechanics']} |
-| [Regression Transients Modeling of Solid Rocket Motor Burning Surfaces with Physics-guided Neural Network](https://www.semanticscholar.org/paper/043675aed01841c86c684457b8e88066f6094bc3) | 2024-02-14 | 0 | {'name': 'Machine Learning: Science and Technology'} | None |
-| [Energy-based PINNs for solving coupled field problems: concepts and application to the optimal design of an induction heater](https://www.semanticscholar.org/paper/6620d79b3603639d1a1d4054de4e09c2c977b7f0) | 2024-02-09 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.06261'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Enriched Physics-informed Neural Networks for Dynamic Poisson-Nernst-Planck Systems](https://www.semanticscholar.org/paper/bc3d14c809e0a8da182bcb2f30797c5edaa3fd48) | 2024-02-01 | 0 | {'name': 'ArXiv', 'volume': 'abs/2402.01768'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Physics-informed neural networks with domain decomposition for the incompressible Navier–Stokes equations](https://www.semanticscholar.org/paper/6ab365eb128bf97c7779805806184c8d2a0f0ec1) | 2024-02-01 | 0 | {'name': 'Physics of Fluids'} | {'id': 'fcb86ed6-f18e-4059-9779-7acc73d8b8ab', 'name': 'The Physics of Fluids', 'type': 'journal', 'alternate\_names': ['Physics of Fluids', 'Phys Fluid'], 'issn': '0031-9171', 'alternate\_issns': ['1070-6631'], 'url': 'https://aip.scitation.org/journal/phf', 'alternate\_urls': ['http://pof.aip.org/']} |
-| [Adaptive Deep Fourier Residual method via overlapping domain decomposition](https://www.semanticscholar.org/paper/ba5b00d09b5cb44c3b59d86e4cf051430f984474) | 2024-01-09 | 0 | {'name': 'ArXiv', 'volume': 'abs/2401.04663'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Computing the Gerber-Shiu function with interest and a constant dividend barrier by physics-informed neural networks](https://www.semanticscholar.org/paper/a852a6c427fcbffcad2a3c4f179d9a82cbdbef47) | 2024-01-09 | 0 | {'name': 'ArXiv', 'volume': 'abs/2401.04378'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Modeling multisource multifrequency acoustic wavefields by a multiscale Fourier feature physics-informed neural network with adaptive activation functions](https://www.semanticscholar.org/paper/27b4ccd8fef1d27856300460ecc7fbfdd0e73c81) | 2024-01-09 | 0 | {'name': 'GEOPHYSICS'} | {'id': '74f68976-b242-4148-9315-8fd8095a9ecd', 'name': 'Geophysics', 'type': 'journal', 'issn': '0016-8033', 'url': 'http://www.geo-online.org/', 'alternate\_urls': ['https://library.seg.org/journal/gpysa7']} |
-| [Physics-Guided, Physics-Informed, and Physics-Encoded Neural Networks and Operators in Scientific Computing: Fluid and Solid Mechanics](https://www.semanticscholar.org/paper/bc9ae66c84e31839015dd30c0bd76548bf1b7a5c) | 2024-01-08 | 4 | {'name': 'Journal of Computing and Information Science in Engineering'} | {'id': 'd029f971-f74c-41ca-8373-1b713414c797', 'name': 'Journal of Computing and Information Science in Engineering', 'type': 'journal', 'alternate\_names': ['J Comput Inf Sci Eng'], 'issn': '1530-9827', 'url': 'https://www.asme.org/', 'alternate\_urls': ['http://computingengineering.asmedigitalcollection.asme.org/journal.aspx?journalid=116', 'http://computingengineering.asmedigitalcollection.asme.org/', 'http://computingengineering.asmedigitalcollection.asme.org/journal.aspx']} |
-| [Solving real-world optimization tasks using physics-informed neural computing](https://www.semanticscholar.org/paper/23c7b93a379c26c3738921282771e1a545538703) | 2024-01-08 | 1 | {'name': 'Scientific Reports', 'volume': '14'} | {'id': 'f99f77b7-b1b6-44d3-984a-f288e9884b9b', 'name': 'Scientific Reports', 'type': 'journal', 'alternate\_names': ['Sci Rep'], 'issn': '2045-2322', 'url': 'http://www.nature.com/srep/', 'alternate\_urls': ['http://www.nature.com/srep/index.html']} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
1. Search query
+ (physics-informed neural computing)
+
+
+
+
2. PINNs articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on PINNs
+
+
+
+
+
4. Latest articles on PINNs
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Physics-informed_GNNs.md b/docs/Physics-informed_GNNs.md
index 694cc908..38d4f44c 100644
--- a/docs/Physics-informed_GNNs.md
+++ b/docs/Physics-informed_GNNs.md
@@ -2,72 +2,898 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*(graph networks) | (physics constrain) | (learned simulator) | (learned simulation)*
-
-
-
-
-### 2. Physics-informed GNNs articles and citations over time
-
-
-![Physics-informed GNNs](assets/Physics-informed_GNNs.png)
-
-
-
-
-### 3. Most cited articles on Physics-informed GNNs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Gradient-based learning applied to document recognition](https://www.semanticscholar.org/paper/162d958ff885f1462aeda91cd72582323fd6a1f4) | None | 46003 | {'name': 'Proc. IEEE', 'pages': '2278-2324', 'volume': '86'} | {'id': '6faaccca-1cc4-45a9-aeb6-96a4901d2606', 'name': 'Proceedings of the IEEE', 'type': 'journal', 'alternate\_names': ['Proc IEEE'], 'issn': '0018-9219', 'alternate\_issns': ['1558-2256'], 'url': 'http://www.ieee.org/portal/pages/pubs/proceedings/', 'alternate\_urls': ['http://www.ieee.org/products/onlinepubs/pub/about\_conference.html', 'https://ieeexplore.ieee.org/servlet/opac?punumber=5', 'http://proceedingsoftheieee.ieee.org/']} |
-| [Collective dynamics of ‘small-world’ networks](https://www.semanticscholar.org/paper/d61031326150ba23f90e6587c13d99188209250e) | 1998-06-04 | 38484 | {'name': 'Nature', 'pages': '440-442', 'volume': '393'} | {'id': '6c24a0a0-b07d-4d7b-a19b-fd09a3ed453a', 'name': 'Nature', 'type': 'journal', 'issn': '0028-0836', 'url': 'https://www.nature.com/', 'alternate\_urls': ['http://www.nature.com/nature/', 'https://www.nature.com/nature/', 'http://www.nature.com/nature/archive/index.html']} |
-| [Semi-Supervised Classification with Graph Convolutional Networks](https://www.semanticscholar.org/paper/36eff562f65125511b5dfab68ce7f7a943c27478) | 2016-09-09 | 22114 | {'name': 'ArXiv', 'volume': 'abs/1609.02907'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [Statistical mechanics of complex networks](https://www.semanticscholar.org/paper/dce8146987557735a19771aefa1f027211a2c275) | 2001-06-06 | 18824 | {'name': 'ArXiv', 'volume': 'cond-mat/0106096'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [The Structure and Function of Complex Networks](https://www.semanticscholar.org/paper/e6c4925fb114d13a8568f88957c167c928f0c9f1) | 2003-03-25 | 16785 | {'name': 'SIAM Rev.', 'pages': '167-256', 'volume': '45'} | {'id': '8f59dd66-e4cd-4341-8ea9-9a03d965a009', 'name': 'SIAM Review', 'type': 'journal', 'alternate\_names': ['SIAM Rev', 'Siam Rev', 'Siam Review'], 'issn': '0036-1445', 'url': 'https://www.jstor.org/journal/siamreview', 'alternate\_urls': ['http://www.jstor.org/journals/00361445.html', 'https://epubs.siam.org/journal/siread', 'http://www.siam.org/journals/sirev.php']} |
-| [TensorFlow: A system for large-scale machine learning](https://www.semanticscholar.org/paper/4954fa180728932959997a4768411ff9136aac81) | 2016-05-27 | 16703 | {'pages': '265-283'} | {'id': '86c43745-31d9-4c1a-b33f-ce3aa0042dbb', 'name': 'USENIX Symposium on Operating Systems Design and Implementation', 'type': 'conference', 'alternate\_names': ['Oper Syst Des Implement', 'Operating Systems Design and Implementation', 'OSDI', 'USENIX Symp Oper Syst Des Implement']} |
-| [Community structure in social and biological networks](https://www.semanticscholar.org/paper/2a005868b79511cf8c924cd5990e2497527a0527) | 2001-12-07 | 14280 | {'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'pages': '7821 - 7826', 'volume': '99'} | {'id': 'bb95bf2e-8383-4748-bf9d-d6906d091085', 'name': 'Proceedings of the National Academy of Sciences of the United States of America', 'type': 'journal', 'alternate\_names': ['PNAS', 'PNAS online', 'Proceedings of the National Academy of Sciences of the United States of America.', 'Proc National Acad Sci', 'Proceedings of the National Academy of Sciences', 'Proc National Acad Sci u s Am'], 'issn': '0027-8424', 'alternate\_issns': ['1091-6490'], 'url': 'https://www.jstor.org/journal/procnatiacadscie', 'alternate\_urls': ['http://www.pnas.org/', 'https://www.pnas.org/', 'http://www.jstor.org/journals/00278424.html', 'www.pnas.org/']} |
-| [Graph Attention Networks](https://www.semanticscholar.org/paper/33998aff64ce51df8dee45989cdca4b6b1329ec4) | 2017-10-30 | 13972 | {'name': 'ArXiv', 'volume': 'abs/1710.10903'} | {'id': '939c6e1d-0d17-4d6e-8a82-66d960df0e40', 'name': 'International Conference on Learning Representations', 'type': 'conference', 'alternate\_names': ['Int Conf Learn Represent', 'ICLR'], 'url': 'https://iclr.cc/'} |
-| [PRISMA Extension for Scoping Reviews (PRISMA-ScR): Checklist and Explanation](https://www.semanticscholar.org/paper/450106c6c960424b365249f2a301ce0abe24e346) | 2018-10-02 | 12792 | {'name': 'Annals of Internal Medicine', 'pages': '467-473', 'volume': '169'} | {'id': '643b0c17-99ac-463b-81c4-df44ad66e34d', 'name': 'Annals of Internal Medicine', 'type': 'journal', 'alternate\_names': ['Ann Intern Med'], 'issn': '0003-4819', 'url': 'http://www.acponline.org/journals/annals/annaltoc.htm', 'alternate\_urls': ['http://www.annals.org/']} |
-| [Consensus problems in networks of agents with switching topology and time-delays](https://www.semanticscholar.org/paper/9839ed2281ba4b589bf88c7e4acc48c9fa6fb933) | 2004-09-13 | 11249 | {'name': 'IEEE Transactions on Automatic Control', 'pages': '1520-1533', 'volume': '49'} | {'id': '1283a59c-0d1f-48c3-81d7-02172f597e70', 'name': 'IEEE Transactions on Automatic Control', 'type': 'journal', 'alternate\_names': ['IEEE Trans Autom Control'], 'issn': '0018-9286', 'url': 'http://ieeexplore.ieee.org/servlet/opac?punumber=9'} |
-
-
-
-
-
-
-### 4. Latest articles on Physics-informed GNNs
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Hierarchical spatio-temporal graph convolutional neural networks for traffic data imputation](https://www.semanticscholar.org/paper/04744b6893487a608e3726fb4542e2a7f9e81a5b) | 2024-06-01 | 0 | {'name': 'Information Fusion'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [Reagent dosage inference based on graph convolutional memory perception network for zinc roughing flotation](https://www.semanticscholar.org/paper/ba23319a62da63ec3b664f6452bb7a9aee8a46dc) | 2024-05-01 | 0 | {'name': 'Control Engineering Practice'} | {'id': 'af74e393-8f45-41cd-915b-734494cb48f2', 'name': 'Control Engineering Practice', 'type': 'journal', 'alternate\_names': ['Control Eng Pract'], 'issn': '0967-0661', 'url': 'http://www.elsevier.com/wps/find/journaldescription.cws\_home/123/description#description', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/09670661']} |
-| [MACNS: A generic graph neural network integrated deep reinforcement learning based multi-agent collaborative navigation system for dynamic trajectory planning](https://www.semanticscholar.org/paper/a1a503c7c23502bebe94eb042b0ce9f8bdbb6504) | 2024-05-01 | 0 | {'name': 'Inf. Fusion', 'pages': '102250', 'volume': '105'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [DawnGNN: Documentation augmented windows malware detection using graph neural network](https://www.semanticscholar.org/paper/45cb2614652147789e18f1bc15d665977d2d1ee9) | 2024-05-01 | 0 | {'name': 'Computers & Security'} | None |
-| [Multi-level Graph Memory Network Cluster Convolutional Recurrent Network for traffic forecasting](https://www.semanticscholar.org/paper/357677ec8b2223f049c45c7330633a5b85c2bc95) | 2024-05-01 | 0 | {'name': 'Inf. Fusion', 'pages': '102214', 'volume': '105'} | {'id': '06afdd0b-0d85-413f-af8a-c3045c12c561', 'name': 'Information Fusion', 'type': 'journal', 'alternate\_names': ['Inf Fusion'], 'issn': '1566-2535', 'url': 'https://www.journals.elsevier.com/information-fusion', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/15662535']} |
-| [FairCare: Adversarial training of a heterogeneous graph neural network with attention mechanism to learn fair representations of electronic health records](https://www.semanticscholar.org/paper/3383c82d39b88e5349d345e32e879806bd72d435) | 2024-05-01 | 0 | {'name': 'Information Processing & Management'} | None |
-| [Multi-criteria group decision making based on graph neural networks in Pythagorean fuzzy environment](https://www.semanticscholar.org/paper/13a50769f110029fcb3390956789aec236071c53) | 2024-05-01 | 1 | {'name': 'Expert Systems with Applications'} | {'id': '987139ae-a65d-49bb-aaf6-fb764dc40b19', 'name': 'Expert systems with applications', 'type': 'journal', 'alternate\_names': ['Expert syst appl', 'Expert Systems With Applications', 'Expert Syst Appl'], 'issn': '0957-4174', 'url': 'https://www.journals.elsevier.com/expert-systems-with-applications/', 'alternate\_urls': ['https://www.sciencedirect.com/journal/expert-systems-with-applications', 'http://www.sciencedirect.com/science/journal/09574174']} |
-| [POI recommendation for random groups based on cooperative graph neural networks](https://www.semanticscholar.org/paper/0cfd9a1774cf41ff07e957bbc25d14596d529c4f) | 2024-05-01 | 0 | {'name': 'Information Processing & Management'} | None |
-| [Attention based multi-task interpretable graph convolutional network for Alzheimer’s disease analysis](https://www.semanticscholar.org/paper/fc5ee86473fd698e3f4405b51bdfe0575304a30d) | 2024-04-01 | 0 | {'name': 'Pattern Recognition Letters'} | {'id': 'f35e3e87-9df4-497b-aa0d-bb8584197290', 'name': 'Pattern Recognition Letters', 'type': 'journal', 'alternate\_names': ['Pattern Recognit Lett'], 'issn': '0167-8655', 'url': 'https://www.journals.elsevier.com/pattern-recognition-letters/', 'alternate\_urls': ['http://www.journals.elsevier.com/pattern-recognition-letters/', 'http://www.sciencedirect.com/science/journal/01678655']} |
-| [A coarse-to-fine adaptive spatial–temporal graph convolution network with residuals for motor imagery decoding from the same limb](https://www.semanticscholar.org/paper/f56be81f12e0c0bdf632d5feeaf028dfb791223a) | 2024-04-01 | 0 | {'name': 'Biomedical Signal Processing and Control'} | {'id': '1bac31b4-014a-4981-ae41-af2a40acc162', 'name': 'Biomedical Signal Processing and Control', 'type': 'journal', 'alternate\_names': ['Biomed Signal Process Control'], 'issn': '1746-8094', 'url': 'https://www.journals.elsevier.com/biomedical-signal-processing-and-control', 'alternate\_urls': ['http://www.sciencedirect.com/science/journal/17468094']} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Table of Contents
+ 1. Search Query
+ 2. Physics-informed GNNs articles and citations over time
+ 3. Most cited articles on Physics-informed GNNs
+ 4. Latest articles on Physics-informed GNNs
+
+
+
+
1. Search query
+ (graph networks) | (physics constrain) | (learned simulator) | (learned simulation)
+
+
+
+
2. Physics-informed GNNs articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on Physics-informed GNNs
+
+
+
+
+
4. Latest articles on Physics-informed GNNs
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/Symbolic_regression.md b/docs/Symbolic_regression.md
index c59856c4..3a380615 100644
--- a/docs/Symbolic_regression.md
+++ b/docs/Symbolic_regression.md
@@ -2,72 +2,258 @@
hide:
- navigation
---
-
-
-
-
-
-
-
-### 1. Search query
-
-
-*((symbolic regression) + dynamics)*
-
-
-
-
-### 2. Symbolic regression articles and citations over time
-
-
-![Symbolic regression](assets/Symbolic_regression.png)
-
-
-
-
-### 3. Most cited articles on Symbolic regression
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Symbolic Dynamic Programming for First-Order MDPs](https://www.semanticscholar.org/paper/9d59f87b881017e6ef0198636a77ad04b7ebea7a) | 2001-08-04 | 277 | {'pages': '690-700'} | {'id': '67f7f831-711a-43c8-8785-1e09005359b5', 'name': 'International Joint Conference on Artificial Intelligence', 'type': 'conference', 'alternate\_names': ['Int Jt Conf Artif Intell', 'IJCAI'], 'url': 'http://www.ijcai.org/'} |
-| [On Neural Differential Equations](https://www.semanticscholar.org/paper/1f7ba0832203ab808fc8d6706836c591754b79da) | 2022-02-04 | 124 | {'name': 'ArXiv', 'volume': 'abs/2202.02435'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [A Survey And Analysis Of Diversity Measures In Genetic Programming](https://www.semanticscholar.org/paper/a164d4e754c8ef81b9e56a3aefcfbe92a06af9b2) | 2002-07-09 | 104 | {'pages': '716-723'} | {'id': 'd732841e-83f9-49ec-95ca-389e5568634b', 'name': 'Annual Conference on Genetic and Evolutionary Computation', 'type': 'conference', 'alternate\_names': ['GECCO', 'Annu Conf Genet Evol Comput', 'Genet Evol Comput Conf', 'Genetic and Evolutionary Computation Conference'], 'url': 'http://www.sigevo.org/'} |
-| [Prediction of dynamical systems by symbolic regression.](https://www.semanticscholar.org/paper/99c7d71317f3532cdcf83f072d644c236610221d) | 2016-02-15 | 91 | {'name': 'Physical review. E', 'pages': '\n 012214\n ', 'volume': '94 1-1'} | {'id': '19842b7b-a4d1-4f9a-9714-87d878cf6e73', 'name': 'Physical Review E', 'type': 'journal', 'alternate\_names': ['Phys rev E', 'Physical review. E', 'Phys Rev E'], 'issn': '1539-3755', 'alternate\_issns': ['1550-2376', '2470-0045'], 'url': 'https://journals.aps.org/pre/', 'alternate\_urls': ['http://pre.aps.org/', 'http://journals.aps.org/pre/']} |
-| [Take Their Word for It: The Symbolic Role of Linguistic Style Matches in User Communities](https://www.semanticscholar.org/paper/7f701c60d0b73af3ad2b70c6303e0cac18fc47a4) | 2014-12-01 | 69 | {'name': 'MIS Q.', 'pages': '1201-1217', 'volume': '38'} | None |
-| [Data Based Prediction of Blood Glucose Concentrations Using Evolutionary Methods](https://www.semanticscholar.org/paper/8c44933472c5f6e871197be88ba9477ac577ebc6) | 2017-08-08 | 67 | {'name': 'Journal of Medical Systems', 'pages': '1-20', 'volume': '41'} | {'id': '79c59592-820f-4ed1-87df-db795b4326be', 'name': 'Journal of medical systems', 'type': 'journal', 'alternate\_names': ['J Med Syst', 'Journal of Medical Systems', 'J med syst'], 'issn': '0148-5598', 'url': 'https://link.springer.com/journal/10916'} |
-| [Who Is Responsible for the Gender Gap? The Dynamics of Men’s and Women’s Democratic Macropartisanship, 1950–2012](https://www.semanticscholar.org/paper/ea19352c48d8e1f514ed04c87262c6e2f2069616) | 2017-07-03 | 61 | {'name': 'Political Research Quarterly', 'pages': '749 - 761', 'volume': '70'} | None |
-| [On the closed form computation of the dynamic matrices and their differentiations](https://www.semanticscholar.org/paper/ef2824bb7e720bc6448d7e8e4496a49f9a5d2717) | 2013-11-01 | 55 | {'name': '2013 IEEE/RSJ International Conference on Intelligent Robots and Systems', 'pages': '2364-2359'} | None |
-| [Automatic rule identification for agent-based crowd models through gene expression programming](https://www.semanticscholar.org/paper/6e4abe45f2981c8e0dc0cc2e2615f7b1bb1fcd68) | 2014-05-05 | 49 | {'pages': '1125-1132'} | {'id': '6c3a9833-5fac-49d3-b7e7-64910bd40b4e', 'name': 'Adaptive Agents and Multi-Agent Systems', 'type': 'conference', 'alternate\_names': ['Adapt Agent Multi-agent Syst', 'International Joint Conference on Autonomous Agents & Multiagent Systems', 'Adapt Agent Multi-agents Syst', 'AAMAS', 'Adaptive Agents and Multi-Agents Systems', 'Int Jt Conf Auton Agent Multiagent Syst'], 'url': 'http://www.ifaamas.org/'} |
-| [Rediscovering orbital mechanics with machine learning](https://www.semanticscholar.org/paper/0d774d92c9c03648a213e5dc416065b0b72d894e) | 2022-02-04 | 46 | {'name': 'Machine Learning: Science and Technology', 'volume': '4'} | None |
-
-
-
-
-
-
-### 4. Latest articles on Symbolic regression
-
-
-
-
-| Title | PublicationDate | #Citations | Journal/Conference | publicationVenue |
-| --- | --- | --- | --- | --- |
-| [Shared professional logics amongst managers and bureaucrats in Brazilian social security: a street-level mixed-methods study](https://www.semanticscholar.org/paper/3c2bc03831c40da210da5f02806386981973ba48) | 2024-02-20 | 0 | {'name': 'International Journal of Public Sector Management'} | {'id': '39bcb8aa-e2fe-4135-bdce-6794f52e3e76', 'name': 'International Journal of Public Sector Management', 'type': 'journal', 'alternate\_names': ['Int J Public Sect Manag'], 'issn': '0951-3558', 'url': 'https://www.emerald.com/insight/publication/issn/0951-3558', 'alternate\_urls': ['http://www.emeraldinsight.com/0951-3558.htm']} |
-| [Excitation Trajectory Optimization for Dynamic Parameter Identification Using Virtual Constraints in Hands-on Robotic System](https://www.semanticscholar.org/paper/f5c21a0dd557e33b683cab99268d37b04cc912bd) | 2024-01-29 | 0 | {'name': 'ArXiv', 'volume': 'abs/2401.16566'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Population Dynamics in Genetic Programming for Dynamic Symbolic Regression](https://www.semanticscholar.org/paper/0fa5509ee2975b72c8a47ba5f0a60b84774cfd80) | 2024-01-10 | 0 | {'name': 'Applied Sciences'} | {'id': '136edf8d-0f88-4c2c-830f-461c6a9b842e', 'name': 'Applied Sciences', 'type': 'journal', 'alternate\_names': ['Appl Sci'], 'issn': '2076-3417', 'url': 'http://www.e-helvetica.nb.admin.ch/directAccess?callnumber=bel-217814', 'alternate\_urls': ['http://www.mathem.pub.ro/apps/', 'https://www.mdpi.com/journal/applsci', 'http://nbn-resolving.de/urn/resolver.pl?urn=urn:nbn:ch:bel-217814']} |
-| [Reassessing the transport properties of fluids: A symbolic regression approach.](https://www.semanticscholar.org/paper/7864dd40fc44eb8517ef0e87b7f9e965772ece9d) | 2024-01-01 | 0 | {'name': 'Physical review. E', 'pages': '\n 015105\n ', 'volume': '109 1-2'} | {'id': '19842b7b-a4d1-4f9a-9714-87d878cf6e73', 'name': 'Physical Review E', 'type': 'journal', 'alternate\_names': ['Phys rev E', 'Physical review. E', 'Phys Rev E'], 'issn': '1539-3755', 'alternate\_issns': ['1550-2376', '2470-0045'], 'url': 'https://journals.aps.org/pre/', 'alternate\_urls': ['http://pre.aps.org/', 'http://journals.aps.org/pre/']} |
-| [(Invited) Electrochemical Interfaces in Energy Storage: Theory Meets Experiment](https://www.semanticscholar.org/paper/d97335e9ed5301ea056f8957faa5f5b7ef105fac) | 2023-12-22 | 0 | {'name': 'ECS Meeting Abstracts'} | {'id': '4718308a-312e-40e7-a6f2-5110d1359b6a', 'name': 'ECS Meeting Abstracts', 'alternate\_names': ['EC Meet Abstr'], 'issn': '1091-8213', 'url': 'http://ma.ecsdl.org/'} |
-| [AI-Lorenz: A physics-data-driven framework for black-box and gray-box identification of chaotic systems with symbolic regression](https://www.semanticscholar.org/paper/f5cccd316e70bd2366e67260e1f691761bd512d3) | 2023-12-21 | 0 | {'name': 'ArXiv', 'volume': 'abs/2312.14237'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Machine Learning-Based Approach to Wind Turbine Wake Prediction under Yawed Conditions](https://www.semanticscholar.org/paper/ef9533aa3205d0fc999fa12e703d43899f09191b) | 2023-11-04 | 2 | {'name': 'Journal of Marine Science and Engineering'} | {'id': 'fff3549c-df24-4aef-accb-a33ae442a828', 'name': 'Journal of Marine Science and Engineering', 'type': 'journal', 'alternate\_names': ['J Mar Sci Eng'], 'issn': '2077-1312', 'url': 'https://www.mdpi.com/journal/jmse'} |
-| [Boolformer: Symbolic Regression of Logic Functions with Transformers](https://www.semanticscholar.org/paper/ca6fb9d804aa339c0ba686545ddb78d4c5e45e02) | 2023-09-21 | 1 | {'name': 'ArXiv', 'volume': 'abs/2309.12207'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [GPSINDy: Data-Driven Discovery of Equations of Motion](https://www.semanticscholar.org/paper/7aa4950045a9a790857d169f999a479da147a3f3) | 2023-09-20 | 0 | {'name': 'ArXiv', 'volume': 'abs/2309.11076'} | {'id': '1901e811-ee72-4b20-8f7e-de08cd395a10', 'name': 'arXiv.org', 'alternate\_names': ['ArXiv'], 'issn': '2331-8422', 'url': 'https://arxiv.org'} |
-| [Symbolic regression via neural networks.](https://www.semanticscholar.org/paper/eddffa1f2cf18c7ca4edbdaf01fd805f415aa4b8) | 2023-08-01 | 2 | {'name': 'Chaos', 'volume': '33 8'} | {'id': '30c0ded7-c8b4-473c-bbc0-f237234ac1a6', 'name': 'Chaos', 'type': 'journal', 'issn': '1054-1500', 'url': 'http://chaos.aip.org/', 'alternate\_urls': ['https://aip.scitation.org/journal/cha']} |
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
Table of Contents
+ 1. Search Query
+ 2. Symbolic regression articles and citations over time
+ 3. Most cited articles on Symbolic regression
+ 4. Latest articles on Symbolic regression
+
+
+
+
1. Search query
+ ((symbolic regression) + dynamics)
+
+
+
+
2. Symbolic regression articles and citations over time
+
+
+
+
+
+
+
3. Most cited articles on Symbolic regression
+
+
+
+
+
4. Latest articles on Symbolic regression
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/assets/All.png b/docs/assets/All.png
index e8be2be99cace8af17d9c935facd444dbd04cc18..ee04d55dab2a1d88e2fe1fed7f63555a356babf0 100644
GIT binary patch
literal 48741
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
literal 48566
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