-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathst_page_05.py
37 lines (16 loc) · 1.34 KB
/
st_page_05.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#--------------------
# Author : Serge Zaugg
# Description : some info
#--------------------
import streamlit as st
c00, c01 = st.columns([0.8, 0.1])
with c00:
with st.container(border=True) :
# st.header("References")
# st.text("<UNDER CONSTRUCTION>")
st.markdown('''In a previous collaboration, I learned hands-on that reducing dimensionality before unsupervised clustering helps a lot.''')
st.page_link("https://doi.org/10.1109/EFTF61992.2024.10722402", label=":red[D. Husmann; S. Zaugg; J. Morel : Detection and Analysis of Anthropogenic Patterns in a Phase-Stabilized Optical Fiber Network]")
st.markdown('''A few interesting papers that inspired me''')
st.page_link("https://doi.org/10.1016/j.aiig.2021.12.002", label=":red[Q. Kong et al. : Deep convolutional autoencoders as generic feature extractors in seismological applications]")
st.page_link("https://doi.org/10.1371/journal.pone.0283396", label=":red[P. Best, S. Paris, H. Glotin, R. Marxer : Deep audio embeddings for vocalisation clustering]")
st.page_link("https://doi.org/10.3389/frsen.2024.1429227", label=":red[A. Noble et al. : Unsupervised clustering reveals acoustic diversity and niche differentiation in pulsed calls from a coral reef ecosystem]")