---
title: FARSEEING Real-World Falls Dataset
url: https://www.emergentmind.com/topics/farseeing-real-world-falls-dataset
type: topic
---

# FARSEEING Real-World Falls Dataset

Searching arXiv for the provided papers and related FARSEEING material.
Searching arXiv for "2505.19889 FARSEEING OmniFall"
Searching arXiv for "2509.11789 FARSEEING real-world falls dataset"
The FARSEEING Real-World Falls Dataset is a real-world falls repository centered on clinically verified falls recorded with wearable tri-axial inertial sensors in older adults and other clinically relevant fallers. In recent fall-detection research, it is treated as a rare source of non-simulated fall data collected in free-living or clinical contexts rather than as a staged benchmark, and it is therefore used to study deployment-relevant behavior under continuous monitoring, class imbalance, and heterogeneous sensing conditions [2509.11789]. Within the broader landscape of fall detection datasets, FARSEEING occupies a distinct position: it is outside the OmniFall benchmark, which unifies eight primarily staged video datasets and a separate real-world subset curated from OOPS!, and it is characterized instead by ecological and clinical validity in home and care settings [2505.19889].

## 1. Dataset identity and scope

FARSEEING is described as the **FARSEEING real-world falls repository**. Its defining property is that it contains **real-world falls, not simulated**, and that the falls are **clinically verified and annotated** [2509.11789]. The population is explicitly older-adult and clinically oriented. In the accelerometer-based streaming study, the reported cohort comprises **92 fallers**, with mean age \(76.1 \pm 12.6\) years, and the repository overall is summarized as containing **208 clinically verified falls with inertial sensors** [2509.11789].

This clinical and ecological orientation distinguishes FARSEEING from staged fall corpora. OmniFall’s eight component datasets—CMDFall, UP-Fall, Le2i, GMDCSA-24, EDF, OCCU, MCFD, and CAUCA Fall—are primarily staged, whereas FARSEEING is described as a **real-world, clinical/home monitoring falls corpus** containing genuine falls of older adults recorded in care facilities and homes [2505.19889]. FARSEEING is **not** one of the eight staged datasets unified in OmniFall, and it is **not** the source of OOPS-Fall; OmniFall’s real-world subset is curated from the OOPS! accident-video dataset instead [2505.19889].

A recurring theme in recent work is that FARSEEING is not simply another dataset instance but a test of whether fall detection methods remain valid when controlled assumptions are removed. The emphasis on clinically verified, real-world falls is used to argue that models trained and evaluated only on simulated or pre-segmented falls do not directly establish deployment reliability [2509.11789].

## 2. Sensor modalities, placement, and recording structure

FARSEEING is heterogeneous because it aggregates data across multiple studies. The repository uses **wearable tri-axial inertial sensors**, with different combinations of **accelerometer**, **gyroscope**, and **magnetometer**, and with different placements and sampling rates [2509.11789]. The placements explicitly mentioned are **L5 (lumbar, lower back)** and **thigh**. The sampling rates explicitly mentioned are **20 Hz** and **100 Hz** [2509.11789].

A recent streaming framework restricts analysis to a more homogeneous subset: **145 falls from 41 participants from the FARSEEING dataset with sensors placed at the L5 position and with sampling rates of 100 Hz, to maintain consistency and ensure high data quality** [2509.11789]. That restriction is methodological rather than intrinsic to the full repository. It indicates that FARSEEING’s heterogeneity is sufficiently large that many studies may need to define controlled subcohorts before model development.

The temporal structure of the recordings used in that study is also explicit. Each fall recording contains **20 minutes of accelerometer data**, with the **fall impact event at the 10th minute**, yielding a symmetric structure of 10 minutes pre-fall and 10 minutes post-fall [2509.11789]. The same work reports using **over 60 hours of IMU data** in total, which combines fall-centered recordings and additional non-fall continuous segments used to generate negative samples [2509.11789].

The following summary captures the dataset properties explicitly described in the recent literature.

| Aspect | FARSEEING characteristic | Source |
|---|---|---|
| Fall type | Real-world, clinically verified, annotated | [2509.11789] |
| Repository scale | 208 clinically verified falls with inertial sensors | [2509.11789] |
| Cohort used in streaming study | 145 falls from 41 participants; 92 fallers, mean age \(76.1 \pm 12.6\) years | [2509.11789] |
| Sensor placement | L5 and thigh | [2509.11789] |
| Sampling rates | 20 Hz and 100 Hz | [2509.11789] |
| Recording structure in streaming study | 20 minutes per signal; impact at the 10th minute | [2509.11789] |

