Michael-Geis commited on
Commit
b7b607b
1 Parent(s): 283e21a

got 20k sp and ap papers and cleaned them

Browse files
Files changed (1) hide show
  1. collection.ipynb +299 -0
collection.ipynb CHANGED
@@ -35636,6 +35636,305 @@
35636
  "source": [
35637
  "lib.clean_lib.sample(10)"
35638
  ]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35639
  }
35640
  ],
35641
  "metadata": {
 
35636
  "source": [
35637
  "lib.clean_lib.sample(10)"
35638
  ]
35639
+ },
35640
+ {
35641
+ "attachments": {},
35642
+ "cell_type": "markdown",
35643
+ "metadata": {},
35644
+ "source": [
35645
+ "## 06.17.23"
35646
+ ]
35647
+ },
35648
+ {
35649
+ "cell_type": "code",
35650
+ "execution_count": 9,
35651
+ "metadata": {},
35652
+ "outputs": [],
35653
+ "source": [
35654
+ "## We are going to pull a library of the most recent 20k articles from pde and spectral theory.\n",
35655
+ "\n",
35656
+ "import util\n",
35657
+ "import pandas as pd\n",
35658
+ "import numpy as np\n",
35659
+ "from library_class import Library\n",
35660
+ "\n",
35661
+ "lib = Library()\n",
35662
+ "lib.load_from_query(query_string='cat:math.AP OR math.SP',max_results=2e4)\n",
35663
+ "\n",
35664
+ "\n"
35665
+ ]
35666
+ },
35667
+ {
35668
+ "cell_type": "code",
35669
+ "execution_count": 11,
35670
+ "metadata": {},
35671
+ "outputs": [],
35672
+ "source": [
35673
+ "raw_lib = lib.raw_lib\n",
35674
+ "raw_lib.to_parquet('./data/APSP.parquet')"
35675
+ ]
35676
+ },
35677
+ {
35678
+ "cell_type": "code",
35679
+ "execution_count": 12,
35680
+ "metadata": {},
35681
+ "outputs": [],
35682
+ "source": [
35683
+ "## Is the list information preserved?\n",
35684
+ "\n",
35685
+ "df = pd.read_parquet('./data/APSP.parquet')"
35686
+ ]
35687
+ },
35688
+ {
35689
+ "cell_type": "code",
35690
+ "execution_count": 20,
35691
+ "metadata": {},
35692
+ "outputs": [
35693
+ {
35694
+ "data": {
35695
+ "text/html": [
35696
+ "<div>\n",
35697
+ "<style scoped>\n",
35698
+ " .dataframe tbody tr th:only-of-type {\n",
35699
+ " vertical-align: middle;\n",
35700
+ " }\n",
35701
+ "\n",
35702
+ " .dataframe tbody tr th {\n",
35703
+ " vertical-align: top;\n",
35704
+ " }\n",
35705
+ "\n",
35706
+ " .dataframe thead th {\n",
35707
+ " text-align: right;\n",
35708
+ " }\n",
35709
+ "</style>\n",
35710
+ "<table border=\"1\" class=\"dataframe\">\n",
35711
+ " <thead>\n",
35712
+ " <tr style=\"text-align: right;\">\n",
35713
+ " <th></th>\n",
35714
+ " <th>title</th>\n",
35715
+ " <th>summary</th>\n",
35716
+ " <th>authors</th>\n",
35717
+ " <th>primary_category</th>\n",
35718
+ " <th>categories</th>\n",
35719
+ " <th>hyph_in_summary</th>\n",
35720
+ " <th>hyph_in_title</th>\n",
35721
+ " <th>msc_tags</th>\n",
35722
+ " </tr>\n",
35723
+ " </thead>\n",
35724
+ " <tbody>\n",
35725
+ " <tr>\n",
35726
+ " <th>0</th>\n",
35727
+ " <td>The Laplace spectrum on conformally compact ma...</td>\n",
35728
+ " <td>We consider the spectrum of the Laplace operat...</td>\n",
35729
+ " <td>[Nelia Charalambous, Julie Rowlett]</td>\n",
35730
+ " <td>math.SP</td>\n",
35731
+ " <td>[math.SP, 58c40]</td>\n",
35732
+ " <td>None</td>\n",
35733
+ " <td>None</td>\n",
35734
+ " <td>None</td>\n",
35735
+ " </tr>\n",
35736
+ " <tr>\n",
35737
+ " <th>1</th>\n",
35738
+ " <td>On the inviscid limit connecting Brinkman's an...</td>\n",
35739
+ " <td>Several recent papers have addressed modelling...</td>\n",
35740
+ " <td>[Charles Elbar, Jakub Skrzeczkowski]</td>\n",
35741
+ " <td>math.AP</td>\n",
35742
+ " <td>[math.AP, 35K45, 35K65, 35J60, 35Q92, 92C10]</td>\n",
35743
+ " <td>[power-law, multi-phase]</td>\n",
35744
+ " <td>None</td>\n",
35745
+ " <td>[Initial value problems for second-order parab...</td>\n",
35746
+ " </tr>\n",
35747
+ " <tr>\n",
35748
+ " <th>2</th>\n",
35749
+ " <td>A sparse approximation of the Lieb functional ...</td>\n",
35750
+ " <td>The aim of this paper is to present new sparsi...</td>\n",
35751
+ " <td>[Virginie Ehrlacher, Luca Nenna]</td>\n",
35752
+ " <td>math-ph</td>\n",
35753
+ " <td>[math-ph, math.MP, math.OC, math.SP]</td>\n",
35754
+ " <td>[so-called, anti-symmetric, Levy-Lieb, trace-c...</td>\n",
35755
+ " <td>None</td>\n",
35756
+ " <td>None</td>\n",
35757
+ " </tr>\n",
35758
+ " <tr>\n",
35759
+ " <th>3</th>\n",
35760
+ " <td>Stationarity and Fredholm theory in subextrema...</td>\n",
35761
+ " <td>In a recent paper, we proved that solutions to...</td>\n",
35762
+ " <td>[Oliver Petersen, András Vasy]</td>\n",
35763
+ " <td>math.AP</td>\n",
35764
+ " <td>[math.AP, gr-qc, math.DG, 35L05, 35P25, 58J45,...</td>\n",
35765
+ " <td>[non-standard, Kerr-de]</td>\n",
35766
+ " <td>[Kerr-de]</td>\n",
35767
+ " <td>[Wave equation]</td>\n",
35768
+ " </tr>\n",
35769
+ " <tr>\n",
35770
+ " <th>4</th>\n",
35771
+ " <td>Remarks on paper \"Two-term spectral asymptotic...</td>\n",
35772
+ " <td>In this note, by pointing out several serious ...</td>\n",
35773
+ " <td>[Genqian Liu]</td>\n",
35774
+ " <td>math.SP</td>\n",
35775
+ " <td>[math.SP, math-ph, math.AP, math.DG, math.MP]</td>\n",
35776
+ " <td>None</td>\n",
35777
+ " <td>[Two-term]</td>\n",
35778
+ " <td>None</td>\n",
35779
+ " </tr>\n",
35780
+ " </tbody>\n",
35781
+ "</table>\n",
35782
+ "</div>"
35783
+ ],
35784
+ "text/plain": [
35785
+ " title ... msc_tags\n",
35786
+ "0 The Laplace spectrum on conformally compact ma... ... None\n",
35787
+ "1 On the inviscid limit connecting Brinkman's an... ... [Initial value problems for second-order parab...\n",
35788
+ "2 A sparse approximation of the Lieb functional ... ... None\n",
35789
+ "3 Stationarity and Fredholm theory in subextrema... ... [Wave equation]\n",
35790
+ "4 Remarks on paper \"Two-term spectral asymptotic... ... None\n",
35791
+ "\n",
35792
+ "[5 rows x 8 columns]"
35793
+ ]
35794
+ },
35795
+ "execution_count": 20,
35796
+ "metadata": {},
35797
+ "output_type": "execute_result"
35798
+ }
35799
+ ],
35800
+ "source": [
35801
+ "lib.clean_library()\n",
35802
+ "lib.clean_lib.head()"
35803
+ ]
35804
+ },
35805
+ {
35806
+ "cell_type": "code",
35807
+ "execution_count": 21,
35808
+ "metadata": {},
35809
+ "outputs": [],
35810
+ "source": [
35811
+ "pd.set_option('display.max_colwidth', 0)"
35812
+ ]
35813
+ },
35814
+ {
35815
+ "cell_type": "code",
35816
+ "execution_count": 22,
35817
+ "metadata": {},
35818
+ "outputs": [
35819
+ {
35820
+ "data": {
35821
+ "text/html": [
35822
+ "<div>\n",
35823
+ "<style scoped>\n",
35824
+ " .dataframe tbody tr th:only-of-type {\n",
35825
+ " vertical-align: middle;\n",
35826
+ " }\n",
35827
+ "\n",
35828
+ " .dataframe tbody tr th {\n",
35829
+ " vertical-align: top;\n",
35830
+ " }\n",
35831
+ "\n",
35832
+ " .dataframe thead th {\n",
35833
+ " text-align: right;\n",
35834
+ " }\n",
35835
+ "</style>\n",
35836
+ "<table border=\"1\" class=\"dataframe\">\n",
35837
+ " <thead>\n",
35838
+ " <tr style=\"text-align: right;\">\n",
35839
+ " <th></th>\n",
35840
+ " <th>title</th>\n",
35841
+ " <th>summary</th>\n",
35842
+ " <th>authors</th>\n",
35843
+ " <th>primary_category</th>\n",
35844
+ " <th>categories</th>\n",
35845
+ " <th>hyph_in_summary</th>\n",
35846
+ " <th>hyph_in_title</th>\n",
35847
+ " <th>msc_tags</th>\n",
35848
+ " </tr>\n",
35849
+ " </thead>\n",
35850
+ " <tbody>\n",
35851
+ " <tr>\n",
35852
+ " <th>0</th>\n",
35853
+ " <td>The Laplace spectrum on conformally compact manifolds</td>\n",
35854
+ " <td>We consider the spectrum of the Laplace operator acting on LATEX over a conformally compact manifold for LATEX We prove that for LATEX this spectrum always contains an open region of the complex plane. We further show that the spectrum is contained within a certain parabolic region of the complex plane. These regions depend on the value of LATEX the dimension of the manifold, and the values of the sectional curvatures approaching the boundary.</td>\n",
35855
+ " <td>[Nelia Charalambous, Julie Rowlett]</td>\n",
35856
+ " <td>math.SP</td>\n",
35857
+ " <td>[math.SP, 58c40]</td>\n",
35858
+ " <td>None</td>\n",
35859
+ " <td>None</td>\n",
35860
+ " <td>None</td>\n",
35861
+ " </tr>\n",
35862
+ " <tr>\n",
35863
+ " <th>1</th>\n",
35864
+ " <td>On the inviscid limit connecting Brinkman's and Darcy's models of tissue growth with nonlinear pressure</td>\n",
35865
+ " <td>Several recent papers have addressed modelling of the tissue growth by the multi-phase models where the velocity is related to the pressure by one of the physical laws (Stoke's, Brinkman's or Darcy's). While each of these models has been extensively studied, not so much is known about the connection between them. In the recent paper (arXiv:2303.10620), assuming the linear form of the pressure, the Authors connected two multi-phase models by an inviscid limit: the viscoelastic one (of Brinkman's type) and the inviscid one (of Darcy's type). Here, we prove that the same is true for a nonlinear, power-law pressure. The new ingredient is that we use relation between the pressure LATEX and the Brinkman potential LATEX to deduce compactness in space of LATEX from the compactness in space of LATEX</td>\n",
35866
+ " <td>[Charles Elbar, Jakub Skrzeczkowski]</td>\n",
35867
+ " <td>math.AP</td>\n",
35868
+ " <td>[math.AP, 35K45, 35K65, 35J60, 35Q92, 92C10]</td>\n",
35869
+ " <td>[power-law, multi-phase]</td>\n",
35870
+ " <td>None</td>\n",
35871
+ " <td>[Initial value problems for second-order parabolic systems]</td>\n",
35872
+ " </tr>\n",
35873
+ " <tr>\n",
35874
+ " <th>2</th>\n",
35875
+ " <td>A sparse approximation of the Lieb functional with moment constraints</td>\n",
35876
+ " <td>The aim of this paper is to present new sparsity results about the so-called Lieb functional, which is a key quantity in Density Functional Theory for electronic structure calculations for molecules. The Lieb functional was actually shown by Lieb to be a convexification of the so-called Levy-Lieb functional. Given an electronic density for a system of LATEX electrons, which may be seen as a probability density on LATEX the value of the Lieb functional for this density is defined as the solution of a quantum multi-marginal optimal transport problem, which reads as a minimization problem defined on the set of trace-class operators acting on the space of electronic wave-functions that are anti-symmetric LATEX functions of LATEX with partial trace equal to the prescribed electronic density. We introduce a relaxation of this quantum optimal transport problem where the full partial trace constraint is replaced by a finite number of moment constraints on the partial trace of the set of operators. We show that, under mild assumptions on the electronic density, there exist sparse minimizers to the resulting moment constrained approximation of the Lieb (MCAL) functional that read as operators with rank at most equal to the number of moment constraints. We also prove under appropriate assumptions on the set of moment functions that the value of the MCAL functional converges to the value of the exact Lieb functional as the number of moments go to infinity. We also prove some rates of convergence on the associated approximation of the ground state energy. We finally study the mathematical properties of the associated dual problem.</td>\n",
35877
+ " <td>[Virginie Ehrlacher, Luca Nenna]</td>\n",
35878
+ " <td>math-ph</td>\n",
35879
+ " <td>[math-ph, math.MP, math.OC, math.SP]</td>\n",
35880
+ " <td>[so-called, anti-symmetric, Levy-Lieb, trace-class, multi-marginal, wave-functions]</td>\n",
35881
+ " <td>None</td>\n",
35882
+ " <td>None</td>\n",
35883
+ " </tr>\n",
35884
+ " <tr>\n",
35885
+ " <th>3</th>\n",
35886
+ " <td>Stationarity and Fredholm theory in subextremal Kerr-de Sitter spacetimes</td>\n",
35887
+ " <td>In a recent paper, we proved that solutions to linear wave equations in a subextremal Kerr-de Sitter spacetime have asymptotic expansions in quasinormal modes up to a decay order given by the normally hyperbolic trapping, extending the existing results. One central ingredient in the argument was a new definition of quasinormal modes, where a non-standard choice of stationary Killing vector field had to be used in order for the Fredholm theory to be applicable. In this paper, we show that there is in fact a variety of allowed choices of stationary Killing vector fields. In particular, the horizon Killing vector fields work for the analysis, in which case one of the corresponding ergoregions is completely removed.</td>\n",
35888
+ " <td>[Oliver Petersen, András Vasy]</td>\n",
35889
+ " <td>math.AP</td>\n",
35890
+ " <td>[math.AP, gr-qc, math.DG, 35L05, 35P25, 58J45, 83C30]</td>\n",
35891
+ " <td>[non-standard, Kerr-de]</td>\n",
35892
+ " <td>[Kerr-de]</td>\n",
35893
+ " <td>[Wave equation]</td>\n",
35894
+ " </tr>\n",
35895
+ " <tr>\n",
35896
+ " <th>4</th>\n",
35897
+ " <td>Remarks on paper \"Two-term spectral asymptotics in linear elasticity''</td>\n",
35898
+ " <td>In this note, by pointing out several serious mistakes in we show that the conclusions published by Matteo Capoferri, Leonid Friedlander, Michael Levitin and Dmitri Vassiliev (J Geom Anal (2023)33:242) are completely wrong. Then, we explain the correctness of proof of Theorem 1.1 in our paper by giving some remarks and putting the whole proof in Appendix (see also and ).</td>\n",
35899
+ " <td>[Genqian Liu]</td>\n",
35900
+ " <td>math.SP</td>\n",
35901
+ " <td>[math.SP, math-ph, math.AP, math.DG, math.MP]</td>\n",
35902
+ " <td>None</td>\n",
35903
+ " <td>[Two-term]</td>\n",
35904
+ " <td>None</td>\n",
35905
+ " </tr>\n",
35906
+ " </tbody>\n",
35907
+ "</table>\n",
35908
+ "</div>"
35909
+ ],
35910
+ "text/plain": [
35911
+ " title ... msc_tags\n",
35912
+ "0 The Laplace spectrum on conformally compact manifolds ... None \n",
35913
+ "1 On the inviscid limit connecting Brinkman's and Darcy's models of tissue growth with nonlinear pressure ... [Initial value problems for second-order parabolic systems]\n",
35914
+ "2 A sparse approximation of the Lieb functional with moment constraints ... None \n",
35915
+ "3 Stationarity and Fredholm theory in subextremal Kerr-de Sitter spacetimes ... [Wave equation] \n",
35916
+ "4 Remarks on paper \"Two-term spectral asymptotics in linear elasticity'' ... None \n",
35917
+ "\n",
35918
+ "[5 rows x 8 columns]"
35919
+ ]
35920
+ },
35921
+ "execution_count": 22,
35922
+ "metadata": {},
35923
+ "output_type": "execute_result"
35924
+ }
35925
+ ],
35926
+ "source": [
35927
+ "lib.clean_lib.head()"
35928
+ ]
35929
+ },
35930
+ {
35931
+ "cell_type": "code",
35932
+ "execution_count": 23,
35933
+ "metadata": {},
35934
+ "outputs": [],
35935
+ "source": [
35936
+ "lib.clean_lib.to_parquet('./data/clean_APSP.parquet')"
35937
+ ]
35938
  }
35939
  ],
35940
  "metadata": {