This is a
SetFit model that can be used for Text Classification. This SetFit model uses
BAAI/bge-small-en-v1.5 as the Sentence Transformer embedding model. A MultiOutputClassifier instance is used for classification.
The model has been trained using an efficient few-shot learning technique that involves:
Then you can load this model and run inference.
1from setfit import SetFitModel
2
3# Download from the 🤗 Hub
4model = SetFitModel.from_pretrained("TheoLvs/wsl-prescreening-multi-v0.0")
5# Run inference
6preds = model("Wetland carbon sequestration capacity shows non-linear response to restoration technique and hydrological regime This study examines carbon sequestration outcomes from 124 wetland restoration projects across North America, Europe, and Asia over a 15-year monitoring period. Using standardized carbon flux measurements and sediment coring, we quantified how restoration approach and hydrological management influence carbon accumulation rates. Results demonstrate that restoration technique explained 53% of variance in carbon sequestration outcomes, with significant interaction effects between technique and hydroperiod. Projects restoring natural hydrological fluctuations achieved 2.7 times higher carbon accumulation rates than those maintaining static water levels. Vegetation community composition emerged as a significant mediating variable, with diverse native assemblages sequestering 34% more carbon than simplified or non-native communities. Our findings indicate that wetland restoration prioritizing hydrological dynamism and diverse vegetation delivers superior climate mitigation benefits while simultaneously enhancing habitat value and water quality functions.")
1@article{https://doi.org/10.48550/arxiv.2209.11055,
2 doi = {10.48550/ARXIV.2209.11055},
3 url = {https://arxiv.org/abs/2209.11055},
4 author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
5 keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
6 title = {Efficient Few-Shot Learning Without Prompts},
7 publisher = {arXiv},
8 year = {2022},
9 copyright = {Creative Commons Attribution 4.0 International}
10}