In comparison with video-based fall datasets, FARSEEING is likely single- or few-view and noisier, with less controlled lighting, while remaining clinically more representative than staged datasets [2505.19889]. That comparison is conceptual rather than a statement about a single uniform acquisition protocol, because the repository itself is sensor-heterogeneous.

## 3. Annotation model and signal representation

A key feature of recent FARSEEING-based work is the use of a **multiphase fall model** derived from Becker et al. (2012). The fall event is decomposed into three phases: **falling phase** \([t_0, t_1)\), **impact phase** \([t_1, t_2)\), and **post-fall phase** \([t_2, t_3)\), with total duration

\[
w = t_3 - t_0.
\]

In the training segmentation used for accelerometer-based streaming detection, the impact annotation supplied by FARSEEING is taken as \(t_1\), and the surrounding boundaries are defined as \(t_0 = t_1 - 1\) second and \(t_2 = t_1 + 1\) second [2509.11789]. Each training fall segment is therefore

\[
[t_0, t_3) = [t_1 - 1, t_1 - 1 + w),
\]

which contains 1 second of pre-impact falling, 1 second of impact, and \(w-2\) seconds of post-fall behavior [2509.11789]. The paper explicitly treats the post-fall phase as important for separating true falls from near-falls.

The sensor signal is reduced from tri-axial accelerometry to a univariate magnitude,

\[
M = \sqrt{Acc_x^2 + Acc_y^2 + Acc_z^2},
\]

where \(Acc_x\), \(Acc_y\), and \(Acc_z\) denote the anterior-posterior, medial-lateral, and vertical axes, respectively [2509.11789]. This magnitude representation is used because it reduces sensitivity to sensor orientation and allows each segmented sample to be represented directly as a fixed-length vector. The preprocessing steps described are aggregation to magnitude, segmentation, and standardization; the study explicitly states that it performs **no feature extraction**, and that each segmented sample is represented as a vector [2509.11789].

For a window size \(w\) seconds at 100 Hz, each segment contains

\[
T = 100 \cdot w
\]

samples, and the training set is represented as

\[
\{X_{\text{train}} \in \mathbb{R}^{N \times T},\ y_{\text{train}} \in \{0,1\}^N\},
\]

with \(y_{\text{train}}=1\) for fall windows and \(0\) for ADL windows [2509.11789]. This formulation makes FARSEEING compatible with standard probabilistic classifiers over fixed-length univariate time series.

## 4. Negative sampling, class imbalance, and streaming evaluation

FARSEEING includes substantial non-fall data, operationalized as **activities of daily living (ADLs)** in the streaming study. Negative samples are generated from continuous segments **not labeled as falls** using **fixed-size overlapping sliding windows** of length \(w\) and **step size 1 second** [2509.11789]. To avoid populating the negative class with only inactivity, the study applies a signal-amplitude filter and retains only windows where the **maximum acceleration magnitude exceeds 1.4 g**, citing earlier FARSEEING work indicating that real fall impacts typically produce peaks above that value [2509.11789].

The resulting training distribution is explicitly imbalanced. Example folds contain approximately **602–1021 ADL windows** and **86–113 fall windows**, while the final training set contains **1089 ADL windows** and **124 fall windows** [2509.11789]. The paper characterizes this as clear imbalance, with ADLs outnumbering falls by roughly an order of magnitude.

Evaluation is designed as **real-time, continuous monitoring without prior knowledge of fall events**. Test signals are left unsegmented; each is a continuous 20-minute recording with one annotated fall [2509.11789]. A sliding window of length \(w\) and step 1 second is run over each signal, and the classifier outputs a fall probability \(p_k \in [0,1]\) for each window \(W_k\). The study then applies an additional rule: for windows where the **maximum acceleration in \((t_1,t_2]\)** is **less than 1.4 g**, the probability is set to zero [2509.11789]. Window-level probabilities are aggregated into a sample-level confidence map via

\[
P(t) = \max_{k:\ t \in W_k} p_k.
\]

This produces a continuous probability trace aligned with the raw signal [2509.11789].

Event-level detection is defined with an asymmetric tolerance window around the impact index \(f\). The ground-truth fall event is

\[
[f - 1, f + (w - 1)),
\]

and the tolerance window is

\[
R = [f - (w + t), f + t),
\]

with \(t = 20\) seconds [2509.11789]. For a detection window \(d\), the criterion is based on

\[
\text{IOU}(d, R) = \frac{|d \cap R|}{|d \cup R|}.
\]

A detection is a true positive if \(\text{IOU}(d, R) > 0\), a false positive if \(\text{IOU}(d, R)=0\), and a false negative if no detection overlaps \(R\) [2509.11789]. This definition is explicitly intended to be more realistic than per-sample labeling because it evaluates whether each fall triggers an acceptable alarm.

A common misconception in this area is that very high performance on pre-cut fall windows directly implies usefulness in continuous monitoring. The FARSEEING-based streaming protocol is constructed precisely to avoid that assumption: fall times are unknown at test time, windows are generated online, and evaluation is event-based rather than based on pre-segmented exemplars [2509.11789].

## 5. Benchmark use, classifiers, and reported results

Recent work on FARSEEING benchmarks five classifiers on the same raw-magnitude representation: **ExtraTrees**, **MiniRocket**, **QUANT**, **Catch22**, and **ResNet** [2509.11789]. All models use default hyperparameters in their respective libraries, and all are trained and evaluated under participant-wise splits, so that data from a given participant appear in only one set [2509.11789]. A **20% hold-out test cohort** is reserved as an untouched test set; the remaining **80%** is used for model and window-size selection via cross-validation [2509.11789].

The window sizes evaluated are

\[
w \in \{3, 5, 7, 10, 15, 30, 60\} \text{ seconds}.
\]

For each \(w\), the study reports **Balanced Accuracy**, **Precision**, **Recall**, **F1**, and **Detection Delay** using an untuned threshold \(\tau = 0.5\), and then performs cost-sensitive threshold tuning [2509.11789].

Across cross-validation, **QUANT** is reported as the best overall model, with \(w^\ast = 10\) seconds and the following mean performance: **BA = 0.94 (\(\pm 0.03\))**, **Precision = 0.79 (\(\pm 0.07\))**, **Recall = 0.87 (\(\pm 0.06\))**, **F1 = 0.82 (\(\pm 0.05\))**, and **Delay = 0.60 s (\(\pm 1.85\))** [2509.11789]. The same section reports **ExtraTrees** with **BA = 0.90**, **Precision = 0.77**, **Recall = 0.79**, **F1 = 0.78**, and delay approximately **2.43 s**; **MiniRocket** with **BA = 0.93**, **Precision = 0.70**, **Recall = 0.86**, **F1 = 0.77**, and **Delay = -6.90 s**; **Catch22** with **BA = 0.90**, **Precision = 0.55**, **Recall = 0.80**, **F1 = 0.64**; and **ResNet** with **BA = 0.86**, **Precision = 0.64**, **Recall = 0.73**, **F1 = 0.66** [2509.11789].

On the hold-out test set, the highlighted result is the QUANT model with \(w=10\) seconds. Without cost-sensitive tuning, at \(\tau = 0.5\), it achieves **BA = 0.95**, **Precision = 0.84**, **Recall = 0.90**, and **F1 = 0.87** [2509.11789]. With cost-sensitive tuning, using \(\tau^\ast = 0.40\), the reported performance becomes **BA = 1.00**, **Precision = 0.84**, **Recall = 1.00**, and **F1 = 0.91**, eliminating false negatives while adding one additional false alarm [2509.11789]. The same work reports **average inference time below 5 ms per sample**, interpreting this as compatible with real-time wearable deployment [2509.11789].

The cost-sensitive operating point is defined by the gain matrix

\[
G = \begin{bmatrix} 0 & -2 \\ -1 & 0 \end{bmatrix}
\]

and the gain function

\[
g(\tau) = -(\text{FP} + 2 \cdot \text{FN}),
\]

with thresholds scanned over 100 evenly spaced values in \([0,1]\) [2509.11789]. This formulation encodes the explicit assumption that the cost of a missed fall is at least twice that of a false alarm.

The comparison with earlier FARSEEING studies is methodologically important. The streaming study contrasts its results with prior non-streaming or pre-segmented evaluations, including Palmerini et al. (2020), Ramanathan & McDermott, and Aderinola et al. (2024), and argues that high non-streaming metrics may rely on known fall boundaries or pre-segmented windows [2509.11789]. This suggests that FARSEEING is not only a dataset but also a testbed for evaluation design.

## 6. Relation to OmniFall and interoperability with video benchmarks

Although FARSEEING is not part of OmniFall, the OmniFall paper provides a useful external frame for understanding its role. OmniFall unifies eight public fall detection datasets under a **consistent ten-class taxonomy** with dense frame-level segmentation, but those eight datasets are primarily staged and video-based; FARSEEING is absent from the benchmark [2505.19889]. OmniFall’s real-world component, OOPS-Fall, is curated from accident videos on the internet rather than from clinical or home-care monitoring [2505.19889].

The contrast is domain-specific. OOPS-Fall represents a broad “internet” fall domain with arbitrary viewpoints, dynamic framing, sports and everyday accidents, and often younger subjects, whereas FARSEEING is characterized as a **clinical/home-care domain** involving older adults, indoor environments, care facilities, chronic conditions, and assistive devices [2505.19889]. OOPS-Fall is therefore “in the wild” in a different sense from FARSEEING. The literature explicitly notes that models generalizing to OOPS-Fall may still struggle with FARSEEING because subject demographics, camera setups, and motion profiles are qualitatively different [2505.19889].

OmniFall also proposes a ten-class label set

\[
C = \{c_1, c_2, \dots, c_{10}\},
\]

including transient actions such as \(c_{\text{fall}}\), \(c_{\text{sit\_down}}\), \(c_{\text{lie\_down}}\), \(c_{\text{stand\_up}}\); static states such as \(c_{\text{fallen}}\), \(c_{\text{sitting}}\), \(c_{\text{lying}}\), \(c_{\text{standing}}\); and the additional classes \(c_{\text{walk}}\) and \(c_{\text{other}}\) [2505.19889]. The paper explicitly describes how FARSEEING could be mapped into this taxonomy: the collapsing phase would be labeled as \(c_{\text{fall}}\), time on the floor after a fall as \(c_{\text{fallen}}\), and pre-fall activities such as walking, sitting, or lying as \(c_{\text{walk}}\), \(c_{\text{sitting}}\), or \(c_{\text{lying}}\), respectively [2505.19889]. If fine-grained transitions are unavailable, they can be inferred from pose changes or treated as \(c_{\text{other}}\) [2505.19889].

That proposed alignment remains hypothetical rather than native to the repository. FARSEEING’s raw annotations are described as typically marking **fall events** and possibly **fallen intervals** more coarsely, whereas OmniFall requires dense frame-level segmentation [2505.19889]. A plausible implication is that making FARSEEING directly comparable to OmniFall would require substantial relabeling or semi-automatic segmentation.

## 7. Research significance, limitations, and methodological implications

FARSEEING is significant because it anchors fall detection research in genuine falls rather than safety-constrained simulations. The literature repeatedly frames it as a rare resource for studying whether algorithms remain effective under realistic conditions of long-duration monitoring, participant-wise generalization, class imbalance, and heterogeneous sensors [2509.11789]. In the broader benchmarking context, it functions as a clinically oriented “wild” domain that is conceptually different from both staged laboratory datasets and open-web accident videos [2505.19889].

Several limitations are also explicit. First, **sensor heterogeneity** is inherent to the repository: placements differ, sensor combinations differ, and sampling rates differ [2509.11789]. This is why recent work narrows analysis to **L5** and **100 Hz**. Second, the recent streaming framework uses **accelerometer magnitude only**, even though the underlying repository may include gyroscope and magnetometer channels [2509.11789]. Third, the dataset is clinically oriented and mainly older-adult, so caution is warranted when generalizing to younger populations or materially different clinical cohorts [2509.11789]. Fourth, although FARSEEING is relatively large for real-world fall data, the paper explicitly notes that the lack of public real-world fall datasets remains a major limitation [2509.11789].

The methodological implications are correspondingly clear. Continuous-monitoring evaluation should avoid pre-cut fall windows and participant leakage; windows should include pre-fall, impact, and post-fall phases; and event-level criteria with asymmetric tolerance should be preferred to purely framewise decisions [2509.11789]. In the video-benchmark literature, FARSEEING also motivates a staged-to-clinical generalization question parallel to OmniFall’s staged-to-wild evaluation on OOPS-Fall [2505.19889]. This suggests that future work integrating FARSEEING with taxonomies such as OmniFall’s would provide a direct measure of how far staged representations transfer into clinical deployment domains.

In that sense, FARSEEING serves two roles simultaneously: as a repository of clinically verified real-world falls and as a methodological corrective against overly optimistic evaluation practices.

Source: https://www.emergentmind.com/topics/farseeing-real-world-falls-dataset