shaocongma commited on
Commit
64fee17
1 Parent(s): b730fc0
latex_templates/example_references.bib CHANGED
@@ -4,17 +4,6 @@
4
  booktitle={International Conference on Machine Learning},
5
  pages={6565--6574},
6
  year={2020},
7
- organization={PMLR}
8
- }
9
-
10
- @inproceedings{ma2020variance,
11
- author = {Ma, Shaocong and Zhou, Yi and Zou, Shaofeng},
12
- booktitle = {Advances in Neural Information Processing Systems},
13
- editor = {H. Larochelle and M. Ranzato and R. Hadsell and M.F. Balcan and H. Lin},
14
- pages = {14796--14806},
15
- publisher = {Curran Associates, Inc.},
16
- title = {Variance-Reduced Off-Policy TDC Learning: Non-Asymptotic Convergence Analysis},
17
- url = {https://proceedings.neurips.cc/paper_files/paper/2020/file/a992995ef4f0439b258f2360dbb85511-Paper.pdf},
18
- volume = {33},
19
- year = {2020}
20
- }
 
4
  booktitle={International Conference on Machine Learning},
5
  pages={6565--6574},
6
  year={2020},
7
+ organization={PMLR},
8
+ abstract={Although SGD with random reshuffle has been widely-used in machine learning applications, there is a limited understanding of how model characteristics affect the convergence of the algorithm. In this work, we introduce model incoherence to characterize the diversity of model characteristics and study its impact on convergence of SGD with random reshuffle under weak strong convexity. Specifically, minimizer incoherence measures the discrepancy between the global minimizers of a sample loss and those of the total loss and affects the convergence error of SGD with random reshuffle. In particular, we show that the variable sequence generated by SGD with random reshuffle converges to a certain global minimizer of the total loss under full minimizer coherence. The other curvature incoherence measures the quality of condition numbers of the sample losses and determines the convergence rate of SGD. With model incoherence, our results show that SGD has a faster convergence rate and smaller convergence error under random reshuffle than those under random sampling, and hence provide justifications to the superior practical performance of SGD with random reshuffle.}
9
+ }
 
 
 
 
 
 
 
 
 
 
 
utils/references.py CHANGED
@@ -42,10 +42,13 @@ def search_paper_abstract(title):
42
  pg = ProxyGenerator()
43
  success = pg.FreeProxies() #pg.ScraperAPI("921b16f94d701308b9d9b4456ddde155")
44
  if success:
45
- scholarly.use_proxy(pg)
46
- # input the title of a paper, return its abstract
47
- search_query = scholarly.search_pubs(title)
48
- found_paper = next(search_query)
 
 
 
49
  else:
50
  return ""
51
  # raise RuntimeError("ScraperAPI fails.")
 
42
  pg = ProxyGenerator()
43
  success = pg.FreeProxies() #pg.ScraperAPI("921b16f94d701308b9d9b4456ddde155")
44
  if success:
45
+ try:
46
+ scholarly.use_proxy(pg)
47
+ # input the title of a paper, return its abstract
48
+ search_query = scholarly.search_pubs(title)
49
+ found_paper = next(search_query)
50
+ except:
51
+ return ""
52
  else:
53
  return ""
54
  # raise RuntimeError("ScraperAPI fails.")