דלג לתוכן (מקש קיצור 's')
אירועים

קולוקוויום וסמינרים

כדי להצטרף לרשימת תפוצה של קולוקוויום מדעי המחשב, אנא בקר ב דף מנויים של הרשימה.

Computer Science events calendar in HTTP ICS format for of Google calendars, and for Outlook.
Academic Calendar at Technion site.

קולוקוויום וסמינרים בקרוב

event head separator DART: תכנון סיוע יעיל למשימה בכל זמן במרחבים רציפים
event speaker icon
דור נוטי (הרצאה סמינריונית למגיסטר)
event date icon
יום חמישי, 23.04.2026, 14:00
event speaker icon
מנחה:  פרופ' אורן זלצמן

Task Assistance Planning (TAP) involves coordinating an assisting robot to support a task robot executing a predefined trajectory, with the goal of maximizing the duration of effective assistance to the task robot. This coordination may be critical in diverse applications such as providing a communication relay in search-and-rescue missions. While existing approaches optimally solve TAP on static, precomputed discrete roadmaps, they scale poorly to continuous configuration spaces because committing to a fixed roadmap can either omit optimal solutions or incur prohibitive preprocessing delays. Furthermore, a naive anytime extension that interleaves continuous roadmap densification with optimal discrete solvers introduces cyclic temporal dependencies that render the problem computationally intractable. To address this gap, we introduce Directed Acyclic Roadmap for TAP (DART), an anytime algorithmic framework designed for continuous TAP. DART restricts the incrementally constructed roadmap to a Directed Acyclic Graph (DAG). This key architectural shift eliminates cyclic temporal dependencies, drastically reducing the combinatorial search space evaluated during path optimization. We evaluate DART on both low-dimentional simulated real-world problem and high-dimentional synthetic problem and demonstrate empirically that DART achieves computational speedups of up to three orders of magnitude compared to undirected baseline methods, allowing for rapid incremental updates and the discovery of higher-quality assistance trajectories within a given time budget.

event head separator חיזוק מודלי שפה לחלבונים על ידי מינוף ידע אינטגרטיבי
event speaker icon
דן כליפה (הרצאה סמינריונית לדוקטורט)
event date icon
יום חמישי, 23.04.2026, 17:00
event speaker icon
מנחה:  ד"ר קירה רדינסקי

Proteins are fundamental to biological systems, and accurately representing them is essential for understanding biological function and drug discovery. Recent protein language models learn representations from amino acid sequences, yet proteins are inherently multidimensional, characterized by structure, dynamics, and molecular interactions. This thesis investigates how integrating multidimensional protein knowledge can enhance protein language models and improve biological understanding.

We introduce GOProteinGNN for integrating protein knowledge graphs, FusionProt for sequence–structure fusion, ProtLigand for leveraging protein–ligand interactions, and DynamicsPLM for modeling conformational dynamics. Across diverse biological tasks, these approaches improve performance and produce biologically meaningful representations.

This research was also applied in a drug discovery laboratory, demonstrating the practical value of multidimensional protein representations. Overall, this thesis shows that integrating functional, structural, dynamic, and interaction-based information substantially enhances protein representation learning and supports advances in biomedical research.

event head separator קודים לתיקון שגיאות לערוץ הסכום
event speaker icon
ליאן עבוד (הרצאה סמינריונית למגיסטר)
event date icon
יום ראשון, 26.04.2026, 15:30
event speaker icon
מנחה:  פרופ' איתן יעקובי

We introduce the sum channel, a new channel model motivated by applications in distributed storage and DNA data storage. In the error-free case, it takes as input an $\ell$-row binary matrix and outputs an $(\ell+1)$-row matrix whose first $\ell$ rows equal the input and whose last row is their parity (sum) row.

We construct a two-deletion-correcting code with redundancy $2\lceil\log_2\log_2 n\rceil+ \log_2 \ell + O(1)$ for $\ell$-row inputs. When $\ell=2$, we establish a lower bound of $\lceil\log_2\log_2 n\rceil + O(1)$ bits, implying that our redundancy is optimal up to a factor of 2.

We also present a code correcting a single substitution with $\lceil \log_2(\ell+1)\rceil$ redundant bits and prove that it is within one bit of optimality.

event head separator דפדוף מגובה קבצים של זיכרון אנונימי
event speaker icon
דניאל ברנסקי (הרצאה סמינריונית למגיסטר)
event date icon
יום רביעי, 29.04.2026, 18:00
event location icon

טאוב 601

event speaker icon
מנחה:  פרופ' דן צפריר

A "named page" is a memory page whose content originates from and is backed by a file. Because named pages are regularly read from and written to persistent storage, filesystems strive to preserve file content contiguity, thereby enabling sequential I/O, which can be much faster than random I/O. No analogous effort to preserve contiguity exists for "anonymous pages," which hold unnamed data such as stack or heap bytes. Consequently, swapping a region of anonymous pages in or out can be much slower than reading or writing a region of named pages.

We observe (1) that the main advantage of the existing swap mechanism is high swap area utilization, since any anonymous page can be placed at any offset within the swap file, so there is no fragmentation; but (2) that secondary storage is commonly underutilized, so the cost of random I/O may be unwarranted. We therefore propose "named swapping," which associates each anonymous region with its own (swap) file and thus benefits from the underlying filesystem's efforts to maintain contiguity, improving swap performance by up to an order of magnitude. A key challenge we address is anonymous pages shared across multiple regions due to fork-based copy-on-write.