Skip to content
Snippets Groups Projects
Commit 46a07e84 authored by Nicolas Barthes's avatar Nicolas Barthes
Browse files

updated .bib refs

parent 826b619c
No related branches found
No related tags found
No related merge requests found
......@@ -56,5 +56,5 @@ import json
import joblib
# import pickle as pkl
# from hyperopt import fmin, hp, tpe, Trials, space_eval, STATUS_OK, anneal
from hyperopt import fmin, hp, tpe, Trials, space_eval, STATUS_OK, anneal
st.set_option('deprecation.showPyplotGlobalUse', False)
......@@ -20,3 +20,81 @@
journal = {Journal of Machine Learning Research},
year = {2011},
}
@Article{BellonMaurel2010,
author = {Bellon-Maurel, Véronique and Fernandez-Ahumada, Elvira and Palagos, Bernard and Roger, Jean-Michel and McBratney, Alex},
date = {2010-10},
journal = {TrAC Trends in Analytical Chemistry},
title = {Critical review of chemometric indicators commonly used for assessing the quality of the prediction of soil attributes by NIR spectroscopy},
doi = {10.1016/j.trac.2010.05.006},
issn = {0165-9936},
number = {9},
pages = {1073--1081},
volume = {29},
groups = {NIRS_Workflow},
publisher = {Elsevier BV},
}
@Article{Mejia2017,
author = {Mejia, Amanda F. and Nebel, Mary Beth and Eloyan, Ani and Caffo, Brian and Lindquist, Martin A.},
date = {2017-02},
journal = {Biostatistics},
title = {PCA leverage: outlier detection for high-dimensional functional magnetic resonance imaging data},
doi = {10.1093/biostatistics/kxw050},
issn = {1468-4357},
number = {3},
pages = {521--536},
volume = {18},
groups = {NIRS_Workflow},
publisher = {Oxford University Press (OUP)},
}
@Article{Wold2001,
author = {Wold, Svante and Sjöström, Michael and Eriksson, Lennart},
date = {2001-10},
journal = {Chemometrics and Intelligent Laboratory Systems},
title = {PLS-regression: a basic tool of chemometrics},
doi = {10.1016/s0169-7439(01)00155-1},
issn = {0169-7439},
number = {2},
pages = {109--130},
volume = {58},
groups = {NIRS_Workflow},
publisher = {Elsevier BV},
}
@Article{Roger2011,
author = {Roger, J.M. and Palagos, B. and Bertrand, D. and Fernandez-Ahumada, E.},
date = {2011-04},
journal = {Chemometrics and Intelligent Laboratory Systems},
title = {CovSel: Variable selection for highly multivariate and multi-response calibration},
doi = {10.1016/j.chemolab.2010.10.003},
issn = {0169-7439},
number = {2},
pages = {216--223},
volume = {106},
groups = {NIRS_Workflow},
publisher = {Elsevier BV},
}
@Article{Yu2023,
author = {Yu, Bo and Yan, Changxiang and Yuan, Jing and Ding, Ning and Chen, Zhiwei},
date = {2023-05},
journal = {Spectrochimica Acta Part A: Molecular and Biomolecular Spectroscopy},
title = {Prediction of soil properties based on characteristic wavelengths with optimal spectral resolution by using Vis-NIR spectroscopy},
doi = {10.1016/j.saa.2023.122452},
issn = {1386-1425},
pages = {122452},
volume = {293},
groups = {NIRS_Workflow},
publisher = {Elsevier BV},
}
@Article{Wold1966,
author = {Herman Wold},
date = {1966},
journal = {Multivariate analysis},
title = {Estimation of principal components and related models by iterative least squares},
series = {Academic Press},
groups = {NIRS_Workflow},
}
......@@ -195,16 +195,16 @@ latex_report = report('sample', 'predict',)
def compile_latex():
# path to pdflatex
pdflatex = "C:/Donnees/Logiciels/Papps/PortableApps/Notepad++Portable/LaTEX/texmfs/install/miktex/bin/"
pdflatex_path = "C:/Donnees/Logiciels/Papps/PortableApps/Notepad++Portable/LaTEX/texmfs/install/miktex/bin/"
filename = 'report.tex'
# run pdflatex with bibtex compilation (2nd run)
proc = subprocess.Popen([pdflatex + 'pdflatex.exe', filename])
proc = subprocess.Popen([pdflatex_path + 'pdflatex.exe', filename])
proc.communicate()
proc = subprocess.Popen([r'C:\Donnees\Logiciels\Papps\PortableApps\Notepad++Portable\LaTEX\texmfs\install\miktex\bin\bibtex.exe', filename[:-4]])
proc = subprocess.Popen([pdflatex_path + 'bibtex.exe', filename[:-4]])
proc.communicate()
proc = subprocess.Popen([r'C:\Donnees\Logiciels\Papps\PortableApps\Notepad++Portable\LaTEX\texmfs\install\miktex\bin\pdflatex.exe', filename])
proc = subprocess.Popen([pdflatex_path + 'pdflatex.exe', filename])
proc.communicate()
proc = subprocess.Popen([r'C:\Donnees\Logiciels\Papps\PortableApps\Notepad++Portable\LaTEX\texmfs\install\miktex\bin\pdflatex.exe', filename])
proc = subprocess.Popen([pdflatex_path + 'pdflatex.exe', filename])
proc.communicate()
# remove pdflatex compilation files
os.unlink(filename[:-4] + '.log')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment