diff --git a/js/myscripts.js b/js/myscripts.js
index 22b17a6..ad0e5f2 100644
--- a/js/myscripts.js
+++ b/js/myscripts.js
@@ -229,8 +229,8 @@ $(document).ready(function(){
if (res[i].entryTags.hasOwnProperty('pdf')){
link_string = link_string + ' ';
}
- if (res[i].entryTags.hasOwnProperty('URL')){
- link_string = link_string + ' ';
+ if (res[i].entryTags.hasOwnProperty('url')){
+ link_string = link_string + ' ';
}
link_string += '[BibTex]';
@@ -267,9 +267,9 @@ $(document).ready(function(){
publi_string = authors_string + '.
' + res[i].entryTags.title + '.
' + res[i].entryTags.journal + ', Vol. ' + res[i].entryTags.volume + num_string + pages_string + ', ' + res[i].entryTags.year +'.
' + link_string;
$("#nat_journals").append('
| [' + cptIntNatArticle + '] | ' + publi_string + ' |
');
if (res[i].entryTags.hasOwnProperty('number')){
- $("#nat_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n number = {' + res[i].entryTags.number + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#nat_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n number = {' + res[i].entryTags.number + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}else{
- $("#nat_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#nat_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}
}else{
// article
@@ -294,9 +294,9 @@ $(document).ready(function(){
publi_string = authors_string + '.
' + res[i].entryTags.title + '.
' + res[i].entryTags.journal + vol_string + num_string + pages_string + ', ' + res[i].entryTags.year +'.
' + link_string;
$("#int_journals").append('| [' + cptIntArticle + '] | ' + publi_string + ' |
');
if (res[i].entryTags.hasOwnProperty('number')){
- $("#int_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n number = {' + res[i].entryTags.number + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#int_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n number = {' + res[i].entryTags.number + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}else{
- $("#int_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#int_journals").append(' | \n@article{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n journal = {' + res[i].entryTags.journal + '},\n volume = {' + res[i].entryTags.volume + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}
}
}else if (res[i].entryType == 'inproceedings'){
@@ -305,19 +305,19 @@ $(document).ready(function(){
cptNatConf++;
publi_string = authors_string + '.
' + res[i].entryTags.title + '.
' + res[i].entryTags.booktitle + ', ' + res[i].entryTags.address + ', ' + res[i].entryTags.year +'.
' + link_string;
$("#nat_confs").append('| [' + cptNatConf + '] | ' + publi_string + ' |
');
- $("#nat_confs").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#nat_confs").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}else if ((res[i].entryTags.hasOwnProperty('workshop')) && (res[i].entryTags.workshop == 'True')){
// international workshop
cptIntWork++;
publi_string = authors_string + '.
' + res[i].entryTags.title + '.
' + res[i].entryTags.booktitle + ', ' + res[i].entryTags.address + ', ' + res[i].entryTags.year +'.
' + link_string;
$("#int_workshops").append('| [' + cptIntWork + '] | ' + publi_string + ' |
');
- $("#int_workshops").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#int_workshops").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}else{
// international conf
cptIntConf++;
publi_string = authors_string + '.
' + res[i].entryTags.title + '.
' + res[i].entryTags.booktitle + ', ' + res[i].entryTags.address + ', ' + res[i].entryTags.year +'.
' + link_string;
$("#int_confs").append('| [' + cptIntConf + '] | ' + publi_string + ' |
');
- $("#int_confs").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.URL + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
+ $("#int_confs").append(' | \n@inproceedings{' + res[i].citationKey + ',\n author = {' + res[i].entryTags.author + '},\n title = {' + res[i].entryTags.title + '},\n booktitle = {' + res[i].entryTags.booktitle + '},\n address = {' + res[i].entryTags.address + '},\n pages = {' + res[i].entryTags.pages + '},\n url = {' + res[i].entryTags.url + '},\n year = {'+ res[i].entryTags.year + '}\n}' + ' |
');
}
}else if (res[i].entryType == 'inbook'){
// book chapter
@@ -392,7 +392,7 @@ $(document).ready(function(){
scrollTop: $(hash).offset().top
}, 800, function(){
- // Add hash (#) to URL when done scrolling (default click behavior)
+ // Add hash (#) to url when done scrolling (default click behavior)
window.location.hash = hash;
});
} // End if
diff --git a/publis/msd.bib b/publis/msd.bib
index 416c94e..a505345 100644
--- a/publis/msd.bib
+++ b/publis/msd.bib
@@ -8,7 +8,7 @@ @article{meyer2025deepscem
number = {9},
pages = {e70032},
doi = {https://doi.org/10.1111/boc.70032},
- URL = {https://onlinelibrary.wiley.com/doi/abs/10.1111/boc.70032},
+ url = {https://onlinelibrary.wiley.com/doi/abs/10.1111/boc.70032},
eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1111/boc.70032},
year = {2025},
publisher = {Wiley}
@@ -21,7 +21,7 @@ @article{Rimpot2025SelfSupervisedLearning
volume = {2},
number = {4},
pages = {},
- URL = {https://doi.org/10.1029/2025JH000958},
+ url = {https://doi.org/10.1029/2025JH000958},
year = {2025},
publisher = {undefined}
}
@@ -33,7 +33,7 @@ @article{Wenger2025Multitemporalandmultimodal
volume = {17},
number = {1},
pages = {1-11},
- URL = {https://doi.org/10.1080/2150704X.2025.2586169},
+ url = {https://doi.org/10.1080/2150704X.2025.2586169},
year = {2025},
publisher = {undefined}
}
@@ -45,7 +45,7 @@ @article{giurgi2025ijar
volume = {186},
number = {},
pages = {109508},
- URL = {https://doi.org/10.1016/j.ijar.2025.109508},
+ url = {https://doi.org/10.1016/j.ijar.2025.109508},
year = {2025},
publisher = {Elsevier},
code = {https://github.com/vasigiurgi/conflict-management-edl}
@@ -58,7 +58,7 @@ @article{grimmer2025automatic
volume = {190},
number = {1},
pages = {106460},
- URL = {https://doi.org/10.1016/j.envsoft.2025.106460},
+ url = {https://doi.org/10.1016/j.envsoft.2025.106460},
year = {2025},
code = {https://github.com/g-grimmer/RiverDetectWood},
publisher = {Elsevier}
@@ -71,7 +71,7 @@ @article{ismail-fawaz2025DeepGenMetrics
volume = {254},
number = {3},
pages = {104337},
- URL = {https://doi.org/10.1016/j.cviu.2025.104337},
+ url = {https://doi.org/10.1016/j.cviu.2025.104337},
year = {2025},
code = {https://github.com/MSD-IRIMAS/Evaluating-HMG}
}
@@ -81,7 +81,7 @@ @article{ismail-fawaz2025LookIntoTheLITE
title = {Look into the lite in deep learning for time series classification},
journal = {International Journal of Data Science and Analytics},
pages = {1--21},
- URL = {https://doi.org/10.1007/s41060-024-00708-5},
+ url = {https://doi.org/10.1007/s41060-024-00708-5},
year = {2025},
code = {https://github.com/MSD-IRIMAS/LITE}
}
@@ -93,7 +93,7 @@ @article{middlehurst2024aeon
volume = {25},
number = {289},
pages = {1--10},
- URL = {http://jmlr.org/papers/v25/23-1444.html},
+ url = {http://jmlr.org/papers/v25/23-1444.html},
year = {2024},
code = {https://github.com/aeon-toolkit/aeon},
webpage={https://www.aeon-toolkit.org/en/stable/}
@@ -106,7 +106,7 @@ @article{hamri2024invoice
volume = {2024},
number = {1},
pages = {1-15},
- URL = {https://doi.org/10.1155/2024/7599415},
+ url = {https://doi.org/10.1155/2024/7599415},
year = {2024},
publisher = {Wiley}
}
@@ -118,7 +118,7 @@ @article{Rimpot2025Selfsupervisedlearning
volume = {240},
number = {1},
pages = {1-12},
- URL = {https://doi.org/10.1093/gji/ggae361},
+ url = {https://doi.org/10.1093/gji/ggae361},
year = {2025},
publisher = {undefined}
}
@@ -130,7 +130,7 @@ @article{Foumani2024Deeplearningtime
year = {2024},
pages = {},
volume = {},
- URL = {https://doi.org/10.1145/3649448}
+ url = {https://doi.org/10.1145/3649448}
}
@article{Pialla2023Timeseriesadversarial,
@@ -140,7 +140,7 @@ @article{Pialla2023Timeseriesadversarial
year = {2023},
pages = {},
volume={},
- URL = {https://doi.org/10.1007/s41060-023-00438-0}
+ url = {https://doi.org/10.1007/s41060-023-00438-0}
}
@article{terefe2023estimating,
@@ -152,7 +152,7 @@ @article{terefe2023estimating
pages={4967--5004},
year={2023},
code={https://github.com/tsegaterefe/Estimating-Time-Series-Averages-from-Latent-Space-of-Multi-tasking-Neural-Networks/tree/main},
- URL = {https://doi.org/10.1007/s10115-023-01927-1},
+ url = {https://doi.org/10.1007/s10115-023-01927-1},
publisher={Springer}
}
@@ -176,7 +176,7 @@ @article{Wenger2022MultimodalandMultitemporal
volume = {15},
number = {1},
pages = {151},
- URL = {https://doi.org/10.3390/rs15010151}
+ url = {https://doi.org/10.3390/rs15010151}
}
@article{BenHamida2022Weakly,
@@ -186,7 +186,7 @@ @article{BenHamida2022Weakly
volume = {133},
number = {},
pages = {102407},
- URL = {https://doi.org/10.1016/j.artmed.2022.102407},
+ url = {https://doi.org/10.1016/j.artmed.2022.102407},
year = {2022},
publisher = {Elsevier}
}
@@ -199,7 +199,7 @@ @article{Wenger2022UNetfeature
volume = {43},
number = {6},
pages = {1983--2011},
- URL = {https://doi.org/10.1080/01431161.2022.2054295}
+ url = {https://doi.org/10.1080/01431161.2022.2054295}
}
@article{Maier-Hein2022Surgicaldatascience,
@@ -209,7 +209,7 @@ @article{Maier-Hein2022Surgicaldatascience
year = {2022},
volume = {76},
pages = {102306},
- URL = {https://doi.org/10.1016/j.media.2021.102306}
+ url = {https://doi.org/10.1016/j.media.2021.102306}
}
@article{Blanchard2022Rcool,
@@ -219,7 +219,7 @@ @article{Blanchard2022Rcool
volume = {2022},
number = {1},
pages = {1-10},
- URL = {https://doi.org/10.1155/2022/5667223},
+ url = {https://doi.org/10.1155/2022/5667223},
year = {2022},
publisher = {Hindawi}
}
@@ -231,7 +231,7 @@ @article{Cuculovic2022SemanticsJats
volume = {52},
number = {6},
pages = {1496-1516},
- URL = {https://doi.org/10.1002/spe.3074},
+ url = {https://doi.org/10.1002/spe.3074},
year = {2022},
publisher = {Wiley Online Library}
}
@@ -243,7 +243,7 @@ @article{Lafabregue2021Endtoend
year = {2021},
pages = {1--53},
volume={36},
- URL = {http://doi.org/10.1007/s10618-021-00796-y}
+ url = {http://doi.org/10.1007/s10618-021-00796-y}
}
@article{hamida2021deep,
@@ -253,7 +253,7 @@ @article{hamida2021deep
volume={136},
pages={104730},
year={2021},
- URL={https://doi.org/10.1016/j.compbiomed.2021.104730},
+ url={https://doi.org/10.1016/j.compbiomed.2021.104730},
publisher={Elsevier}
}
@@ -264,7 +264,7 @@ @article{Bendali-Braham2021Recenttrendsin
year = {2021},
volume = {4},
pages = {100023},
- URL = {https://doi.org/10.1016/j.mlwa.2021.100023}
+ url = {https://doi.org/10.1016/j.mlwa.2021.100023}
}
@article{Merveille2021automaticframeworkfusing,
@@ -274,7 +274,7 @@ @article{Merveille2021automaticframeworkfusing
year = {2021},
volume = {208},
pages = {106157},
- URL = {https://doi.org/10.1016/j.cmpb.2021.106157}
+ url = {https://doi.org/10.1016/j.cmpb.2021.106157}
}
@article{IsmailFawaz2020InceptionTimeFindingAlexNet,
@@ -285,7 +285,7 @@ @article{IsmailFawaz2020InceptionTimeFindingAlexNet
volume = {34},
number = {6},
pages = {1936--1962},
- URL = {https://doi.org/10.1007/s10618-020-00710-y}
+ url = {https://doi.org/10.1007/s10618-020-00710-y}
}
@article{SchaadtGraphbaseddescription,
@@ -299,7 +299,7 @@ @article{SchaadtGraphbaseddescription
file = {ploscompbiol2020:https\://germain-forestier.info/publis/ploscompbiol2020.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1371/journal.pcbi.1007385}
+ url = {https://doi.org/10.1371/journal.pcbi.1007385}
}
@article{Luu2020reviewalignmentbased,
@@ -312,7 +312,7 @@ @article{Luu2020reviewalignmentbased
file = {aire2020.pdf:https\://germain-forestier.info/publis/aire2020.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1007/s10462-019-09712-9}
+ url = {https://doi.org/10.1007/s10462-019-09712-9}
}
@article{waset10010034,
@@ -325,7 +325,7 @@ @article{waset10010034
year = {2019},
pages = {50 - 54},
issn = {eISSN: 1307-6892},
- URL = {https://doi.org/10.5281/zenodo.2571944},
+ url = {https://doi.org/10.5281/zenodo.2571944},
publisher = {World Academy of Science, Engineering and Technology},
index = {Open Science Index 146, 2019},
}
@@ -340,7 +340,7 @@ @article{Pelaccia2019Deconstructingdiagnosticreasoning
volume = {191},
file = {cmaj2019.pdf:https\://germain-forestier.info/publis/cmaj2019.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1503/cmaj.190506}
+ url = {https://doi.org/10.1503/cmaj.190506}
}
@article{IsmailFawaz2019Accurateandinterpretable,
@@ -354,7 +354,7 @@ @article{IsmailFawaz2019Accurateandinterpretable
comment = {https://github.com/hfawaz/ijcars19},
file = {ijcars2019:https\://germain-forestier.info/publis/ijcars2019.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1007/s11548-019-02039-4}
+ url = {https://doi.org/10.1007/s11548-019-02039-4}
}
@article{IsmailFawaz2019Deeplearningtime,
@@ -369,7 +369,7 @@ @article{IsmailFawaz2019Deeplearningtime
file = {dmkd2019.pdf:https\://germain-forestier.info/publis/dmkd2019.pdf:PDF},
keywords = {https://arxiv.org/abs/1809.04356},
timestamp = {4},
- URL = {https://doi.org/10.1007/s10618-019-00619-1}
+ url = {https://doi.org/10.1007/s10618-019-00619-1}
}
@article{DBLP:journals/jbd/ThiryZH18,
@@ -380,7 +380,7 @@ @article{DBLP:journals/jbd/ThiryZH18
pages = {21},
year = {2018},
url = {https://doi.org/10.1186/s40537-018-0132-9},
- URL = {https://doi.org/10.1186/s40537-018-0132-9},
+ url = {https://doi.org/10.1186/s40537-018-0132-9},
timestamp = {Wed, 29 May 2019 09:32:52 +0200},
biburl = {https://dblp.org/rec/journals/jbd/ThiryZH18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
@@ -396,7 +396,7 @@ @article{Grote2018CrowdsourcingHistologicalImage
volume = {38},
file = {tmi2018.pdf:https\://germain-forestier.info/publis/tmi2018.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1109/TMI.2018.2883237}
+ url = {https://doi.org/10.1109/TMI.2018.2883237}
}
@article{Forestier2018Surgicalmotionanalysis,
@@ -409,7 +409,7 @@ @article{Forestier2018Surgicalmotionanalysis
comment = {http://germain-forestier.info/src/aiim2018},
file = {aim2018.pdf:https\://germain-forestier.info/publis/aim2018.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1016/j.artmed.2018.08.002}
+ url = {https://doi.org/10.1016/j.artmed.2018.08.002}
}
@article{Gibaud2018Towardstandardontology,
@@ -423,7 +423,7 @@ @article{Gibaud2018Towardstandardontology
comment = {https://ontospm.univ-rennes1.fr},
file = {ijcars2018d.pdf:https\://germain-forestier.info/publis/ijcars2018d.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/s11548-018-1824-5}
+ url = {https://doi.org/10.1007/s11548-018-1824-5}
}
@article{Lampert2018Constraineddistancebased,
@@ -437,7 +437,7 @@ @article{Lampert2018Constraineddistancebased
comment = {https://sites.google.com/site/tomalampert/code},
file = {dmkd2018b.pdf:https\://germain-forestier.info/publis/dmkd2018b.pdf:PDF},
timestamp = {4},
- URL = {https://doi.org/10.1007/s10618-018-0573-y}
+ url = {https://doi.org/10.1007/s10618-018-0573-y}
}
@article{Dau2018Optimizingdynamictime,
@@ -451,7 +451,7 @@ @article{Dau2018Optimizingdynamictime
comment = {http://www.cs.ucr.edu/~hdau001/learn_dtw_parameter/},
file = {dmkd2018a.pdf:https\://germain-forestier.info/publis/dmkd2018a.pdf:PDF},
timestamp = {5},
- URL = {https://doi.org/10.1007/s10618-018-0565-y}
+ url = {https://doi.org/10.1007/s10618-018-0565-y}
}
@article{Forestier2018SurgicalskillsCan,
@@ -464,7 +464,7 @@ @article{Forestier2018SurgicalskillsCan
volume = {13},
file = {ijcars2018b.pdf:https\://germain-forestier.info/publis/ijcars2018b.pdf:PDF},
timestamp = {6},
- URL = {https://doi.org/10.1007/s11548-018-1713-y}
+ url = {https://doi.org/10.1007/s11548-018-1713-y}
}
@article{Despinoy2018Evaluationcontactlesshuman,
@@ -477,7 +477,7 @@ @article{Despinoy2018Evaluationcontactlesshuman
volume = {13},
file = {ijcars2018.pdf:https\://germain-forestier.info/publis/ijcars2018.pdf:PDF},
timestamp = {7},
- URL = {https://doi.org/10.1007/s11548-017-1666-6}
+ url = {https://doi.org/10.1007/s11548-017-1666-6}
}
@article{Huaulme2018Sequentialsurgicalsignatures,
@@ -490,7 +490,7 @@ @article{Huaulme2018Sequentialsurgicalsignatures
volume = {13},
file = {ijcars2018c.pdf:https\://germain-forestier.info/publis/ijcars2018c.pdf:PDF},
timestamp = {8},
- URL = {https://doi.org/10.1007/s11548-018-1775-x}
+ url = {https://doi.org/10.1007/s11548-018-1775-x}
}
@article{Maier-Hein2017Surgicaldatascience,
@@ -503,7 +503,7 @@ @article{Maier-Hein2017Surgicaldatascience
volume = {1},
file = {s41551-017-0132-7.pdf:https\://www.nature.com/articles/s41551-017-0132-7.pdf:PDF},
timestamp = {0},
- URL = {https://doi.org/10.1038/s41551-017-0132-7}
+ url = {https://doi.org/10.1038/s41551-017-0132-7}
}
@article{Forestier2017Findingdiscriminativeand,
@@ -515,7 +515,7 @@ @article{Forestier2017Findingdiscriminativeand
volume = {82},
file = {aim2017b:https\://germain-forestier.info/publis/aim2017b.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1016/j.artmed.2017.09.002}
+ url = {https://doi.org/10.1016/j.artmed.2017.09.002}
}
@article{Forestier2017Automaticmatchingsurgeries,
@@ -528,7 +528,7 @@ @article{Forestier2017Automaticmatchingsurgeries
comment = {https://germain-forestier.info/src/aiim2017/},
file = {aim2017.pdf:https\://germain-forestier.info/publis/aim2017.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1016/j.artmed.2017.03.007}
+ url = {https://doi.org/10.1016/j.artmed.2017.03.007}
}
@article{Schaadt2017Imageanalysisimmune,
@@ -541,7 +541,7 @@ @article{Schaadt2017Imageanalysisimmune
volume = {164},
file = {bcrt2017.pdf:https\://germain-forestier.info/publis/bcrt2017.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/s10549-017-4239-z}
+ url = {https://doi.org/10.1007/s10549-017-4239-z}
}
@article{Huaulme2017Distinguishingsurgicalbehavior,
@@ -553,7 +553,7 @@ @article{Huaulme2017Distinguishingsurgicalbehavior
volume = {67},
file = {jbi2017.pdf:https\://germain-forestier.info/publis/jbi2017.pdf:PDF},
timestamp = {4},
- URL = {https://doi.org/10.1016/j.jbi.2017.02.001}
+ url = {https://doi.org/10.1016/j.jbi.2017.02.001}
}
@article{Alfonso2016Insilicoinsights,
@@ -565,7 +565,7 @@ @article{Alfonso2016Insilicoinsights
volume = {6},
file = {srep2016.pdf:https\://germain-forestier.info/publis/srep2016.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1038/srep33322}
+ url = {https://doi.org/10.1038/srep33322}
}
@article{Apou2016Detectionlobularstructures,
@@ -578,7 +578,7 @@ @article{Apou2016Detectionlobularstructures
file = {cbm2016.pdf:https\://germain-forestier.info/publis/cbm2016.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1016/j.compbiomed.2016.05.004}
+ url = {https://doi.org/10.1016/j.compbiomed.2016.05.004}
}
@article{Petitjean2016Fasterandmore,
@@ -593,7 +593,7 @@ @article{Petitjean2016Fasterandmore
comment = {https://www.dropbox.com/sh/y8ohfahyj7a9bg1/AAAkM748Hh1RrJqA11wXgcwra},
file = {kais2016.pdf:https\://germain-forestier.info/publis/kais2016.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/s10115-015-0878-8}
+ url = {https://doi.org/10.1007/s10115-015-0878-8}
}
@article{Forestier2016Semisupervisedlearning,
@@ -607,7 +607,7 @@ @article{Forestier2016Semisupervisedlearning
comment = {https://germain-forestier.info/src/is2016/},
file = {is2016.pdf:https\://germain-forestier.info/publis/is2016.pdf:PDF},
timestamp = {4},
- URL = {https://doi.org/10.1016/j.ins.2016.04.040}
+ url = {https://doi.org/10.1016/j.ins.2016.04.040}
}
@article{Despinoy2016UnsupervisedTrajectorySegmentation,
@@ -620,7 +620,7 @@ @article{Despinoy2016UnsupervisedTrajectorySegmentation
volume = {63},
file = {tbme2016.pdf:https\://germain-forestier.info/publis/tbme2016.pdf:PDF},
timestamp = {5},
- URL = {https://doi.org/10.1109/TBME.2015.2493100}
+ url = {https://doi.org/10.1109/TBME.2015.2493100}
}
////////////////// International Conferences ////////////////////
@@ -633,7 +633,7 @@ @inproceedings{abdullayev2026PruningTSC
year = {2026},
organization = {INSTICC},
pages = {1--8},
- URL = {https://doi.org/10.5220/0014407800004052},
+ url = {https://doi.org/10.5220/0014407800004052},
code = {https://github.com/MSD-IRIMAS/Pruning4TSC},
}
@@ -643,7 +643,7 @@ @inproceedings{Lebot2025AutomatedCodingFrench
booktitle = {International Symposium on Computer-Based Medical Systems (CBMS)},
address = {Madrid, Spain},
pages = {},
- URL = {https://doi.org/10.1109/CBMS65348.2025.00053},
+ url = {https://doi.org/10.1109/CBMS65348.2025.00053},
year = {2025},
organization = {IEEE}
}
@@ -654,7 +654,7 @@ @inproceedings{abdullayev2025DiverseEnsemble
booktitle = {IEEE International Joint Conference on Neural Networks (IJCNN)},
address = {Rome, Italy},
pages = {1--8},
- URL = {https://doi.org/10.1109/IJCNN64981.2025.11228372},
+ url = {https://doi.org/10.1109/IJCNN64981.2025.11228372},
code = {https://github.com/MSD-IRIMAS/decorrelated-learning},
year = {2025},
organization = {IEEE}
@@ -666,7 +666,7 @@ @inproceedings{schirm2025hiking
booktitle = {International Conference on Pattern Recognition Applications and Methods (ICPRAM)},
address = {Porto, Portugal},
pages = {1--8},
- URL = {https://doi.org/10.5220/0013351700003905},
+ url = {https://doi.org/10.5220/0013351700003905},
year = {2025},
organization = {Springer}
}
@@ -677,7 +677,7 @@ @inproceedings{latil2025Urbantrees
booktitle = {2025 Joint Urban Remote Sensing Event (JURSE)},
address = {Tunis, Tunisia},
pages = {1--4},
- URL = {https://doi.org/10.1109/JURSE60372.2025.11076039},
+ url = {https://doi.org/10.1109/JURSE60372.2025.11076039},
year = {2025}
}
@@ -687,7 +687,7 @@ @inproceedings{come2025chart
booktitle = {International Conference on Agents and Artificial Intelligence (ICAART)},
address = {Porto, Portugal},
code = {https://github.com/MSD-IRIMAS/CNNvsVLMforChartImageClassification},
- URL = {https://doi.org/10.5220/0013374500003890},
+ url = {https://doi.org/10.5220/0013374500003890},
year = {2025},
pages = {1--8},
organization = {Springer}
@@ -699,7 +699,7 @@ @inproceedings{badi2024cocalite
booktitle = {IEEE International Conference on Big Data (BigData)},
address = {Washington DC, United States of America},
code = {https://github.com/MSD-IRIMAS/COCALITE},
- URL = {https://doi.org/10.1109/BigData62323.2024.10825872},
+ url = {https://doi.org/10.1109/BigData62323.2024.10825872},
year = {2024},
pages = {1--8},
organization = {IEEE}
@@ -711,7 +711,7 @@ @inproceedings{geletu2024belief
booktitle = {International Conference on Belief Functions (BELIEF)},
address = {Belfast, United Kingdom},
pages = {1--8},
- URL = {https://doi.org/10.1007/978-3-031-67977-3_10},
+ url = {https://doi.org/10.1007/978-3-031-67977-3_10},
year = {2024},
organization = {Springer}
}
@@ -722,7 +722,7 @@ @inproceedings{giurgi2024fusion
booktitle = {27th International Conference on Information Fusion (FUSION)},
address = {Venice, Italy},
pages = {1--8},
- URL = {https://doi.org/10.23919/FUSION59988.2024.10706336},
+ url = {https://doi.org/10.23919/FUSION59988.2024.10706336},
year = {2024},
organization = {IEEE}
}
@@ -733,7 +733,7 @@ @inproceedings{geletu2024fusion
booktitle = {27th International Conference on Information Fusion (FUSION)},
address = {Venice, Italy},
pages = {1--8},
- URL = {https://doi.org/10.23919/FUSION59988.2024.10706424},
+ url = {https://doi.org/10.23919/FUSION59988.2024.10706424},
year = {2024},
organization = {IEEE}
}
@@ -744,7 +744,7 @@ @inproceedings{nguyen2024rehabdb
booktitle = {International Joint Conference on Neural Networks (IJCNN)},
address = {Yokohama, Japan},
pages = {1--8},
- URL = {https://doi.org/10.1109/IJCNN60899.2024.10650036},
+ url = {https://doi.org/10.1109/IJCNN60899.2024.10650036},
year = {2024},
organization = {IEEE}
}
@@ -755,7 +755,7 @@ @inproceedings{ismail-fawaz2024svae4hmg
booktitle = {4th International Conference on Pattern Recognition and Artificial Intelligence (ICPRAI)},
address = {Jeju Island, Korea},
pages = {1--8},
- URL = {https://doi.org/10.1007/978-981-97-8705-0_11},
+ url = {https://doi.org/10.1007/978-981-97-8705-0_11},
year = {2024},
code = {https://github.com/MSD-IRIMAS/SVAE-4-HMG}
}
@@ -766,7 +766,7 @@ @inproceedings{Wenger2024ImprovingUrbanTree
booktitle = {IEEE Geoscience and Remote Sensing Symposium (IGARSS)},
address = {Athens, Greece},
year = {2024},
- URL = {https://doi.org/10.1109/IGARSS53475.2024.10642787}
+ url = {https://doi.org/10.1109/IGARSS53475.2024.10642787}
}
@inproceedings{Roux2023MortarTrajectory,
@@ -788,7 +788,7 @@ @inproceedings{ismail-fawaz2023lite
pages = {},
month = {October},
address = {Thessaloniki, Greece},
- URL = {https://doi.org/10.1109/DSAA60987.2023.10302569},
+ url = {https://doi.org/10.1109/DSAA60987.2023.10302569},
code = {https://github.com/MSD-IRIMAS/LITE},
year = {2023},
organization = {}
@@ -800,7 +800,7 @@ @inproceedings{Heckenauer2023Comparisondeeplearning
booktitle = {International Symposium on Computer-Based Medical Systems (CBMS)},
address = {Aquila, Italy},
year = {2023},
- URL = {https://doi.org/10.1109/CBMS58004.2023.00244}
+ url = {https://doi.org/10.1109/CBMS58004.2023.00244}
}
@inproceedings{sliti_qcav2023,
@@ -810,7 +810,7 @@ @inproceedings{sliti_qcav2023
pages = {},
month = {June},
address = {Albi, France},
- URL = {https://doi.org/10.1117/12.3000063},
+ url = {https://doi.org/10.1117/12.3000063},
year = {2023},
organization = {SPIE}
}
@@ -822,7 +822,7 @@ @inproceedings{cuculovic2023ner
pages = {},
month = {March},
address = {Raleigh, USA},
- URL = {https://doi.org/10.1109/ICICT58900.2023.00025},
+ url = {https://doi.org/10.1109/ICICT58900.2023.00025},
year = {2023},
organization = {IEEE}
}
@@ -834,7 +834,7 @@ @inproceedings{ismail-fawaz2022hccf
pages = {},
month = {February},
address = {Lisbon, Portugal},
- URL = {https://doi.org/10.5220/0011611300003393},
+ url = {https://doi.org/10.5220/0011611300003393},
code = {https://github.com/MSD-IRIMAS/TRILITE},
year = {2023},
organization = {Springer}
@@ -846,7 +846,7 @@ @inproceedings{Wenger2023Exploringinferenceland
booktitle = {Joint Urban Remote Sensing Event (JURSE)},
address = {Tunis, Tunisia},
year = {2023},
- URL = {https://doi.org/10.1109/JURSE57346.2023.10144156}
+ url = {https://doi.org/10.1109/JURSE57346.2023.10144156}
}
@inproceedings{Ismail-Fawaz2022DeepLearningTime,
@@ -856,7 +856,7 @@ @inproceedings{Ismail-Fawaz2022DeepLearningTime
pages = {},
month = {December},
address = {Osaka, Japan},
- URL = {https://doi.org/10.1109/BigData55660.2022.10020496},
+ url = {https://doi.org/10.1109/BigData55660.2022.10020496},
code = {https://github.com/MSD-IRIMAS/CF-4-TSC},
year = {2022},
organization = {IEEE},
@@ -869,7 +869,7 @@ @inproceedings{Lafabregue2022Deepclusteringmethods
booktitle = {IEEE Geoscience and Remote Sensing Symposium (IGARSS)},
year = {2022},
address = {Kuala Lumpur, Malaysia},
- URL = {https://doi.org/10.1109/IGARSS46834.2022.9884322}
+ url = {https://doi.org/10.1109/IGARSS46834.2022.9884322}
}
@inproceedings{ledy2022Transforming,
@@ -881,7 +881,7 @@ @inproceedings{ledy2022Transforming
number={},
address = {Cluj-Napoca, Romania},
pages={1-6},
- URL = {https://ieeexplore.ieee.org/abstract/document/9801930},
+ url = {https://ieeexplore.ieee.org/abstract/document/9801930},
doi={10.1109/AQTR55203.2022.9801930}
}
@@ -894,7 +894,7 @@ @inproceedings{Ay2022studyKnowledgeDistillation
address={Padua, Italy},
pages={1--8},
code={https://github.com/maxwell1503/kdFCN-4-tsc},
- URL = {https://doi.org/10.1109/IJCNN55064.2022.9892915},
+ url = {https://doi.org/10.1109/IJCNN55064.2022.9892915},
webpage = {https://maxime-devanne.com/pages/kdFCN-4-tsc/},
organization={IEEE}
}
@@ -906,7 +906,7 @@ @inproceedings{Chamekh2022SentimentAnalysisBased
year = {2022},
pages = {498--507},
address = {Singapore},
- URL = {https://doi.org/10.1007/978-3-031-10986-7_40}
+ url = {https://doi.org/10.1007/978-3-031-10986-7_40}
}
@inproceedings{Mejbri2022Deeplearningbased,
@@ -916,7 +916,7 @@ @inproceedings{Mejbri2022Deeplearningbased
year = {2022},
address = {Singapore},
pages = {586--596},
- URL = {https://doi.org/10.1007/978-3-031-10986-7_47}
+ url = {https://doi.org/10.1007/978-3-031-10986-7_47}
}
@inproceedings{Pialla2022SmoothPerturbationsTime,
@@ -927,7 +927,7 @@ @inproceedings{Pialla2022SmoothPerturbationsTime
address = {Chengdu, China},
pages = {485--496},
code={https://github.com/Gpialla/SmoothPerturbationsTSAA},
- URL = {https://doi.org/10.1007/978-3-031-05933-9_38}
+ url = {https://doi.org/10.1007/978-3-031-05933-9_38}
}
@inproceedings{geletu2022cross,
@@ -938,7 +938,7 @@ @inproceedings{geletu2022cross
year = {2022},
address={Paris, France},
pages={1--7},
- URL = {https://doi.org/10.1109/CompAuto55930.2022.00012},
+ url = {https://doi.org/10.1109/CompAuto55930.2022.00012},
organization={CPS}
}
@@ -950,7 +950,7 @@ @inproceedings{cuculovic2022jatscon
year = {2022},
address={Virtual},
organization={NCBI},
- URL = {https://www.ncbi.nlm.nih.gov/books/NBK579687/}
+ url = {https://www.ncbi.nlm.nih.gov/books/NBK579687/}
}
@inproceedings{Wenger2022MultisengeMultimodal,
@@ -959,7 +959,7 @@ @inproceedings{Wenger2022MultisengeMultimodal
booktitle = {The International Archives of Photogrammetry, Remote Sensing and Spatial Information Sciences (ISPRS)},
address = {Nice, France},
year = {2022},
- URL = {https://doi.org/10.5194/isprs-annals-V-3-2022-635-2022}
+ url = {https://doi.org/10.5194/isprs-annals-V-3-2022-635-2022}
}
@inproceedings{Rmouque2022Ensembleclusteringhistopathological,
@@ -969,7 +969,7 @@ @inproceedings{Rmouque2022Ensembleclusteringhistopathological
year = {2022},
pages = {933-940},
address = {Virtual},
- URL = {https://doi.org/10.5220/0010835300003124}
+ url = {https://doi.org/10.5220/0010835300003124}
}
@inproceedings{Terefe2022DeepRepresentationLearning,
@@ -978,7 +978,7 @@ @inproceedings{Terefe2022DeepRepresentationLearning
booktitle = {International Conference on Time Series and Forecasting (ITISE)},
year = {2022},
address = {Gran Canaria, Spain},
- URL = {https://doi.org/10.3390/engproc2022018022}
+ url = {https://doi.org/10.3390/engproc2022018022}
}
@inproceedings{roux2021cnn,
@@ -987,7 +987,7 @@ @inproceedings{roux2021cnn
booktitle={2021 International Conference on Control, Automation and Diagnosis (ICCAD)},
year={2021},
address={Grenoble, France},
- URL={https://doi.org/10.1109/ICCAD52417.2021.9638770},
+ url={https://doi.org/10.1109/ICCAD52417.2021.9638770},
organization={IEEE}
}
@@ -997,7 +997,7 @@ @inproceedings{roux2021projectile
booktitle={2021 9th International Conference on Systems and Control (ICSC)},
year={2021},
address={Caen, France},
- URL={https://doi.org/10.1109/ICSC50472.2021.9666713},
+ url={https://doi.org/10.1109/ICSC50472.2021.9666713},
organization={IEEE}
}
@@ -1008,7 +1008,7 @@ @inproceedings{lafabregue2021grad
pages={184--191},
year={2021},
address={Virtual},
- URL={https://doi.org/10.1109/ICTAI52525.2021.00033},
+ url={https://doi.org/10.1109/ICTAI52525.2021.00033},
organization={IEEE}
}
@@ -1018,14 +1018,14 @@ @inproceedings{Bendali-Braham2021Ensembleclassificationvideo
booktitle = {International Symposium on Image and Signal Processing and Analysis (ISPA)},
year = {2021},
address={Virtual},
- URL = {https://doi.org/10.1109/ISPA52656.2021.9552129}
+ url = {https://doi.org/10.1109/ISPA52656.2021.9552129}
}
@inproceedings{Terefe2020TimeSeriesAveraging,
author = {Terefe, T. and Devanne, M. and Weber, J. and Hailemariam, D. and Forestier, G.},
title = {Time Series Averaging Using Multi-Tasking Autoencoder},
booktitle = {IEEE International Conference on Tools with Artificial Intelligence (ICTAI)},
- URL={https://doi.org/10.1109/ICTAI50040.2020.00163},
+ url={https://doi.org/10.1109/ICTAI50040.2020.00163},
address={Virtual},
year = {2020}
}
@@ -1037,7 +1037,7 @@ @inproceedings{cuculovic2020jats
address={San Diego, USA},
address = {San Diego, USA},
pages = {1--10},
- URL = {https://doi.org/10.1145/3395027.3419581},
+ url = {https://doi.org/10.1145/3395027.3419581},
year = {2020},
organization = {ACM}
}
@@ -1050,7 +1050,7 @@ @inproceedings{Poterek2020RevealingLongterm
year = {2020},
volume = {V-3-2020},
pages = {549--557},
- URL = {https://doi.org/10.5194/isprs-annals-V-3-2020-549-2020}
+ url = {https://doi.org/10.5194/isprs-annals-V-3-2020-549-2020}
}
@inproceedings{Bernard2020KnowledgeBasedCategorization,
@@ -1059,7 +1059,7 @@ @inproceedings{Bernard2020KnowledgeBasedCategorization
booktitle = {International Conference on Theory and Practice of Digital Libraries (TPDL)},
year = {2020},
address={Lyon, France},
- URL = {https://doi.org/10.1007/978-3-030-54956-5_11}
+ url = {https://doi.org/10.1007/978-3-030-54956-5_11}
}
@inproceedings{Heckenauer2020Realtimedetection,
@@ -1069,7 +1069,7 @@ @inproceedings{Heckenauer2020Realtimedetection
year = {2020},
address={Virtual},
pages = {350-355},
- URL = {https://doi.org/10.1109/CBMS49503.2020.00072}
+ url = {https://doi.org/10.1109/CBMS49503.2020.00072}
}
@inproceedings{Rakhshani2020NeuralArchitectureSearch,
@@ -1079,7 +1079,7 @@ @inproceedings{Rakhshani2020NeuralArchitectureSearch
year = {2020},
address={Glasgow, United Kingdom},
pages = {1-8},
- URL = {https://doi.org/10.1109/IJCNN48605.2020.9206721}
+ url = {https://doi.org/10.1109/IJCNN48605.2020.9206721}
}
@inproceedings{Rakhshani2020AutomatedMachineLearning,
@@ -1089,7 +1089,7 @@ @inproceedings{Rakhshani2020AutomatedMachineLearning
year = {2020},
address={Glasgow, United Kingdom},
pages = {1-7},
- URL = {https://doi.org/10.1109/CEC48606.2020.9185893}
+ url = {https://doi.org/10.1109/CEC48606.2020.9185893}
}
@inproceedings{Bendali-Braham2019Transferlearningclassification,
@@ -1102,7 +1102,7 @@ @inproceedings{Bendali-Braham2019Transferlearningclassification
comment = {https://github.com/MounirB/Crowd-movements-classification},
file = {ispa2019.pdf:https\://germain-forestier.info/publis/ispa2019.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1109/ISPA.2019.8868704}
+ url = {https://doi.org/10.1109/ISPA.2019.8868704}
}
@inproceedings{IsmailFawaz2019Automaticalignmentsurgical,
@@ -1117,7 +1117,7 @@ @inproceedings{IsmailFawaz2019Automaticalignmentsurgical
file = {aime2019.pdf:https\://germain-forestier.info/publis/aime2019.pdf:PDF},
Keywords = {https://arxiv.org/abs/1904.07302},
timestamp = {2},
- URL = {https://doi.org/10.1007/978-3-030-21642-9_14}
+ url = {https://doi.org/10.1007/978-3-030-21642-9_14}
}
@inproceedings{IsmailFawaz2019DeepNeuralNetwork,
@@ -1130,7 +1130,7 @@ @inproceedings{IsmailFawaz2019DeepNeuralNetwork
file = {ijcnn2019a.pdf:https\://germain-forestier.info/publis/ijcnn2019a.pdf:PDF},
Keywords = {https://arxiv.org/abs/1903.06602},
timestamp = {3},
- URL = {https://doi.org/10.1109/IJCNN.2019.8852316}
+ url = {https://doi.org/10.1109/IJCNN.2019.8852316}
}
@inproceedings{IsmailFawaz2019AdversarialAttacksDeep,
@@ -1143,7 +1143,7 @@ @inproceedings{IsmailFawaz2019AdversarialAttacksDeep
file = {ijcnn2019b.pdf:https\://germain-forestier.info/publis/ijcnn2019b.pdf:PDF},
Keywords = {https://arxiv.org/abs/1903.07054},
timestamp = {4},
- URL = {https://doi.org/10.1109/IJCNN.2019.8851936}
+ url = {https://doi.org/10.1109/IJCNN.2019.8851936}
}
@inproceedings{Lampert2019StrategiesTrainingStain,
@@ -1156,7 +1156,7 @@ @inproceedings{Lampert2019StrategiesTrainingStain
file = {isbi2019.pdf:https\://germain-forestier.info/publis/isbi2019.pdf:PDF},
Keywords = {https://arxiv.org/abs/1810.10338},
timestamp = {5},
- URL = {https://doi.org/10.1109/ISBI.2019.8759266}
+ url = {https://doi.org/10.1109/ISBI.2019.8759266}
}
@inproceedings{Bourgeois2019MEASURESchema,
@@ -1169,7 +1169,7 @@ @inproceedings{Bourgeois2019MEASURESchema
file = {1903.08495.pdf:https\://arxiv.org/pdf/1903.08495.pdf:PDF},
Keywords = {https://arxiv.org/abs/1903.08495},
timestamp = {6},
- URL = {https://arxiv.org/pdf/1903.08495.pdf}
+ url = {https://arxiv.org/pdf/1903.08495.pdf}
}
@inproceedings{IsmailFawaz2018Transferlearningtime,
@@ -1183,7 +1183,7 @@ @inproceedings{IsmailFawaz2018Transferlearningtime
file = {bigdata2018.pdf:https\://germain-forestier.info/publis/bigdata2018.pdf:PDF},
Keywords = {https://arxiv.org/abs/1811.01533},
timestamp = {1},
- URL = {https://doi.org/10.1109/BigData.2018.8621990}
+ url = {https://doi.org/10.1109/BigData.2018.8621990}
}
@inproceedings{IsmailFawaz2018Evaluatingsurgicalskills,
@@ -1198,7 +1198,7 @@ @inproceedings{IsmailFawaz2018Evaluatingsurgicalskills
file = {miccai2018.pdf:https\://germain-forestier.info/publis/miccai2018.pdf:PDF},
Keywords = {https://arxiv.org/abs/1806.02750},
timestamp = {2},
- URL = {https://doi.org/10.1007/978-3-030-00937-3_25}
+ url = {https://doi.org/10.1007/978-3-030-00937-3_25}
}
@inproceedings{Forestier2018SurgicalskillsCan,
@@ -1209,7 +1209,7 @@ @inproceedings{Forestier2018SurgicalskillsCan
address = {Berlin, Germany},
file = {ijcars2018b.pdf:https\://germain-forestier.info/publis/ijcars2018b.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/s11548-018-1713-y}
+ url = {https://doi.org/10.1007/s11548-018-1713-y}
}
@inproceedings{Tan2018Efficientsearchbest,
@@ -1223,7 +1223,7 @@ @inproceedings{Tan2018Efficientsearchbest
file = {sdm2018.pdf:https\://germain-forestier.info/publis/sdm2018.pdf:PDF},
owner = {https://germain-forestier.info/best/2018-sdm.jpg},
timestamp = {4},
- URL = {https://doi.org/10.1137/1.9781611975321.26}
+ url = {https://doi.org/10.1137/1.9781611975321.26}
}
@inproceedings{DBLP:conf/bigdata/ThiryZH18,
@@ -1234,7 +1234,7 @@ @inproceedings{DBLP:conf/bigdata/ThiryZH18
publisher = {{IEEE} Computer Society},
address = {San Francisco, CA, USA,},
year = {2018},
- URL = {https://doi.org/10.1109/BigDataCongress.2018.00049},
+ url = {https://doi.org/10.1109/BigDataCongress.2018.00049},
timestamp = {Wed, 16 Oct 2019 14:14:55 +0200},
biburl = {https://dblp.org/rec/conf/bigdata/ThiryZH18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
@@ -1248,7 +1248,7 @@ @inproceedings{DBLP:conf/semco/ZhaoTH18
publisher = {{IEEE} Computer Society},
year = {2018},
address = {Laguna Hills, CA, USA},
- URL = {https://doi.org/10.1109/ICSC.2018.00055},
+ url = {https://doi.org/10.1109/ICSC.2018.00055},
timestamp = {Wed, 16 Oct 2019 14:14:56 +0200},
biburl = {https://dblp.org/rec/conf/semco/ZhaoTH18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
@@ -1265,7 +1265,7 @@ @inproceedings{DBLP:conf/ifip3/DjelilMS18
publisher = {Springer},
address = {Linz, Austria},
year = {2018},
- URL = {https://doi.org/10.1007/978-3-030-23513-0\_7},
+ url = {https://doi.org/10.1007/978-3-030-23513-0\_7},
timestamp = {Wed, 25 Sep 2019 18:19:56 +0200},
biburl = {https://dblp.org/rec/conf/ifip3/DjelilMS18.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
@@ -1283,7 +1283,7 @@ @inproceedings{Forestier2017Generatingsynthetictime
comment = {https://germain-forestier.info/src/icdm2017/},
file = {icdm2017.pdf:https\://germain-forestier.info/publis/icdm2017.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1109/ICDM.2017.106}
+ url = {https://doi.org/10.1109/ICDM.2017.106}
}
@inproceedings{Temerinac-Ott2017Detectionglomeruliin,
@@ -1297,7 +1297,7 @@ @inproceedings{Temerinac-Ott2017Detectionglomeruliin
file = {ispa2017:https\://germain-forestier.info/publis/ispa2017.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1109/ISPA.2017.8073562}
+ url = {https://doi.org/10.1109/ISPA.2017.8073562}
}
@inproceedings{Latard2017TowardsSemanticSearch,
@@ -1313,7 +1313,7 @@ @inproceedings{Latard2017TowardsSemanticSearch
file = {tpdl2017.pdf:https\://germain-forestier.info/publis/tpdl2017.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/978-3-319-67008-9_54}
+ url = {https://doi.org/10.1007/978-3-319-67008-9_54}
}
@inproceedings{Latard2017UsingSemanticRelations,
@@ -1327,7 +1327,7 @@ @inproceedings{Latard2017UsingSemanticRelations
file = {ictai2017.pdf:https\://germain-forestier.info/publis/ictai2017.pdf:PDF},
timestamp = {4},
- URL = {https://doi.org/10.1109/ICTAI.2017.00049}
+ url = {https://doi.org/10.1109/ICTAI.2017.00049}
}
@inproceedings{Forestier2017DiscoveringDiscriminativeand,
@@ -1345,7 +1345,7 @@ @inproceedings{Forestier2017DiscoveringDiscriminativeand
comment = {https://germain-forestier.info/src/aime2017/},
file = {aime2017.pdf:https\://germain-forestier.info/publis/aime2017.pdf:PDF},
timestamp = {5},
- URL = {https://doi.org/10.1007/978-3-319-59758-4_15}
+ url = {https://doi.org/10.1007/978-3-319-59758-4_15}
}
@inproceedings{Dau2017JudiciousSettingDynamic,
@@ -1359,7 +1359,7 @@ @inproceedings{Dau2017JudiciousSettingDynamic
comment = {https://sites.google.com/site/dtwclassification/},
file = {bigdata2017.pdf:https\://germain-forestier.info/publis/bigdata2017.pdf:PDF},
- URL = {https://doi.org/10.1109/BigData.2017.8258009}
+ url = {https://doi.org/10.1109/BigData.2017.8258009}
}
@inproceedings{saini2017functional,
@@ -1371,7 +1371,7 @@ @inproceedings{saini2017functional
pages={10526--10531},
year={2017},
address={Toulouse, France},
- URL={https://doi.org/10.1016/j.ifacol.2017.08.1299},
+ url={https://doi.org/10.1016/j.ifacol.2017.08.1299},
publisher={Elsevier}
}
@@ -1386,7 +1386,7 @@ @inproceedings{Luu2016Webusageprediction
file = {icdim2016.pdf:https\://germain-forestier.info/publis/icdim2016.pdf:PDF},
timestamp = {1},
- URL = {https://doi.org/10.1109/ICDIM.2016.7829779}
+ url = {https://doi.org/10.1109/ICDIM.2016.7829779}
}
@inproceedings{Luu2016UsingGlocalEvent,
@@ -1402,7 +1402,7 @@ @inproceedings{Luu2016UsingGlocalEvent
file = {mldm2016.pdf:https\://germain-forestier.info/publis/mldm2016.pdf:PDF},
timestamp = {3},
- URL = {https://doi.org/10.1007/978-3-319-41920-6_5}
+ url = {https://doi.org/10.1007/978-3-319-41920-6_5}
}
@inproceedings{Mahfoudh2016BenchmarkOntologiesMerging,
@@ -1418,7 +1418,7 @@ @inproceedings{Mahfoudh2016BenchmarkOntologiesMerging
file = {ksem2016.pdf:https\://germain-forestier.info/publis/ksem2016.pdf:PDF},
timestamp = {2},
- URL = {https://doi.org/10.1007/978-3-319-47650-6_44}
+ url = {https://doi.org/10.1007/978-3-319-47650-6_44}
}
////////////////// International Wokshops ////////////////////
@@ -1430,7 +1430,7 @@ @inproceedings{ismail2025data-aug-gen-eval
address = {Porto, Portugal},
workshop = {True},
pages = {1--8},
- URL = {https://doi.org/10.1007/978-3-032-15535-1_3},
+ url = {https://doi.org/10.1007/978-3-032-15535-1_3},
year = {2025},
organization = {Springer},
code = {https://github.com/MSD-IRIMAS/Data-Augmentation-4-TSC}
@@ -1443,7 +1443,7 @@ @inproceedings{meyer2025pooling
address = {Porto, Portugal},
workshop = {True},
pages = {1--8},
- URL = {https://doi.org/10.1007/978-3-032-15535-1_6},
+ url = {https://doi.org/10.1007/978-3-032-15535-1_6},
year = {2025},
organization = {Springer},
code = {https://github.com/MSD-IRIMAS/PoolParty-4-TSC}
@@ -1455,7 +1455,7 @@ @inproceedings{devanne2025esmac
booktitle = {European Society for Movement Analysis in Adults and Children (ESMAC)},
address = {Basel, Switzerland},
workshop = {True},
- URL = {https://maxime-devanne.com/publis/devanne_esmac2025.pdf},
+ url = {https://maxime-devanne.com/publis/devanne_esmac2025.pdf},
year = {2025},
}
@@ -1465,7 +1465,7 @@ @inproceedings{lempereur2025esmac
booktitle = {European Society for Movement Analysis in Adults and Children (ESMAC)},
address = {Basel, Switzerland},
workshop = {True},
- URL = {https://doi.org/10.1016/j.gaitpost.2025.07.145},
+ url = {https://doi.org/10.1016/j.gaitpost.2025.07.145},
year = {2025}
}
@@ -1476,7 +1476,7 @@ @inproceedings{ismail-fawaz2024weighted_sdba
address = {Vilnius, Lithuania},
workshop = {True},
pages = {1--8},
- URL = {https://doi.org/10.1007/978-3-031-77066-1_8},
+ url = {https://doi.org/10.1007/978-3-031-77066-1_8},
year = {2024},
organization = {Springer},
code = {https://github.com/MSD-IRIMAS/Weighted-ShapeDBA-4-Rehab}
@@ -1489,7 +1489,7 @@ @inproceedings{Bagnall2024HandsIntroductionto
address = {Barcelona, Spain},
pages = {1--2},
workshop = {True},
- URL = {https://doi.org/10.1145/3637528.3671443},
+ url = {https://doi.org/10.1145/3637528.3671443},
code = {https://github.com/aeon-tutorials/KDD-2024},
webpage = {https://aeon-tutorials.github.io/KDD-2024/},
year = {2024}
@@ -1501,7 +1501,7 @@ @inproceedings{Hibert2024Selfsupervisedlearning
booktitle = {EGU General Assembly},
address = {Vienna, Austria},
pages = {1--8},
- URL = {https://doi.org/10.5194/egusphere-egu24-15278},
+ url = {https://doi.org/10.5194/egusphere-egu24-15278},
year = {2024},
workshop = {True},
organization = {}
@@ -1514,7 +1514,7 @@ @inproceedings{ismail-fawaz2024pretext-task
address = {Taipei, Taiwan},
workshop = {True},
pages = {123--135},
- URL = {https://doi.org/10.1007/978-981-97-2650-9_10},
+ url = {https://doi.org/10.1007/978-981-97-2650-9_10},
year = {2024},
code = {https://github.com/MSD-IRIMAS/DomainFoundationModelsTSC}
}
@@ -1575,7 +1575,7 @@ @inproceedings{ismail-fawaz2023sdba
month = {September},
workshop = {True},
address = {Turin, Italy},
- URL = {https://doi.org/10.1007/978-3-031-49896-1_9},
+ url = {https://doi.org/10.1007/978-3-031-49896-1_9},
code = {https://github.com/MSD-IRIMAS/ShapeDBA},
year = {2023},
organization = {},
@@ -1590,7 +1590,7 @@ @inproceedings{pialla2022dataug
month = {September},
workshop = {True},
address = {Grenoble, France},
- URL = {https://doi.org/10.1007/978-3-031-24378-3_8},
+ url = {https://doi.org/10.1007/978-3-031-24378-3_8},
code = {https://github.com/Gpialla/DataAugForTSC},
year = {2022},
organization = {}
@@ -1604,7 +1604,7 @@ @inproceedings{hamri2022rrpr
month = {August},
workshop = {True},
address = {Montreal, Canada},
- URL = {https://doi.org/10.1007/978-3-031-40773-4_2},
+ url = {https://doi.org/10.1007/978-3-031-40773-4_2},
year = {2022},
organization = {Springer}
}
@@ -1618,7 +1618,7 @@ @inproceedings{giurgi2022road
workshop = {True},
address={Nafplio, Greece},
pages={1--5},
- URL = {https://doi.org/10.1109/IVMSP54334.2022.9816237},
+ url = {https://doi.org/10.1109/IVMSP54334.2022.9816237},
organization={IEEE}
}
@@ -1628,7 +1628,7 @@ @inproceedings{Lafabregue2022Incrementalconstrainedclustering
booktitle = {ICDM Workshop on Incremental Classification and Clustering, Concept Drift, Novelty Detection, Active Learning in Big/Fast data Context (IncrLearn)},
address = {Orlando, USA},
pages = {814-823},
- URL = {https://doi.org/10.1109/ICDMW58026.2022.00110},
+ url = {https://doi.org/10.1109/ICDMW58026.2022.00110},
year = {2022},
workshop = {True},
organization = {IEEE}
@@ -1652,7 +1652,7 @@ @inproceedings{Schaadt2018RoleTaskComplexity
volume = {11039},
pages = {44--51},
workshop = {True},
- URL = {https://doi.org/10.1007/978-3-030-00949-6_6}
+ url = {https://doi.org/10.1007/978-3-030-00949-6_6}
}
@inproceedings{IsmailFawaz2018Dataaugmentationusing,
@@ -1712,7 +1712,7 @@ @article{Many2024Transformationnumerique
author = {Many, H. and Shvetsova, M. and Forestier, G.},
title = {Transformation numérique : comment enseigner (avec) l'IA générative dans l’enseignement supérieur ?},
journal = {Études & Pédagogies},
- URL = {https://doi.org/10.20870/eep.2024.8100},
+ url = {https://doi.org/10.20870/eep.2024.8100},
year = {2024},
language={french},
volume={}
@@ -1726,14 +1726,14 @@ @article{Kern2022DuprojetDemoUHA
volume = {38},
number = {38},
language = {french},
- URL = {https://doi.org/10.4000/dms.7990}
+ url = {https://doi.org/10.4000/dms.7990}
}
@article{Josso2022Transformer,
author = {Josso-Laurain, T. and Ledy, J. and Fondement, F. and Bindel, S. and Drouhin, F. and Simon, F. and Basset, M.},
title = {Transformer le campus universitaire en laboratoire ouvert : le projet SMART-UHA},
DOI= "10.1051/j3ea/20220001",
- URL= "https://doi.org/10.1051/j3ea/20220001",
+ url= "https://doi.org/10.1051/j3ea/20220001",
journal = {J3eA},
year = {2022},
volume = {21},
@@ -1751,7 +1751,7 @@ @article{Wemmert2020Intelligenceartificielleet
number = {1},
pages = {213--238},
language={french},
- URL = {https://doi.org/10.25830/afh.rfh.2020.32.213.238}
+ url = {https://doi.org/10.25830/afh.rfh.2020.32.213.238}
}
@article{Pelaccia2019Uneintelligenceartificielle,
@@ -1762,7 +1762,7 @@ @article{Pelaccia2019Uneintelligenceartificielle
volume = {40},
pages = {A16--A19},
language={french},
- URL = {https://doi.org/10.1016/j.revmed.2019.03.324}
+ url = {https://doi.org/10.1016/j.revmed.2019.03.324}
}
@article{Mahfoudh2016commentfusionnerdes,
@@ -1774,7 +1774,7 @@ @article{Mahfoudh2016commentfusionnerdes
number = {1},
pages = {31-53},
language={french},
- URL = {https://doi.org/10.3166/tsi.35.31-53}
+ url = {https://doi.org/10.3166/tsi.35.31-53}
}
////////////////// National Conferences and Workshops ////////////////////
@@ -1786,7 +1786,7 @@ @inproceedings{come2025orasis
address = {Le Croisic, France},
language={french},
pages = {},
- URL = {https://hal.science/hal-05131250v1/},
+ url = {https://hal.science/hal-05131250v1/},
year = {2025},
organization = {}
}
@@ -1797,7 +1797,7 @@ @inproceedings{elayadi2025eiah
booktitle = {EIAH},
address = {Lille, France},
pages = {},
- URL = {undefined},
+ url = {undefined},
language={french},
year = {2025},
organization = {}