Spaces:
Runtime error
Runtime error
Upload 3 files
Browse files- app.py +35 -48
- requirements.txt +0 -6
- titles.csv +557 -0
app.py
CHANGED
|
@@ -1,57 +1,44 @@
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
| 3 |
from bertopic import BERTopic
|
|
|
|
| 4 |
import re
|
| 5 |
|
| 6 |
-
|
| 7 |
-
mongo_uri = "mongodb+srv://flaskuser:0000@cluster0.axlhy4c.mongodb.net/Researchersedst?retryWrites=true&w=majority"
|
| 8 |
-
client = MongoClient(mongo_uri)
|
| 9 |
|
| 10 |
-
|
| 11 |
-
db = client["Researchersedst"]
|
| 12 |
-
collection = db["experiencesmk"]
|
| 13 |
-
# 🧹 Cleaning function
|
| 14 |
def clean_text(text):
|
| 15 |
-
if not isinstance(text, str): return ""
|
| 16 |
text = text.lower()
|
| 17 |
-
text = re.sub(r"http\S+", "", text)
|
| 18 |
-
text = re.sub(r"[^a-z\s]", "", text)
|
| 19 |
-
text = re.sub(r"\s+", " ", text)
|
| 20 |
-
return text
|
| 21 |
-
|
| 22 |
-
#
|
| 23 |
-
def
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
| 36 |
-
|
| 37 |
-
|
| 38 |
-
|
| 39 |
-
|
| 40 |
-
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
fn=extract_topics_from_mongo,
|
| 47 |
-
inputs=[],
|
| 48 |
-
outputs=[
|
| 49 |
-
gr.Textbox(label="Top 10 Topics"),
|
| 50 |
-
gr.Dataframe(label="Summaries with Assigned Topics")
|
| 51 |
-
],
|
| 52 |
-
title="🧠 BERTopic from MongoDB",
|
| 53 |
-
description="Reads summaries from MongoDB and applies BERTopic topic modeling."
|
| 54 |
-
)
|
| 55 |
|
| 56 |
if __name__ == "__main__":
|
| 57 |
-
|
|
|
|
| 1 |
+
from flask import Flask
|
| 2 |
import gradio as gr
|
| 3 |
+
import pandas as pd
|
| 4 |
from bertopic import BERTopic
|
| 5 |
+
from sentence_transformers import SentenceTransformer
|
| 6 |
import re
|
| 7 |
|
| 8 |
+
app = Flask(__name__)
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
# Function to clean text
|
|
|
|
|
|
|
|
|
|
| 11 |
def clean_text(text):
|
|
|
|
| 12 |
text = text.lower()
|
| 13 |
+
text = re.sub(r"http\S+", "", text) # Remove URLs
|
| 14 |
+
text = re.sub(r"[^a-z\s]", "", text) # Remove special characters
|
| 15 |
+
text = re.sub(r"\s+", " ", text) # Remove extra whitespace
|
| 16 |
+
return text.strip()
|
| 17 |
+
|
| 18 |
+
# Function to perform topic modeling
|
| 19 |
+
def extract_topics():
|
| 20 |
+
# Read CSV file
|
| 21 |
+
df = pd.read_csv("titles.csv")
|
| 22 |
+
# Drop rows with missing titles
|
| 23 |
+
df = df.dropna(subset=["title"])
|
| 24 |
+
# Preprocess titles
|
| 25 |
+
df["clean_title"] = df["title"].apply(clean_text)
|
| 26 |
+
# Initialize embedding model
|
| 27 |
+
embedding_model = SentenceTransformer("all-MiniLM-L6-v2")
|
| 28 |
+
# Initialize BERTopic model
|
| 29 |
+
topic_model = BERTopic(embedding_model=embedding_model, min_topic_size=2)
|
| 30 |
+
# Fit the model
|
| 31 |
+
topics, _ = topic_model.fit_transform(df["clean_title"].tolist())
|
| 32 |
+
# Get topic information
|
| 33 |
+
topic_info = topic_model.get_topic_info()
|
| 34 |
+
return topic_info[["Topic", "Name", "Count"]].to_string(index=False)
|
| 35 |
+
|
| 36 |
+
# Gradio interface
|
| 37 |
+
demo = gr.Interface(fn=extract_topics, inputs=[], outputs="text")
|
| 38 |
+
|
| 39 |
+
@app.route("/")
|
| 40 |
+
def home():
|
| 41 |
+
return demo.launch(share=False, inline=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
|
| 43 |
if __name__ == "__main__":
|
| 44 |
+
app.run()
|
requirements.txt
CHANGED
|
@@ -1,8 +1,5 @@
|
|
| 1 |
-
# Core app dependencies
|
| 2 |
flask==2.3.3
|
| 3 |
gradio==4.25.0
|
| 4 |
-
|
| 5 |
-
# Topic modeling with BERTopic
|
| 6 |
bertopic==0.16.4
|
| 7 |
sentence-transformers
|
| 8 |
umap-learn>=0.5.1
|
|
@@ -10,6 +7,3 @@ hdbscan
|
|
| 10 |
scikit-learn
|
| 11 |
numpy
|
| 12 |
pandas
|
| 13 |
-
|
| 14 |
-
# MongoDB access (if needed)
|
| 15 |
-
pymongo==4.6.3
|
|
|
|
|
|
|
| 1 |
flask==2.3.3
|
| 2 |
gradio==4.25.0
|
|
|
|
|
|
|
| 3 |
bertopic==0.16.4
|
| 4 |
sentence-transformers
|
| 5 |
umap-learn>=0.5.1
|
|
|
|
| 7 |
scikit-learn
|
| 8 |
numpy
|
| 9 |
pandas
|
|
|
|
|
|
|
|
|
titles.csv
ADDED
|
@@ -0,0 +1,557 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
id,title,year,,
|
| 2 |
+
4,A Fault-Tolerant Implementation On FPGA of a Hopfield Neural Network,2012,,
|
| 3 |
+
5,SEU Simulation by Fault Injection in PSoC Device: Preliminary Results,2012,,
|
| 4 |
+
6,Fault-Tolerance Capabilities of a Software Implemented Hopfield Neural Network,2013,,
|
| 5 |
+
7,A method and an automated tool to perform SET fault-injection on HDL-based designs,2013,,
|
| 6 |
+
8,Classification of the Car Seats by Detecting the Muscular Fatigue in the EMG Signal,2005,,
|
| 7 |
+
9,An Unsupervised Classification Method Of Uterine Electromyography Signals: Classification For Detect,2009,,
|
| 8 |
+
10,FAULT DETECTION ALGORITHM USING DCS METHOD COMBINED WITH FILTERS BANK DERIVED FROM THE WAVELET TRANS,2009,,
|
| 9 |
+
11,Uterine EMG Analysis: Time-Frequency Based Techniques for Preterm Birth Detection,2009,,
|
| 10 |
+
12,A Neural Network Approach for Classification of Placental Tissues Using Discrete Wavelet Transform,2009,,
|
| 11 |
+
13,Classification of Non Stationary Signals Using Multiscale Decomposition,2010,,
|
| 12 |
+
14,RECOGNITION OF PLACENTAL TISSUES USING NEURAL NETWORK,2010,,
|
| 13 |
+
15,Energy distribution Analysis of the uterine Electromyograhy,2010,,
|
| 14 |
+
16,Int. J. Biometrics,2010,,
|
| 15 |
+
17,ECG modelling using wavelet networks: application to biometrics,2010,,
|
| 16 |
+
18,ECG modelling using wavelet networks: application to biometrics,2010,,
|
| 17 |
+
19,Fault Detection and Diagnosis using Wavelet Decomposition combined with Input-Output Mapping,2011,,
|
| 18 |
+
20,"Self Adaptive growing Neural Network Classifier for Faults Detection and Diagnosis, Elsevier",2011,,
|
| 19 |
+
21,Real-Time ECG Transmission from Muti-patient toward multi-physician using wireless communications te,2011,,
|
| 20 |
+
22,Artificial Neural Network for Transfer Function Placental Development: DCT and DWT approach,2011,,
|
| 21 |
+
23,A Fault-Tolerant Implementation On FPGA of a Hopfield Neural Network,2012,,
|
| 22 |
+
24,SEU Simulation by Fault Injection in PSoC Device: Preliminary Results,2012,,
|
| 23 |
+
25,Fault-Tolerance Capabilities of a Software Implemented Hopfield Neural Network���,2013,,
|
| 24 |
+
26,A method and an automated tool to perform SET fault-injection on HDL-based designs,2013,,
|
| 25 |
+
27,"Applications of Spectral Distributions to some Cauchy Problems in Lp(Rn), Trends in Semigroup Theory",,,
|
| 26 |
+
28,Classification of the Car Seats by Detecting the Muscular Fatigue in the EMG Signal,2005,,
|
| 27 |
+
29,An Unsupervised Classification Method Of Uterine Electromyography Signals,2009,,
|
| 28 |
+
30,FAULT DETECTION ALGORITHM USING DCS METHOD COMBINED WITH FILTERS BANK DERIVED FROM THE WAVELET TRANS,2009,,
|
| 29 |
+
31,EMG Analysis: Time-Frequency Based Techniques for Preterm Birth Detection.,2009,,
|
| 30 |
+
32,A Neural Network Approach for Classification of Placental Tissues Using Discrete Wavelet Transform,2009,,
|
| 31 |
+
33,Classification of Non Stationary Signals Using Multiscale Decomposition,2010,,
|
| 32 |
+
34,TRANQUART RECOGNITION OF PLACENTAL TISSUES USING NEURAL NETWORK,2010,,
|
| 33 |
+
35,Energy distribution Analysis of the uterine Electromyograhy,2010,,
|
| 34 |
+
36,ECG modelling using wavelet networks: application to biometrics,2010,,
|
| 35 |
+
37,Fault Detection and Diagnosis using Wavelet Decomposition combined with Input-Output Mapping,2011,,
|
| 36 |
+
38,"Self Adaptive growing Neural Network Classifier for Faults Detection and Diagnosis, Elsevier",2011,,
|
| 37 |
+
39,Real-Time ECG Transmission from Muti-patient toward multi-physician using wireless communications te,2011,,
|
| 38 |
+
40,Artificial Neural Network for Transfer Function Placental Development: DCT and DWT approach,2011,,
|
| 39 |
+
41,Embedding Prior Knowledge within Compressed Sensing by Neural Networks,2011,,
|
| 40 |
+
42,Parameter Selection Algorithm with Self Adaptive Growing Neural Network Classifier for Diagnosis,2012,,
|
| 41 |
+
43,SEU Simulation by Fault Injection in PSoC Device: Preliminary Results,2012,,
|
| 42 |
+
44,Fault-Tolerance Capabilities of a Software Implemented Hopfield Neural Network,2013,,
|
| 43 |
+
45,AN OPTIMAL IMPLEMENTATION ON FPGA OF A HOPFIELD NEURAL NETWORK,2011,,
|
| 44 |
+
46,Time-frequency learning machines for non-stationary detection using surrogates,2011,,
|
| 45 |
+
47,A New Chaotic Encryption Algorithm to Enhance the Security of ZigBee and Wi-Fi networks,2011,,
|
| 46 |
+
48,"Secure IP over satellite DVB using chaotic sequences�������, Engineering ",2010,,
|
| 47 |
+
49,An Accurate Analytical Model for 802.11e EDCA under Different Traffic Conditions with Contention Fre,2011,,
|
| 48 |
+
50,Towards voice/video application support in 802.11e WLANs: A model-based admission control algorithm,2014,,
|
| 49 |
+
51,Robust Self-organized Wireless Sensor Network: A Gene Regulatory Network Bio-Inspired Approach,2014,,
|
| 50 |
+
52,DATA AGGREGATION IN WSNS: STATE OF THE ART AND A MULTI-CRITERIA PROPOSAL�������. Wireless ,2010,,
|
| 51 |
+
53,Crisis Management Using MAS-based Wireless Sensor Network,2013,,
|
| 52 |
+
54,Applications of WSANs in the smart grid : a double energy conservation challenge,2013,,
|
| 53 |
+
55,Factors that may influence the performance of wireless sensor networks���,2010,,
|
| 54 |
+
56,Agent Strategy Data Gathering for Long Life WSN,2010,,
|
| 55 |
+
57,A Dynamic Trust-based Context-Aware Authentication Framework With Privacy Preserving,2010,,
|
| 56 |
+
58,An alternative ray tracing algorithm for understanding scenes with embedded objects,2010,,
|
| 57 |
+
59,DATA AGGREGATION IN WSNS : A SURVEY,2011,,
|
| 58 |
+
60,power-aware agent-solution for information communication in WSN,2011,,
|
| 59 |
+
61,power-aware agent-solution for information communication in WSN,2011,,
|
| 60 |
+
62,Enhancement of a Data Warehouse Performance using Association Rules Technique,2011,,
|
| 61 |
+
63,Intelligent Decision Support System for Osteoporosis Prediction.,2012,,
|
| 62 |
+
64,Management of Bus Driver Duties using data mining,2011,,
|
| 63 |
+
65,Dynamic Assignment of Crew Reserve in Airlines,2011,,
|
| 64 |
+
66,"Neural Networks Modelling for Aircraft Flight Dynamics, W.C. Lu",2011,,
|
| 65 |
+
67,Investigating the Efficacy of Dimensionality Reduction in Predicting Class-II MHC Peptide Bindings,2011,,
|
| 66 |
+
68,Intelligent Predictive Osteoporosis System,2011,,
|
| 67 |
+
69,Neural Networks Modelling for Aircraft Flight Guidance Dynamics,2012,,
|
| 68 |
+
70,An Optimistic Concurrency Control Approach Applied to Temporal Data in Real-time Database Systems,2012,,
|
| 69 |
+
71,Fraud Detection in Mobile Telecommunication,2012,,
|
| 70 |
+
72,Dynamic Features Selection for Heart Disease Classification,2013,,
|
| 71 |
+
73,Image Compression Approach using Segmentation and Total Variation Regularization,2013,,
|
| 72 |
+
74,Image compression based on fuzzy segmentation and anisotropic diffusion,2012,,
|
| 73 |
+
75,"Trends in Developing Metaheuristics, Algorithms, and Optimization Approaches",2012,,
|
| 74 |
+
76,Image Compression Approach using Segmentation and Total Variation Regularization,2013,,
|
| 75 |
+
77,Recent Advances in Intelligent Technologies and Information Systems,2014,,
|
| 76 |
+
78,New XACML-AspectBPEL Approach for Composite Web Services Security,2013,,
|
| 77 |
+
79,Complexity Reduction and Quality Enhancement in Image Coding,2013,,
|
| 78 |
+
80,Influence of Ambiguity Cluster on Quality Improvement in Image Compression,2013,,
|
| 79 |
+
81,The Link between Maximum Entropy Principle and Support Vector Machines,2013,,
|
| 80 |
+
82,Camino. Management of Bus Driver Duties using data mining,2011,,
|
| 81 |
+
84,Dynamic Assignment of Crew Reserve in Airlines,2011,,
|
| 82 |
+
85,An Efficient Approach for Image Recognition using Data Mining,2011,,
|
| 83 |
+
86,Dynamic Rough Sets Features Reduction,2011,,
|
| 84 |
+
87,Dynamic programming applied to rough sets attribute reduction,2011,,
|
| 85 |
+
88,Intelligent Data Compression Approach in Multidimensional Data Warehouse,2011,,
|
| 86 |
+
89,WiMAX Double Movable Boundary Scheme In the Vehicle to Infrastructure Communication Scenario,2011,,
|
| 87 |
+
90,"Vehicular Networks: architecture, protocols and standards",2012,,
|
| 88 |
+
91,Analytical and Numerical Approaches in Coagulation of Particles,2011,,
|
| 89 |
+
92,Local existence and uniqueness for a semi-linear accretive wave equation,2011,,
|
| 90 |
+
93,Semigroup Forum (2010),2010,,
|
| 91 |
+
94,Similarity solutions to evolution equations in one-dimensional interfaces,2011,,
|
| 92 |
+
95,Fluorination of single walled carbon nanotubes at low temperature : Towards the reversible fluorine ,2011,,
|
| 93 |
+
96,Blow-up solutions of second-order differential inequalities with a nonlinear,2012,,
|
| 94 |
+
97,Applied and Computational Mathematics,2012,,
|
| 95 |
+
98,Enhanced and parameterless Locality Preserving Projections for face recognition,2011,,
|
| 96 |
+
99,Dynamics of dislocation densities in a bounded channel. Part I: smooth solutions to a singular coupl,2010,,
|
| 97 |
+
100,Convergence proof of a Monte Carlo scheme for the resolution of the Smoluchowski coagulation equatio,2009,,
|
| 98 |
+
101,Smoluchowski���s Coagulation Equation: Convergence Results and Analysis of Particle Growth for,2009,,
|
| 99 |
+
102,Derivation of seawater intrusion models by formal asymptotics,2012,,
|
| 100 |
+
103,IsokineticTesting of Evertor and Invertor Muscles in Patients with Chronic Ankle Instability,2013,,
|
| 101 |
+
104,Effet de l���Entrainement des Muscles Respiratoires sur l���Am��lioration des Param�,2013,,
|
| 102 |
+
105,Nouvelle technique passive d'ouverture de la trompe d'Eustache. ��valuation par tympanom��tr,2012,,
|
| 103 |
+
106,Combining data fusion with multiresolution analysis for improving the classification accuracy of ute,2012,,
|
| 104 |
+
107,Time-frequency learning machines for nonstationarity detection using surrogates,2012,,
|
| 105 |
+
108,An Unsupervised Classification of the Car Seats by Detecting the Muscular Fatigue in the EMG Signal,2009,,
|
| 106 |
+
109,FAULT DETECTION ALGORITHM USING DCS METHOD COMBINED WITH FILTERS BANK DERIVED FROM THE WAVELET TRANS,2009,,
|
| 107 |
+
110,EMG Analysis: Time-Frequency Based Techniques for Preterm Birth Detection,2009,,
|
| 108 |
+
111,A Neural Network Approach for Classification of Placental Tissues Using Discrete Wavelet Transform,2010,,
|
| 109 |
+
112,A Neural Network Approach for Classification of Placental Tissues Using Discrete Wavelet Transform,2009,,
|
| 110 |
+
113,Classification of Non Stationary Signals Using Multiscale Decomposition,2010,,
|
| 111 |
+
114,RECOGNITION OF PLACENTAL TISSUES USING NEURAL NETWORK,2010,,
|
| 112 |
+
115,RECOGNITION OF PLACENTAL TISSUES USING NEURAL NETWORK,2010,,
|
| 113 |
+
116,Energy distribution Analysis of the uterine Electromyograhy,2010,,
|
| 114 |
+
117,ECG modelling using wavelet networks: application to biometrics,2010,,
|
| 115 |
+
118,Fault Detection and Diagnosis using Wavelet Decomposition combined with Input-Output Mapping,2011,,
|
| 116 |
+
119,First report of Oxa-72-producing Acinetobacter calcoaceticus in Lebanon,2016,,
|
| 117 |
+
120,Molecular Mechanisms and Epidemiology of Resistance in Streptococcus pneumoniae I n the Middle East ,2017,,
|
| 118 |
+
121,Typing and comparative genome analysis of Brucella melitensis isolated from Lebanon,2017,,
|
| 119 |
+
122,"Tuberculosis, war, and refugees: Spotlight on the Syrian humanitarian crisis",2018,,
|
| 120 |
+
123,Extended-spectrum beta-lactamase (ESBL)- and carbapenemase-producing Enterobacteriaceae in water sou,2018,,
|
| 121 |
+
124,Identification of the first bacteriocin isolated in Lebanon extracted via a modified adsorption-deso,2018,,
|
| 122 |
+
125,"Prevalence, transmission, and host specificity of Cryptosporidium spp. in various animal groups from",2017,,
|
| 123 |
+
126,"Prevalence of E. coli O157:H7 in Raw Minced Beef at Slaughterhouses in Tripoli, Lebanon",2018,,
|
| 124 |
+
127,High association of Cryptosporidium spp. infection with colon adenocarcinoma in Lebanese patients,2017,,
|
| 125 |
+
128,Genomic history of the seventh pandemic of cholera in Africa,2017,,
|
| 126 |
+
129,extended-spectrum beta-lactamases in raw milk in Lebanon: epidemic spread of dominant Klebsiella pne,2017,,
|
| 127 |
+
130,Typing and comparative genome analysis of Brucella melitensis isolated from Lebanon,2017,,
|
| 128 |
+
131,Marker of coxsackievirus-B4 infection in saliva of patients with type 1 diabetes,2017,,
|
| 129 |
+
132,Molecular mechanisms and epidemiology of resistance in Streptococcus pneumoniae in the Middle East r,2017,,
|
| 130 |
+
133,Bifidobacteria-derived lipoproteins inhibit infection with coxsackievirus B4 in vitro,2017,,
|
| 131 |
+
134,N-acetylcysteine potentiates diclofenac toxicity in Saccharomyces cerevisiae: stronger potentiation ,2017,,
|
| 132 |
+
135,"Prevalence, antibiotic susceptibility and characterization of antibiotic resistant genes among carba",2017,,
|
| 133 |
+
136,Molecular detection of genes responsible for macrolide resistance among Streptococcus pneumoniae iso,2017,,
|
| 134 |
+
137,Identification of novel functions for hepatitis C virus envelope glycoprotein E1 in virus entry and ,2017,,
|
| 135 |
+
138,IncFIIk plasmid harbouring an amplification of 16S rRNA methyltransferase-encoding gene rmtH associa,2017,,
|
| 136 |
+
139,High Prevalence of Non-ST131 CTX-M-15-Producing Escherichia coli in Healthy Cattle in Lebanon,2017,,
|
| 137 |
+
140,Fast and complete decontamination of bacteria and yeast from water by silica-supported carbon nanopa,2017,,
|
| 138 |
+
141,Alarming increase in prevalence of Neisseria gonorrhoeae infections associated with a high level of ,2016,,
|
| 139 |
+
142,Wide spread of OXA-23-producing carbapenem-resistant Acinetobacter baumannii belonging to clonal com,2016,,
|
| 140 |
+
143,Diversity of Acinetobacter species isolated from different environments in Lebanon: a nationwide stu,2016,,
|
| 141 |
+
144,Antimicrobial activity and high thermostability of a novel blis secreted by Enterococcus mundtii iso,2016,,
|
| 142 |
+
145,Emergence of NDM-1 and OXA-72 producing Acinetobacter pittii clinical isolates in Lebanon,2016,,
|
| 143 |
+
146,Lebanese Society of Infectious Diseases Study Group (LSID study group).Surveillance of antimicrobial,2016,,
|
| 144 |
+
147,"Prevalence and Risk Factors for Intestinal Protozoan Infections with Cryptosporidium, Giardia, Blast",2016,,
|
| 145 |
+
148,Reservoirs of Non-baumannii Acinetobacter Species,2016,,
|
| 146 |
+
149,Whole-Genome Sequence of a blaOXA-48-Harboring Raoultella ornithinolytica Clinical Isolate from Leba,2016,,
|
| 147 |
+
150,Draft Genome Sequences of Acinetobacter baumannii Strains Harboring the blaNDM-1 Gene Isolated in Le,2016,,
|
| 148 |
+
151,Construction of a subgenomic CV-B3 replicon expressing emerald green fluorescent protein to assess v,2016,,
|
| 149 |
+
152,Emergence of NDM-1 and OXA-72 producing Acinetobacter pittii clinical isolates in Lebanon ,2016,,
|
| 150 |
+
153,"Antibiotic Susceptibility of Salmonella spp., Shigella spp. And enteropathogenic Escherichia coli st",2016,,
|
| 151 |
+
154,Evaluation of the Antibacterial Activity of Micromeria barbata in Lebanon,2016,,
|
| 152 |
+
155,"Prevalence, transmission, and host specificity of Cryptosporidium spp. in various animal groups from",2017,,
|
| 153 |
+
156,Molecular Epidemiology of Blastocystis sp. in Various Animal Groups from Two French Zoos and Evaluat,2017,,
|
| 154 |
+
157,"Prevalence, risk factors for infection and subtype distribution of the intestinal parasite Blastocys",2016,,
|
| 155 |
+
158,"Blastocystis, un protozoaire ent��rique ��",2016,,
|
| 156 |
+
159,Colonization with the enteric protozoa Blastocystis is associated with increased diversity of human ,2016,,
|
| 157 |
+
160,"Prevalence and Risk Factors for Intestinal Protozoan Infections with Cryptosporidium, Giardia, Blast",2016,,
|
| 158 |
+
161,", Early syncope detection during head up tilt test by analyzing interactions between cardio-vascular",2016,,
|
| 159 |
+
162,Virtual 3D city model as a priori information source for vehicle localization system,2016,,
|
| 160 |
+
163,EEGNET: An Open Source Tool for Analyzing and Visualizing M/EEG Connectome,2015,,
|
| 161 |
+
164,Functional Brain Connectivity as a New Feature for P300 Speller,2016,,
|
| 162 |
+
165,Virtual 3D city model as a priori information source for vehicle localization system,2016,,
|
| 163 |
+
166,Spatiotemporal Analysis of Visual Evoked Responses Using Dense EEG,2016,,
|
| 164 |
+
167,First-and second-order cyclostationary signal separation using morphological component analysis. Dig,2016,,
|
| 165 |
+
168,On the benefits of using HD-sEMG technique for estimating muscle forceARTICLE in COMPUTER METHODS IN,2015,,
|
| 166 |
+
169,Electroencephalography Measurement to Compare Visual and Kinesthetic Motor Imagery of Squat Vertical,2016,,
|
| 167 |
+
170,Studying Mental Visual Imagery and Action Observation Using Electro-Oculogram (EOG),2016,,
|
| 168 |
+
171,SimNet: a Novel Method for Quantifying Brain Network Similarity,2016,,
|
| 169 |
+
172,Automatic Fall Detection System using Sensing Floors,2016,,
|
| 170 |
+
173,Secure hash algorithm based on efficient chaotic neural network. In The 11th International Conferenc,2016,,
|
| 171 |
+
174,In 2016 IEEE 38th Annual International Conference of the Engineering in Medicine and Biology Society,2016,,
|
| 172 |
+
175,Human static postures analysis using empirical mode decomposition.,2016,,
|
| 173 |
+
176,Computational modeling of high frequency oscillations recorded with clinical intracranial macroelect,2016,,
|
| 174 |
+
177,Epileptogenic networks and dense EEG,2016,,
|
| 175 |
+
178,Identification of epileptogenic networks from dense EEG: A model-based study,2015,,
|
| 176 |
+
179,EEGNET: A Novel Tool for Processing and Mapping EEG Functional Networks ,2015,,
|
| 177 |
+
180,Cancer Treatment Response Evaluation Using Photoacoustic Signal Envelop Statistics: A Preliminary St,2016,,
|
| 178 |
+
181,Differentiation between Cellularized and Decellularized Mouse Kidneys using Mean Scatterer Spacing: ,2016,,
|
| 179 |
+
182,Mean Scatterer Spacing Estimation from Pellets Using Cepstral Analysis: A Preliminary Study,2015,,
|
| 180 |
+
183,Cloud of Things Modeling for Efficient and Coordinated Resources Provisioning,2017,,
|
| 181 |
+
184,Experience deploying a 5G C-RAN virtualized experimental setup using OpenAirInterface,2017,,
|
| 182 |
+
185,Towards using blockchain technology for data access management,2017,,
|
| 183 |
+
186,Towards using blockchain technology for eHealth data access management,2017,,
|
| 184 |
+
187,Resources optimization and efficient distribution of shared virtual sensors in sensor-cloud,2017,,
|
| 185 |
+
188,Towards an Efficient Service Provisioning in Cloud of Things (CoT),2016,,
|
| 186 |
+
189,Performance Evluation of User Centric Multihoming Strategies in LTE/WiFi Networks,2016,,
|
| 187 |
+
190,Predicting ARDS using the MIMIC II physiological database,2016,,
|
| 188 |
+
191,Features Extraction from Vital Signs to Characterize Acute Respiratory Distress Syndrome,2018,,
|
| 189 |
+
192,Data fusion for predicting ARDS using the MIMIC II physiological database,2016,,
|
| 190 |
+
193,Predicting ARDS using the MIMIC II physiological database,2016,,
|
| 191 |
+
194,Voltage Harmonic Distortion Compensation with non-Linear Load Sharing of Droop Controlled Islanded M,2017,,
|
| 192 |
+
195,Grid tie indirect matrix converter operating with unity power factor under double space vector modul,2017,,
|
| 193 |
+
196,Normal functioning of a Wind turbine based on coupled electromechanical dynamic model - The DFIG cas,2017,,
|
| 194 |
+
197,Optimal Residential Load Scheduling Model in Smart Grid Environment ,2017,,
|
| 195 |
+
198,Hidden High Voltage Safety Risks for Parallel High Voltage Transmission Lines ,2017,,
|
| 196 |
+
199,Thermal and Electrical Load Management based on Demand Response and Renewable Energy Resources,2017,,
|
| 197 |
+
200,Control and Optimization of Energy Flows: Notes on implementation of the charging and discharging of,2017,,
|
| 198 |
+
201,Control and Optimization of Energy Flows: Notes on implementation of the charging and discharging of,2017,,
|
| 199 |
+
202,Fault detection and exclusion for faulty GPS observations using IRAIM method and the observations pr,2017,,
|
| 200 |
+
203,Fault detection and exclusion for faulty GPS observations using IRAIM method and the observations pr,2017,,
|
| 201 |
+
204,"Different virtual impedance loops for Power sharing enhancement in Islanded Microgrid ����, EE",2017,,
|
| 202 |
+
205,"Different virtual impedance loops for Power sharing enhancement in Islanded Microgrid ����, EE",2017,,
|
| 203 |
+
206,Design of Matrix Converter for Integration of PV Panels in Power Systems ,2017,,
|
| 204 |
+
207,Grid tie indirect matrix converter operating with unity power factor under double space vector modu,2017,,
|
| 205 |
+
208,Comparative Evaluation of Cluster Collection Networks Versus Conventional Configurations for Wind Fa,2016,,
|
| 206 |
+
209,The 4Q-Switch Commutation Issues in Matrix Conversion Systems ,2016,,
|
| 207 |
+
210,Model Predictive Controller with Fixed Switching Frequency for a 3L-NPC inverter ,2017,,
|
| 208 |
+
211,�� Analytical Model of Multiple Fault Effect in Three Phases Electrical Systems ,2016,,
|
| 209 |
+
212,Power Sharing Enhancement for Islanded Microgrid Based on State estimation of PCC rms-Voltage,2016,,
|
| 210 |
+
213,Power Control and Energy Management of a Lebanese Smart Micro grid ,2016,,
|
| 211 |
+
214,Survey on the efficiency and the profitability of an hybrid Wind/PV Hybrid System: The Lebanese case,2016,,
|
| 212 |
+
215,Residential Energy Management in Smart Grid Considering Renewable Energy Sources and Vehicle-to-Grid,2016,,
|
| 213 |
+
216,Entre le changement climatique et la transition ��nerg��,2016,,
|
| 214 |
+
217,Impacts des cons��quences du changement climatique sur l'��d,2016,,
|
| 215 |
+
218,Power Sharing Enhancement for Islanded Microgrid Based on State estimation of PCC rms-Voltage ,2016,,
|
| 216 |
+
219,Evaluation Study of Different Useful Life Estimation Techniques of Lithium-Ion Battery ,2016,,
|
| 217 |
+
220,Numerical Versus Analytical Techniques for Healthy and Faulty Surface Permanent Magnet Machine,2016,,
|
| 218 |
+
221,Influence of Variations of Operating Parameters on the Functioning of a PEM Electrolyzer and PEM Fue,2016,,
|
| 219 |
+
222,Influence of Variations of Operating Parameters on the Functioning of a PEM Electrolyzer and PEM Fue,2016,,
|
| 220 |
+
223,Finite Control Set Model Predictive Controller for Grid Connected Inverter Design ,2016,,
|
| 221 |
+
224,") Compact and Super Broadband Volumetric Folded Dipole Antenna for Mobile Applications, 2009 ",2009,,
|
| 222 |
+
225,FDTD Simulation of Reflector Antenna with Metallic Strips for Side Lobe Reduction ,2009,,
|
| 223 |
+
226,Compact and Super Broadband Volumetric Folded Dipole Antenna for Mobile Application,2009,,
|
| 224 |
+
227,Design of a Compact and Super Broadband Volumetric Folded Dipole Antenna for Mobile Applications,2010,,
|
| 225 |
+
228,/ Effects of Metallic Strips on the Radiation Characteristics of Dish Reflector Antennas,2010,,
|
| 226 |
+
229,Sidelobe reduction in offset dish parabolic reflectors using mettalic scatters,2011,,
|
| 227 |
+
230,Biological Effects of Antenna Positioning on Vehicle���s Ope,2011,,
|
| 228 |
+
231,Enhancement of directional characteristics of corner reflector antennas using metallic diffractors,2012,,
|
| 229 |
+
232,Automatic Fall Detection System using Sensing Floors,2016,,
|
| 230 |
+
233,Elder Tracking and Fall Detection System using Smart Tiles,2016,,
|
| 231 |
+
234,�������������������������������� ������������������������� ������������������������������ ������������������������������������� ������������������������������������������� ������������������������� ����,2009,,
|
| 232 |
+
235,Bended slotted rectangular waveguide antenna with improved directional characteristics,2012,,
|
| 233 |
+
236,������������������������������������� ��������������������������������������������������������� ���������������������������������������������������������� ������������������������� ������������������������,2013,,
|
| 234 |
+
237,Applications on Ring-Shaped Omni-Directional Waveguide Antennas,2013,,
|
| 235 |
+
238,Fast multidimensional spectroscopy for sparse spectra,2014,,
|
| 236 |
+
239,Parameters extraction and monitoring in uterine EMG signals. Detection of preterm deliveries,2013,,
|
| 237 |
+
240,Comparison of Different EHG Feature Selection Methods for the Detection of Preterm Labor,2013,,
|
| 238 |
+
241,Selection Algorithm for Parameters to Characterize Uterine EHG Signals for the Detection of Preterm ,2014,,
|
| 239 |
+
242,"Physiological And Biomechanical Approach For Human Finger Movement: Modeling, Simulation And Experim",2014,,
|
| 240 |
+
243,", Kernel based support vector machine for the early detection of syncope during head-up tilt test",2014,,
|
| 241 |
+
244,Presentation of a new approach for the separation of GRF signals components,2015,,
|
| 242 |
+
245,Dimension Reduction of Hyperspectral Image with Rare Event Preserving,2015,,
|
| 243 |
+
246,", A new algorithm for spatiotemporal analysis of brain functional connectivity",2015,,
|
| 244 |
+
247,Early syncope detection during head up tilt test by analyzing interactions between cardio-vascular s,,,
|
| 245 |
+
248,Virtual 3D city model as a priori information source for vehicle localization system,2016,,
|
| 246 |
+
249,An Open Source Tool for Analyzing and Visualizing M/EEG Connectome,2015,,
|
| 247 |
+
250,Functional Brain Connectivity as a New Feature for P300 Speller,2016,,
|
| 248 |
+
251,Virtual 3D city model as a priori information source for vehicle localization system,2016,,
|
| 249 |
+
252,Spatiotemporal Analysis of Visual Evoked Responses Using Dense EEG. World Academy of Science,2016,,
|
| 250 |
+
253,First-and second-order cyclostationary signal separation using morphological component analysis,2016,,
|
| 251 |
+
254,Elder Tracking and Fall Detection System using Smart Tiles,2016,,
|
| 252 |
+
255,Analysis of Human Balance Control using Empirical Mode Decomposition,2016,,
|
| 253 |
+
256,", Automatic fall detection system using sensing floors",2016,,
|
| 254 |
+
257,Automatic analysis of human posture equilibrium using empirical mode decomposition,2017,,
|
| 255 |
+
258,The dynamic functional core network of the human brain at rest,2017,,
|
| 256 |
+
259,Autofocus on Depth of Interest for 3D Image Coding,2017,,
|
| 257 |
+
260,", Automatic Segmentation of Stabilometric Signals Using Hidden Markov Model Regression",2017,,
|
| 258 |
+
261,Towards a Legal Rule-Based System Grounded on the Integration of Criminal Domain Ontology and Rules,2017,,
|
| 259 |
+
262,Reduced integration and improved segregation of functional brain networks in Alzheimer���s d,2018,,
|
| 260 |
+
263,On the origin of epileptic High Frequency Oscillations observed on clinical electrodes,2018,,
|
| 261 |
+
264,Parzen window distribution as new membership function for ANFIS algorithm-Application to a distillat,2018,,
|
| 262 |
+
265,One Line fault detection by using Filters Bank and Artificial Neural Networks. Proceedings of ICTTA�,2006,,
|
| 263 |
+
266,ICTTA���06 International Conference on Information & Communication Techno,2006,,
|
| 264 |
+
267,About the Detectability of DCS Algorithm Combined with Filters Bank,2007,,
|
| 265 |
+
268,ON-LINE CHANGE DETECTION BY USING FILTERS BANK/WAVELET TRANSFORM AND DYNAMIC CUMULATIVE SUM METHOD,2006,,
|
| 266 |
+
269,FAULT DETECTION ALGORITHM USING DCS METHOD COMBINED WITH FILTERS BANK DERIVED FROM THE WAVELET TRANS,2007,,
|
| 267 |
+
270,FAULT DETECTION BY MEANS OF DCS ALGORITHM COMBINED WITH FILTERS BANK:APPLICATION TO THE TENNESSEE EA,2008,,
|
| 268 |
+
271,Discrete Wavelet Transform Based on Supervised Training for Classification of Placental tissues,2006,,
|
| 269 |
+
272,Differentiating between patients with vasovagal syncope using the analysis of heart rate variability,2013,,
|
| 270 |
+
273,Parameters Extraction and Monitoring in Uterine EMG Signals. Detection of Preterm Deliveries,2013,,
|
| 271 |
+
274,An automatic algorithm for human identification using hand X-ray images,2013,,
|
| 272 |
+
275,An Automatic Segmentation To Extract Bone Tissue in Hand X-Ray Images,2013,,
|
| 273 |
+
276,"Binary particle swarm optimization for feature Selection on uterine electrohysterogram signal,����",2013,,
|
| 274 |
+
277,"Feature Selection Techniques in Uterine Electrohysterography Signal,������� in XIII Medite",2013,,
|
| 275 |
+
278,Efficient depth map compression exploiting correlation with texture data in multiresolution predicti,2013,,
|
| 276 |
+
279,Spatiotemporal analysis of brain functional connectivity,2014,,
|
| 277 |
+
280,", New T-wave parameters describing repolarization abnormalities induced by drug",2014,,
|
| 278 |
+
281,Audio watermarking system based on Frequency Hopping modulation,2014,,
|
| 279 |
+
282,Data mining in healthcare information systems: Case studies in Northern Lebanon,2014,,
|
| 280 |
+
283,Embedding and extracting multiple watermaks in audio signals using CDMA,2014,,
|
| 281 |
+
284,Steganalysis of a chaos-based steganographic method,2014,,
|
| 282 |
+
285,A new phase space analysis algorithm for the early detection of syncope during head-up tilt tests,2014,,
|
| 283 |
+
286,Contribution of the cyclic correlation in gait analysis: Variation between fallers and non-fallers,2014,,
|
| 284 |
+
287,A joint 3D image semantic segmentation and scalable coding scheme with ROI approach,2014,,
|
| 285 |
+
288,Hash Function based on Efficient Chaotic Neural Network,2015,,
|
| 286 |
+
289,Recognition of shape parts using shape geodesies,2015,,
|
| 287 |
+
290,Hidden biometrie identification/authentication based on phalanx selection from hand X-ray images wit,2015,,
|
| 288 |
+
291,"Fabrice wendling, Reconstruction of depth-EEG signals: A spatiotemporal model to simulate realistic ",2015,,
|
| 289 |
+
292,Non-linear analysis of human stability during static posture,2015,,
|
| 290 |
+
293,Beam shaping systems for small animal proton therapy,2015,,
|
| 291 |
+
294,Pregnancy monitoring using graph theory based analysis,2015,,
|
| 292 |
+
295,An efficient P300-speller for Arabic letters,2015,,
|
| 293 |
+
296,Physical activity recognition using inertial wearable sensors���A review of supervised classif,2015,,
|
| 294 |
+
297,Driver stress level detection using HRV analysis,2015,,
|
| 295 |
+
298,A new cyclostationarity model applied to biomechanical signals,2015,,
|
| 296 |
+
299," Towards a usable and an efficient elder fall detection system,",2015,,
|
| 297 |
+
300,Channel selection for monovariate analysis on EHG,2015,,
|
| 298 |
+
301,Parts-based shape recognition via shape geodesics,2015,,
|
| 299 |
+
302,Detecting labor using graph theory on connectivity matrices of uterine EMG,2015,,
|
| 300 |
+
303,Classification of pregnancy and labor contractions using a graph theory based analysis,2015,,
|
| 301 |
+
304,A novel algorithm for measuring graph similarity: application to brain networks,2015,,
|
| 302 |
+
305,Comparison of Feature selection for Monopolar and Bipolar EHG signal,2015,,
|
| 303 |
+
306,From EHG signals to graphs: A new method for predicting premature birth,2015,,
|
| 304 |
+
307,Spatiotemporal analysis of brain functional connectivity,2015,,
|
| 305 |
+
308,,,,
|
| 306 |
+
309,Spatiotemporal analysis of brain functional connectivity,2015,,
|
| 307 |
+
310,Combination between elastic net and relief,2015,,
|
| 308 |
+
311,Dimension Reduction of Hyperspectral Image with Rare Event Preserving,2015,,
|
| 309 |
+
312,The random slope modulation: A new cyclostationarity model applied to biomechanical signals,2015,,
|
| 310 |
+
313,Secure hash algorithm based on efficient chaotic neural network,2016,,
|
| 311 |
+
314,A node-wise analysis of the uterine muscle networks for pregnancy monitoring,2016,,
|
| 312 |
+
315,Human static postures analysis using empirical mode decomposition,2016,,
|
| 313 |
+
316,Computational modeling of high frequency oscillations recorded with clinical intracranial macroelect,2016,,
|
| 314 |
+
317,New feature selection method based on neural network and machine learning,2016,,
|
| 315 |
+
318,Modified fuzzy c-means combined with neural network based fault diagnosis approach for a distillatio,2016,,
|
| 316 |
+
319,Channel combination selection for EHG bivariate analysis,2016,,
|
| 317 |
+
320,Recognition of different daily living activities using hidden Markov model regression,2016,,
|
| 318 |
+
321,Brain network modules of meaningful and meaningless objects,2016,,
|
| 319 |
+
322,Active Impedance Control of a Knee-Joint Orthosis During Swing Phase,2017,,
|
| 320 |
+
323,Ontology learning process as a bottom-up strategy for building domain-specific ontology from legal t,2017,,
|
| 321 |
+
324,"Ambient assistive living system using RGB-D camera, in proceedings ",2017,,
|
| 322 |
+
325,Estimating the dominant frequency of High Frequency Oscillations in depth-EEG signals,2017,,
|
| 323 |
+
326, Postural stability analysis���A review of techniques and methods for human stability asse,2017,,
|
| 324 |
+
327,Multichannel EHG segmentation for automatically identifying contractions and motion artifacts,2017,,
|
| 325 |
+
328,Sensitivity analysis of a human finger model,2017,,
|
| 326 |
+
329,Automatic reading and interpretation of an Antibiogram,2017,,
|
| 327 |
+
330,Dynamic identification of a human-exoskeleton system,2017,,
|
| 328 |
+
331,Separation and localization of EHG sources using tensor models,2017,,
|
| 329 |
+
332,Using the Unified Foundational Ontology (UFO) for Grounding Legal Domain Ontologies,2017,,
|
| 330 |
+
333,A Criminal Domain Ontology for Modelling Legal Norms,2017,,
|
| 331 |
+
334,New keyed chaotic neural network hash function based on sponge construction,2017,,
|
| 332 |
+
335,Triply Differential Ionization Cross Sections of atomic and molecular targets by single electron imp,2018,,
|
| 333 |
+
336,Fragment emission following multiple ionization in 20���200-eV e ������,2005,,
|
| 334 |
+
337,"Fast oscillating structures in electron spectra following He q+ + He collisions (q=1,2) at low ",2005,,
|
| 335 |
+
338,"New developments for an electron impact (e,2e)/(e,3e) spectrometer with multi-angle collec",2007,,
|
| 336 |
+
339,"New coplanar (e,2e) experiments for the ionisation of He and Ar atoms ",2007,,
|
| 337 |
+
340,"An (e,2e) - (e,3e) investigation of argon: Competition between inner shell single ionisa",2007,,
|
| 338 |
+
341,Inner shell single or direct double ionisation in argon?,2007,,
|
| 339 |
+
342,"Triply differential (e,2e) cross sections for ionisation of the nitrogen molecule at lar",2007,,
|
| 340 |
+
343,Coincidence angular correlations in electron impact single or double ionization of atoms,2007,,
|
| 341 |
+
344,"(e,2e) ionisation of helium and hydrogen molecule : evidence for two -center interference",2008,,
|
| 342 |
+
345,"(e,2e) triple differential cross sections for ionisation beyond helium: the neon case at large ener",2008,,
|
| 343 |
+
346,DWBA-G calculations of electron impact ionization of noble gaz atoms,2008,,
|
| 344 |
+
347,"New (e,2e) studies of atomic and molecular targets",2008,,
|
| 345 |
+
348,Dynamics of electron impact ionisation of the outer and inner valence (1t 2 and 2a 1) ,2009,,
|
| 346 |
+
349,"Energetic (e,2e) reaction away from Bethe ridge: Recoil versus binary",2009,,
|
| 347 |
+
350,"Energetic (e,2e) reaction away from Bethe ridge",2009,,
|
| 348 |
+
351,"Energetic (e,2e) reaction away from Bethe ridge",2009,,
|
| 349 |
+
352,"A new look at an energetic (e,2e) reaction: Binary versus recoil",2009,,
|
| 350 |
+
353,Experimental investigation of the triple differential cross section for electron impact i,2009,,
|
| 351 |
+
354,"Predominance of the second order, two-step mechanism in the electron impact double ioniz",2010,,
|
| 352 |
+
355,"A Lahmam-Bennani, E M Staicu Casagrande and A Naja",2011,,
|
| 353 |
+
356,"Identification of first order and non-first order contributions in the (e,3���1e) a",2012,,
|
| 354 |
+
357,Ionization of atomic hydrogen by electrons: the role of the contributions of the pseudo -states in ,2013,,
|
| 355 |
+
358,"(e,2e) simple ionization of CO2 by fast electron impact: use of three -center parameterized continu",2014,,
|
| 356 |
+
359,Electron impact experimental and theoretical fourfold differential cross section for CH4,2015,,
|
| 357 |
+
360,"Theoretical and experimental study of (e,2e) ionization of the CO 2 (1����� g ) molecule",2015,,
|
| 358 |
+
361,Comparison of Experimental and Theoretical Triple Differential Cross Sections for the sin,2016,,
|
| 359 |
+
362,New measurements on ionization cross sections for high energy PIXE,2016,,
|
| 360 |
+
363,Triple differential cross sections for the ionization of NH3 by electron impact,2015,,
|
| 361 |
+
364,A new test of the 2nd Born approximation with an extended basis of excited states and,2014,,
|
| 362 |
+
365,Double and Triple Differential Cross Sections for Electron Impact Ionization of CH,2014,,
|
| 363 |
+
366," (e, 2e) simple ionization of CO2 by fast electron impact:use of three -center parameteriz",2014,,
|
| 364 |
+
367, A complete study of the second Born approximation for the double ionization of helium by electron ,2014,,
|
| 365 |
+
368,"Identification of first order and non-first order contributions in the (e,3-1e) and (e,3e) double i",2012,,
|
| 366 |
+
369,Ionisation par impact ��lectronique de CH 4 et CO 2 : importance de l���impulsi,2009,,
|
| 367 |
+
370,"A new look at an energetic (e,2e) reaction: binary versus recoil",2009,,
|
| 368 |
+
371,A complete study of the second Born approximation for the double ionization of helium by electron a,2014,,
|
| 369 |
+
372,"Identification of first order and non-first order contributions in the (e,3-1e) and (e,3e) double i",2012,,
|
| 370 |
+
373,Ionisation par impact ��lectronique de CH 4 et CO 2 : importance de l���impulsi,2009,,
|
| 371 |
+
374,"A new look at an energetic (e,2e) reaction: binary versus recoil",2009,,
|
| 372 |
+
375,Dynamique de l���ionisation simple des atomes et mol�,2008,,
|
| 373 |
+
376,"A distorted wave-Gamov factor analysis of (e,2e) triple differential cross sections for noble gase",2008,,
|
| 374 |
+
377,"(e,2e) ionisation beyond helium : the Neon case at large energy transfer ",2008,,
|
| 375 |
+
378,Mieux comprendre les gaz �� effet de s,2008,,
|
| 376 |
+
379,"Processus (e,2e) d'ionisation de He et H2 : interf��rences dues aux deux centres diffuseurs de ",2008,,
|
| 377 |
+
380,Coincidence angular correlations in electron impact single or double ionization of atoms and molec,2007,,
|
| 378 |
+
381,"Corr��lations angulaires entre ��lectrons diffus��, ��ject�� et Auger is",2007,,
|
| 379 |
+
382,,,,
|
| 380 |
+
383,"Angular correlations between scattered, ejected and Auger electrons from ionisation of Ar",2006,,
|
| 381 |
+
384,Distributions angulaires des ��lectrons ��ject��s lors de l���ionisation en ,2006,,
|
| 382 |
+
385,"Angular correlations between scattered, ejected and Auger electrons from ionisation of Ar",2006,,
|
| 383 |
+
386,"F. Fr��mont, A. Hajaji, A. Naja, C. Lelercq, P. Lemennais, S. Boulbain, V. Broquin,",2006,,
|
| 384 |
+
387,Search for interference effects associated with coherent electron emission from transient ,2005,,
|
| 385 |
+
388,Analytical and numerical models for the vibration energy harvesting with a spherical aco,2017,,
|
| 386 |
+
389,Analytical and numerical models for the vibration energy harvesting with a spherical aco,2017,,
|
| 387 |
+
390,Analytical and numerical models for the vibration energy harvesting with a spherical aco,2017,,
|
| 388 |
+
391,Analytical model for the energy harvesting of a spherical sensor from ambient vibrations,2017,,
|
| 389 |
+
392,Analytical model for the energy harvesting of a spherical sensor from ambient vibrations,2017,,
|
| 390 |
+
393,"High energy PIXE: new measurements for Cu, Ag and Au K-shell ionization cross sections and compari",2017,,
|
| 391 |
+
394,Eigen frequencies and directivity patterns of a spherical acoustic transducer,2017,,
|
| 392 |
+
395,New K-shell ionization cross sections for high energy PIXE and comparison with theoretical values o,2016,,
|
| 393 |
+
396,"Theoretical and experimental study of (e, 2e) ionization of the CO2(�����g) molecule",2015,,
|
| 394 |
+
397,"Theoretical and experimental investigation of (e,2e) and (e,3-1e) ionization of molecules by elec",2015,,
|
| 395 |
+
398,Dynamics of single or double ionization of small systems from coincidence electron impact experimen,2009,,
|
| 396 |
+
399,"(e,2e) ionization of rare gas atoms and small molecules : a new look at the recoil scattering",2009,,
|
| 397 |
+
400,Dynamics of electron impact single and/or double ionization of small systems,2009,,
|
| 398 |
+
401,"Recent progress in (e,2e) and (e,3e) ionisation of small atoms and molecules",2008,,
|
| 399 |
+
402,"New (e,2e) studies on molecular targets",2008,,
|
| 400 |
+
403,Fast oscillating structures in electron spectra following slow He q+ + He collisions: search for e,2008,,
|
| 401 |
+
404,Fast oscillating structures in electron spectra following slow He q+ + He collisions: search for e,2008,,
|
| 402 |
+
405,Complete experiments for ionization of small atoms and molecules,2008,,
|
| 403 |
+
406,"(e,2e) experiments on simple atoms and molecules at large energy transfer",2007,,
|
| 404 |
+
407,Coincidence angular correlations in electron impact single or double ionization of atoms and molec,2007,,
|
| 405 |
+
408,"New coplanar (e,2e) and (e,3e) experiments on the ionisation of Ar and He atoms",2006,,
|
| 406 |
+
409,Fragment emission following multiple ionization in 20���200-eV e ������,2005,,
|
| 407 |
+
410,Alteration of Flt3-Ligand-dependent de novo generation of conventional dendritic cells during influe,2018,,
|
| 408 |
+
411,"Tuberculosis, war, and refugees: Spotlight on the Syrian humanitarian crisis",2018,,
|
| 409 |
+
412,Prevalence and subtype distribution of Blastocystis sp. isolates from poultry in Lebanon and evidenc,2018,,
|
| 410 |
+
413,Diversity and Evolution of Sensor Histidine Kinases in Eukaryotes,2018,,
|
| 411 |
+
414,"First Antibiotic Awareness Week Nationwide Initiative in Lebanon: Knowledge, Attitude and Practice t",2018,,
|
| 412 |
+
415,"Molecular mechanisms of antimicrobial resistance in Acinetobacter baumannii, with a special focus on",2018,,
|
| 413 |
+
416,Epidemiology and Antibiotic Susceptibility Patterns of Carbapenem Resistant Gram Negative Bacteria I,2018,,
|
| 414 |
+
417,Genomic Mapping of ST85 blaNDM-1 and blaOXA-94 producing Acinetobacter baumannii Isolates from Syria,2018,,
|
| 415 |
+
418,. Identification of the first bacteriocin isolated in Lebanon extracted via a modified adsorption-de,2018,,
|
| 416 |
+
419,Combining in vitro and in vivo models for selecting strains with both anti-inflammatory potential as,2018,,
|
| 417 |
+
420,Extended-spectrum beta-lactamase (ESBL)- and carbapenemase-producing Enterobacteriaceae in water sou,2018,,
|
| 418 |
+
421,"in Raw Minced Beef at Slaughterhouses in Tripoli, Lebanon",2018,,
|
| 419 |
+
422,Investigating Pneumonia Etiology Among Refugees and the Lebanese population (PEARL): A study protoco,2018,,
|
| 420 |
+
423,,,,
|
| 421 |
+
424,Regeneration in the Midgut of Aedes albopictus Mosquitoes,2017,,
|
| 422 |
+
425,Biosorption of acid red 14 found in industrial effluents using aspergillus fumigatus,2017,,
|
| 423 |
+
426,Enhancement of ethanol production from synthetic medium model of hydrolysate of macroalgae,2018,,
|
| 424 |
+
427,Definition of a second-generation bioethanol production process,2017,,
|
| 425 |
+
428,Dark Fermentative Hydrogen Production by Anaerobic Sludge Growing on Glucose and Ammonium Resulting ,2016,,
|
| 426 |
+
429,Genome-wide identification of SF1 and SF2 helicases from archaea.(2016) Gene,2016,,
|
| 427 |
+
430,Association of the extracellular superoxide dismutase Ala40Thr polymorphism with type 2 diabetes and,2016,,
|
| 428 |
+
431,Evalutation of Benzo(a) Pyrene DNA adducts as a biomarker of genotoxicity and its association with g,2016,,
|
| 429 |
+
432,Susceptibility of patients with manganese superoxide dismutase Ala16Val genetic polymorphism to type,2016,,
|
| 430 |
+
433,ARCPHdb: a comprehensive protein database for SF1 and SF2 helicases from archaea. Computers in biolo,2017,,
|
| 431 |
+
434,Comparative analysis data of SF1 and SF2 helicases from three domains of life. Data in Brief,2017,,
|
| 432 |
+
435,. N-acetylcysteine potentiates diclofenac toxicity in Saccharomyces cerevisiae: stronger potentiati,2018,,
|
| 433 |
+
436,Alteration of human hepatic drug transporter activity and expression by cigarette smoke condensate,2016,,
|
| 434 |
+
437,Dark Fermentative Hydrogen Production by Anaerobic Sludge Growing on Glucose and Ammonium Resulting ,2016,,
|
| 435 |
+
438,Upregulation of endothelial gene markers in Wharton's jelly mesenchymal stem cells cultured on polye,2016,,
|
| 436 |
+
439,Extracted and depolymerized alginates from brown algae Sargassum vulgare of Lebanese origin: chemica,2016,,
|
| 437 |
+
440,Benvegnu Proc��d�� d���obtention de compositions tensioactives �� base de L-Gluc,2016,,
|
| 438 |
+
441,Direct and one pot conversion of polyguluronates and alginates into alkyl-L-guluronamide based surfa,2016,,
|
| 439 |
+
442,Genome-wide identification of SF1 and SF2 helicases from archaea ,2016,,
|
| 440 |
+
443,Association of the extracellular superoxide dismutase Ala40Thr polymorphism with type 2 diabetes and,2016,,
|
| 441 |
+
444,Evalutation of Benzo(a) Pyrene DNA adducts as a biomarker of genotoxicity and its association with g,2016,,
|
| 442 |
+
445,Susceptibility of patients with manganese superoxide dismutase Ala16Val genetic polymorphism to type,2016,,
|
| 443 |
+
446,ARCPHdb: A comprehensive protein database for SF1 and SF2 helicase from archaea,2017,,
|
| 444 |
+
447,N-acetylcysteine potentiates diclofenac toxicity in Saccharomyces cerevisiae: stronger potentiation ,2017,,
|
| 445 |
+
448,Inhibition of organic anion transporter (OAT) activity by cigarette smoke condensate,2017,,
|
| 446 |
+
449,Montivipera bornmuelleri venom has immunomodulatory effects mainly up-regulating some pro-inflammato,2018,,
|
| 447 |
+
450,Evidence for in vitro antiophidian properties of aqueous buds extract of Eucalyptus against Montivip,2017,,
|
| 448 |
+
451,Analysis of Dithiocarbamate Fungicides in Vegetable Matrices Using HPLC-UV Followed by Atomic Absorp,2017,,
|
| 449 |
+
452,The use of conifer needles as biomonitor candidates for the study of temporal air pollution variatio,2017,,
|
| 450 |
+
453,"A multi-residue method for the analysis of 90 pesticides, 16 PAHs and 22 PCBs in honey using QuEChER",2017,,
|
| 451 |
+
454,ARCPHdb: a comprehensive protein database for SF1 and SF2 helicases from archaea,2017,,
|
| 452 |
+
455,Comparative analysis data of SF1 and SF2 helicases from three domains of life,2017,,
|
| 453 |
+
456,Enhancement of ethanol production from synthetic medium model of hydrolysate of macroalgae ,2017,,
|
| 454 |
+
457,"Pierre, C��dric Delattre, Nidal Fayad, Samir Taha , Christophe Vial.. ���Valorization of c",2017,,
|
| 455 |
+
458,N-acetylcysteine potentiates diclofenac toxicity in Saccharomyces cerevisiae: stronger potentiation ,2018,,
|
| 456 |
+
459,iosorption of acid red 14 found in industrial effluents using aspergillus fumigatus,2018,,
|
| 457 |
+
460,. Essentiel role of ATP6AP2 enrichment in caveolae/lipid raft microdomains for the induction of neur,2018,,
|
| 458 |
+
461,In utero exposure to maternal diabetes is associated with early abnormal vascular structure in offsp,2018,,
|
| 459 |
+
462,Montivipera bornmuelleri venom has immunomodulatory effects mainly up-regulating some pro-inflammato,2018,,
|
| 460 |
+
463,New prognosis approach for preventive and predictive maintenance���Application to a distillati,,,
|
| 461 |
+
464,Biokinematic Control Strategy for Rehabilitation Exoskeleton Based on User Intention,,,
|
| 462 |
+
465,Comparative Study of Three Steganographic Methods Using a Chaotic System and Their Universal Stegana,,,
|
| 463 |
+
466,Detecting modular brain states in rest and task,,,
|
| 464 |
+
467,Performance of source imaging techniques of spatially extended generators of uterine activity,,,
|
| 465 |
+
468,Toward High Integrity Personal Localization System Based on Informational Formalism,,,
|
| 466 |
+
469,Automatic Monodimensional EHG Contractions,,,
|
| 467 |
+
470,Design and security analysis of two robust keyed hash functions based on chaotic neural networks ,2019,,
|
| 468 |
+
471,Effect of mental calculus on the performance of complex movements,,,
|
| 469 |
+
472,Decreased integration of EEG source-space networks in disorders of consciousness,2019,,
|
| 470 |
+
473,Evidence based Model for Realtime Surveillance of ARDS,,,
|
| 471 |
+
474,Human-Exoskeleton Joint Misalignment: A Systematic Review,2019,,
|
| 472 |
+
475,Automatic segmentation of bipolar EHGs' contractions using wavelet decomposition - Mono & Multi-dime,2019,,
|
| 473 |
+
476,Pregnancy Labor Characterization and Classification Using Nonlinear Methods,2019,,
|
| 474 |
+
477,Using Bio-Kinematic signals for Rehabilitation Exoskeleton Control,2019,,
|
| 475 |
+
478,Identification of motor unit spatial activation by minimum norm estimation,2019,,
|
| 476 |
+
479,Altered motor performance in Alzheimer's disease: a dynamic analysis using EEG,2019,,
|
| 477 |
+
480,Signal Analysis of Brain Computer Interface (BCI),2019,,
|
| 478 |
+
481,3D Navigation Algorithm of a Micro-Robot Swarm in Blood Vessels for Medical Applications,2019,,
|
| 479 |
+
482,Automatic Segmentation of Bipolar EHGs��� Contractions Using Wavelet Tra,2019,,
|
| 480 |
+
483,Effectiveness of Motor Imagery combined to Action Observation in controlling Stroke-related Genu Rec,2019,,
|
| 481 |
+
484,Surface electromyography activity of trunk muscles during conventional and non-conventional wheelcha,2019,,
|
| 482 |
+
485,Effectiveness of a new neural motor recruitment method combined with tDCS to induce and guide motor ,2019,,
|
| 483 |
+
486,Effect of Educational Program in Reducing Sitting Time in Lebanese University Students: A Randomized,2019,,
|
| 484 |
+
487,Effect of connectivity measures on the identification of brain functional core network at rest,2019,,
|
| 485 |
+
488,Multi-class Surveillance for Acute Respiratory Distress Syndrome using Belief Functions,2019,,
|
| 486 |
+
489,EEG Features Extraction and Classification Methods in Motor Imagery Based Brain Computer Interface,2019,,
|
| 487 |
+
490,"Catherine Marque, Pregnancy Labor Classification using neural network based analysis",2019,,
|
| 488 |
+
491,RDO-Based Light Field Image Coding Using Convolutional Neural Networks and Linear Approximation 2019,2019,,
|
| 489 |
+
492,Brain Segmentation from Super-Resolved Magnetic Resonance Images,2019,,
|
| 490 |
+
493,ADC Maps Texture Analysis for the Evaluation of Kidney Function: A Preliminary Study,2019,,
|
| 491 |
+
494,Quantitative Ultrasound Imaging for the Differentiation between Fresh and Decellularized Mouse Kidne,2019,,
|
| 492 |
+
495,B. cis-regulatory variation modulates susceptibility to enteric infection in the Drosophila Genetic ,2020,,
|
| 493 |
+
496,Enteric infection induces extensive Lark-mediated intron retention at the 5��� end of D,2020,,
|
| 494 |
+
497,Data on the link between genomic integration of IS1548 and lineage of the strain obtained by b,2020,,
|
| 495 |
+
498,Comparative Analysis of Midgut Regeneration Capacity and Resistance to Oral Infection in Three ,2019,,
|
| 496 |
+
499,Dual and divergent transcriptional impact of IS1548 insertion upstream of the peptidoglycan bios,2019,,
|
| 497 |
+
500,Emergence of clinical mcr-1-positive Escherichia coli in Lebanon,2019,,
|
| 498 |
+
501,"First Lebanese Antibiotic Awareness Week campaign: knowledge, attitudes and practices towards antibi",2019,,
|
| 499 |
+
502,Advances in understanding and managing Scedosporium respiratory infections in patients with cystic f,2019,,
|
| 500 |
+
503,Drug-Resistant Tuberculosis,2016,,
|
| 501 |
+
504,"In-vitro evaluation of the antibacterial activity of the essential oils of Micromeria barbata, Eucal",2019,,
|
| 502 |
+
505,Cutaneous leishmaniasis in north Lebanon: re-emergence of an important neglected tropical disease,2019,,
|
| 503 |
+
506,The epidemiology of Candida species in the Middle East and North Africa.,2019,,
|
| 504 |
+
507,First report on the prevalence and subtype distribution of Blastocystis sp. in dairy cattle in Leban,2019,,
|
| 505 |
+
508,Prevalence and genetic diversity of Campylobacter spp. in the production chain of broiler chickens i,2019,,
|
| 506 |
+
509,First data on antimicrobial susceptibility patterns of Moraxella catarrhalis isolates in Lebanon.,2019,,
|
| 507 |
+
510,High levels of plasma interleukin-17A are associated with severe neurological sequelae in Langerhans,,,
|
| 508 |
+
511,Diversity and Evolution of Sensor Histidine Kinases in Eukaryotes,,,
|
| 509 |
+
512,LABiocin database: A new database designed specifically for Lactic Acid Bacteria bacteriocins,2019,,
|
| 510 |
+
513,Evaluation of different testing tools for the identification of non-gonococcal Neisseria spp. isolat,,,
|
| 511 |
+
514,"Morphologic, molecular and metabolic characterization of Aspergillus section Flavi in spices markete",2019,,
|
| 512 |
+
515,A compilation of antimicrobial susceptibility data from a network of 13 Lebanese hospitals reflectin,2019,,
|
| 513 |
+
516,Epidemiology of antimicrobial resistance in Lebanese extra-hospital settings: An overview,2019,,
|
| 514 |
+
517,Prevalence of Staphylococcus aureus methicillin-sensitive and methicillin-resistant nasal carriage i,2019,,
|
| 515 |
+
518,"Molecular epidemiology of Campylobacter isolates from broiler slaughterhouses in Tripoli, North of L",2019,,
|
| 516 |
+
519,Update on the epidemiological typing methods for Acinetobacter baumannii.,2019,,
|
| 517 |
+
520,"Plasmid-mediated quinolone resistance: Mechanisms, detection, and epidemiology in the Arab countries",2019,,
|
| 518 |
+
521,"Recent trends in the epidemiology, diagnosis, treatment, and mechanisms of resistance in clinical As",,,
|
| 519 |
+
522,Autophagy: A Novel Mechanism Involved in the Anti-Inflammatory Abilities of Probiotics,2019,,
|
| 520 |
+
523,"1- Conifers as environmental biomonitors: a multi-residue method for the concomitant quantification ",2019,,
|
| 521 |
+
524,"2- Bee Venom: Overview of Main Compounds and Bioactivities for Therapeutic Interests.",2019,,
|
| 522 |
+
525,"First Characterization of The Venom from Apis mellifera syriaca, A Honeybee from The Middle East Reg",2019,,
|
| 523 |
+
526,CML Hematopoietic Stem Cells Expressing IL1RAP Can Be Targeted by Chimeric Antigen Receptor-Engineer,2018,,
|
| 524 |
+
527,Determination of 16 PAHs and 22 PCBs in honey samples originated from different region of Lebanon an,2019,,
|
| 525 |
+
528,"The use of vegetation, bees, and snails as important tools for the biomonitoring of atmospheric poll",2019,,
|
| 526 |
+
529,"7- Conversion of Isatins to Tryptanthrins, Heterocycles Endowed with a Myriad of Bioactivities.",2019,,
|
| 527 |
+
530,Archaeal SF1 and SF2 Helicases: Unwinding in the Extreme.,2019,,
|
| 528 |
+
531,Inhibition of organic cation transporter (OCT) activities by carcinogenic heterocyclic aromatic amin,2018,,
|
| 529 |
+
532,Cigarette smoke condensate alters Saccharomyces cerevisiae efflux transporter mRNA and activity and ,2018,,
|
| 530 |
+
533,Chitosan/hyaluronic acid multilayer films are biocompatible substrate for Wharton's jelly derived st,2018,,
|
| 531 |
+
534,Interaction of Cigarette smoke condensate (CSC) and some of its components with chlorpromazine toxic,2019,,
|
| 532 |
+
535,Short communication: Chlorpromazine causes a time-dependent decrease of lipids in Saccharomyces cere,2019,,
|
| 533 |
+
536,New porous bismuth electrode material with high surface area,2019,,
|
| 534 |
+
537,Optimization of lactic acid production using immobilized Lactobacillus Rhamnosus and carob pod waste,2019,,
|
| 535 |
+
538,Biohydrogen production from carob waste of the Lebanese industry by dark fermentation,2019,,
|
| 536 |
+
539,Boosting the Performance of BiVO4 Prepared through Alkaline Electrodeposition with an Amorphous Fe C,2019,,
|
| 537 |
+
540,Enhancement of ethanol production from synthetic medium model of hydrolysate of macroalgae,2018,,
|
| 538 |
+
541,Toward High Integrity Personal Localization System Based on Informational Formalism,2019,,
|
| 539 |
+
542,International Arab Journal of Information Technology (IAJIT),2019,,
|
| 540 |
+
543,Performance of source imaging techniques of spatially extended generators of uterine activity,2019,,
|
| 541 |
+
544,Detecting modular brain states in rest and task,2019,,
|
| 542 |
+
545,Comparative Study of Three Steganographic Methods Using a Chaotic System and Their Universal Stegana,2019,,
|
| 543 |
+
546,Toward bio-kinematic for secure use of rehabilitation exoskeleton,2019,,
|
| 544 |
+
547,Biokinematic Control Strategy for Rehabilitation Exoskeleton Based on User Intention,2019,,
|
| 545 |
+
548,New prognosis approach for preventive and predictive maintenance���Application to a distillati,2020,,
|
| 546 |
+
549,RDO-Based Light Field Image Coding Using Convolutional Neural Networks and Linear Approximation 2019,2019,,
|
| 547 |
+
550,Automatic segmentation of bipolar EHGs��� contractions using wavelet tra,2019,,
|
| 548 |
+
551,Identification of motor unit spatial activation by minimum norm estimation,2019,,
|
| 549 |
+
552,Pregnancy Labor Characterization and Classification Using Nonlinear Methods,2019,,
|
| 550 |
+
553,Automatic segmentation of bipolar EHGs��� contractions using wavelet decomposition-Mono & Mult,2019,,
|
| 551 |
+
554,Pregnancy Labor classification using neural network based analysis,2019,,
|
| 552 |
+
555,ADC Maps Texture Analysis for the Evaluation of Kidney Function: A Preliminary Study,2019,,
|
| 553 |
+
556,Human-Exoskeleton Joint Misalignment: A Systematic Review,2019,,
|
| 554 |
+
557,Altered motor performance in Alzheimer���s disease: a dynamic analysis usi,2019,,
|
| 555 |
+
558,Detecting transient brain states of functional connectivity: A comparative study,2019,,
|
| 556 |
+
559,Neuromotor Strategy of Gait Rehabilitation for Lower-Limb Spasticity,2019,,
|
| 557 |
+
560,Using Bio-Kinematic signals for Rehabilitation Exoskeleton Control,2019,,
|