Spaces:
Sleeping
Sleeping
init: initial commit
Browse files- .gitattributes +1 -0
- README.md +3 -3
- app.py +95 -0
- requirements.txt +1 -0
- resources/case_0/output_0.txt +58 -0
- resources/case_0/output_1.txt +25 -0
- resources/case_0/pdf_page.png +3 -0
- resources/case_0/prompt_0.txt +78 -0
- resources/case_0/prompt_1.txt +72 -0
- resources/case_1/output_0.txt +17 -0
- resources/case_1/output_1.txt +15 -0
- resources/case_1/pdf_page.png +3 -0
- resources/case_1/prompt_0.txt +25 -0
- resources/case_1/prompt_1.txt +22 -0
- resources/case_2/output_0.txt +26 -0
- resources/case_2/output_1.txt +27 -0
- resources/case_2/pdf_page.png +3 -0
- resources/case_2/prompt_0.txt +97 -0
- resources/case_2/prompt_1.txt +86 -0
.gitattributes
CHANGED
@@ -31,5 +31,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
31 |
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
|
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
31 |
*.wasm filter=lfs diff=lfs merge=lfs -text
|
32 |
*.xz filter=lfs diff=lfs merge=lfs -text
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
+
*.png filter=lfs diff=lfs merge=lfs -text
|
35 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
36 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
---
|
2 |
-
title:
|
3 |
emoji: 🐨
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.29.1
|
8 |
app_file: app.py
|
|
|
1 |
---
|
2 |
+
title: 2D Layout-Preserving PDF Parser Demo
|
3 |
emoji: 🐨
|
4 |
+
colorFrom: green
|
5 |
+
colorTo: blue
|
6 |
sdk: gradio
|
7 |
sdk_version: 5.29.1
|
8 |
app_file: app.py
|
app.py
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
from PIL import Image
|
3 |
+
|
4 |
+
DEFAULT_CASE = "case_2"
|
5 |
+
CASE_LIST = ["case_0", "case_1", "case_2"]
|
6 |
+
data = {}
|
7 |
+
|
8 |
+
for case_name in CASE_LIST:
|
9 |
+
with open(f"resources/{case_name}/prompt_0.txt", "r") as f:
|
10 |
+
data[case_name] = {
|
11 |
+
"prompt_0": f.read(),
|
12 |
+
}
|
13 |
+
with open(f"resources/{case_name}/output_0.txt", "r") as f:
|
14 |
+
data[case_name]["output_0"] = f.read()
|
15 |
+
data[case_name]["output_1"] = f.read()
|
16 |
+
|
17 |
+
with open(f"resources/{case_name}/prompt_1.txt", "r") as f:
|
18 |
+
data[case_name]["prompt_1"] = f.read()
|
19 |
+
with open(f"resources/{case_name}/output_1.txt", "r") as f:
|
20 |
+
data[case_name]["output_1"] = f.read()
|
21 |
+
|
22 |
+
demo_image = Image.open(
|
23 |
+
f"resources/{case_name}/pdf_page.png"
|
24 |
+
)
|
25 |
+
data[case_name]["image"] = demo_image
|
26 |
+
|
27 |
+
with gr.Blocks(
|
28 |
+
theme=gr.themes.Ocean(
|
29 |
+
font_mono="PT Mono",
|
30 |
+
),
|
31 |
+
) as demo:
|
32 |
+
gr.Markdown("# 2D Layout-Preserving Text Serialization Demo")
|
33 |
+
with gr.Row():
|
34 |
+
gr.Markdown("## Input Image")
|
35 |
+
case_name = gr.Dropdown(
|
36 |
+
choices=CASE_LIST,
|
37 |
+
label="Select a case",
|
38 |
+
value=DEFAULT_CASE,
|
39 |
+
)
|
40 |
+
|
41 |
+
demo_image = gr.Image(
|
42 |
+
data[DEFAULT_CASE]["image"],
|
43 |
+
show_label=False,
|
44 |
+
container=False,
|
45 |
+
height=700,
|
46 |
+
width=600,
|
47 |
+
)
|
48 |
+
gr.Markdown("## Sample Prompt & Response from LLM")
|
49 |
+
with gr.Tabs():
|
50 |
+
with gr.TabItem("Prompt"):
|
51 |
+
with gr.Row():
|
52 |
+
prompt_0 = gr.Code(
|
53 |
+
data[DEFAULT_CASE]["prompt_0"],
|
54 |
+
language="markdown",
|
55 |
+
show_line_numbers=False,
|
56 |
+
interactive=False,
|
57 |
+
label="2D Layout-Preserving Text"
|
58 |
+
)
|
59 |
+
prompt_1 = gr.Code(
|
60 |
+
data[DEFAULT_CASE]["prompt_1"],
|
61 |
+
language="markdown",
|
62 |
+
show_line_numbers=False,
|
63 |
+
interactive=False,
|
64 |
+
label="1D Text"
|
65 |
+
)
|
66 |
+
|
67 |
+
with gr.TabItem("Response"):
|
68 |
+
with gr.Row():
|
69 |
+
output_0 = gr.Markdown(
|
70 |
+
data[DEFAULT_CASE]["output_0"],
|
71 |
+
container=False
|
72 |
+
)
|
73 |
+
output_1 = gr.Markdown(
|
74 |
+
data[DEFAULT_CASE]["output_1"],
|
75 |
+
container=False
|
76 |
+
)
|
77 |
+
|
78 |
+
case_name.change(
|
79 |
+
lambda case: [
|
80 |
+
data[case]["image"],
|
81 |
+
data[case]["prompt_0"],
|
82 |
+
data[case]["prompt_1"],
|
83 |
+
data[case]["output_0"],
|
84 |
+
data[case]["output_1"],
|
85 |
+
],
|
86 |
+
inputs=case_name,
|
87 |
+
outputs=[
|
88 |
+
demo_image,
|
89 |
+
prompt_0,
|
90 |
+
prompt_1,
|
91 |
+
output_0,
|
92 |
+
output_1,
|
93 |
+
],
|
94 |
+
)
|
95 |
+
demo.queue().launch()
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Pillow
|
resources/case_0/output_0.txt
ADDED
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Albert Einstein
|
2 |
+
|
3 |
+
## Nobel Prize in Physics 1921
|
4 |
+
|
5 |
+
**“for his services to theoretical physics, and especially for his discovery of the laws of the photoelectric effect.”**
|
6 |
+
|
7 |
+
### Timeline of Einstein's Life
|
8 |
+
|
9 |
+
- **Born**: 14 March 1879 in Ulm
|
10 |
+
- **Died**: 18 April 1955 in Princeton, New Jersey
|
11 |
+
|
12 |
+
In 1905, Albert Einstein submitted his revolutionary paper *"Eine neue Bestimmung der Moleküldimensionen"* (A New Determination of Molecular Dimensions) as a dissertation at the University of Zurich.
|
13 |
+
|
14 |
+
From 1909 to 1911, he was Professor for Theoretical Physics at the University of Zurich.
|
15 |
+
|
16 |
+
---
|
17 |
+
|
18 |
+
### Einstein in Zurich
|
19 |
+
|
20 |
+
It could have been a real love story. Einstein, born in Ulm in 1879, was a resident of Zurich, obtaining citizenship in 1901, and lived there for almost eight years altogether, longer than in any other Swiss town. In retrospect, however, it was only his years in Aarau and Berne that he looked back on fondly.
|
21 |
+
|
22 |
+
Wolfgang Pauli wrote in an obituary in the *Neue Zürcher Zeitung*:
|
23 |
+
|
24 |
+
> “Einstein liked to think back to his time in Berne, which he spoke of more often and more positively than of Zurich.”
|
25 |
+
|
26 |
+
However, it appears he actually had a good time there. From 1896 to 1900, Einstein studied physics at ETH, then known as the Federal Polytechnic School. He appreciated the institution’s liberal spirit: as a student, you could “more or less do as you liked.” So, he put together a study plan entirely to his own taste:
|
27 |
+
|
28 |
+
> “Some lectures I followed with great interest. Otherwise, I skipped class often and stayed at home to study the masters of theoretical physics with holy fervor.”
|
29 |
+
|
30 |
+
This self-study took place mainly in Hottingen, where Einstein rented lodgings from various landladies. He also spent much time in the Pension Engelbrecht at Plattenstrasse 50, where his friend, colleague, and later wife, Mileva Marić, had lodgings.
|
31 |
+
|
32 |
+
---
|
33 |
+
|
34 |
+
### 1905: Einstein's Annus Mirabilis
|
35 |
+
|
36 |
+
1905 was Einstein’s *annus mirabilis*: the physicist published no less than five groundbreaking papers, including the Theory of Special Relativity and the Light Quanta Hypothesis, for which, among other achievements, he was later awarded the Nobel Prize in Physics.
|
37 |
+
|
38 |
+
---
|
39 |
+
|
40 |
+
### Personal Life and Interests
|
41 |
+
|
42 |
+
Einstein’s favorite leisure activity was playing the violin. He was regularly invited by Alfred Stern, a historian at the ETH, and his family to enjoy a meal and make music with them.
|
43 |
+
|
44 |
+
In summer, he enjoyed sailing on the Lake of Zurich, and in winter, he loved hair-raising sledge rides on the Zürichberg. He could often be found happily sitting in the Café Metropol on the Stadthausquai.
|
45 |
+
|
46 |
+
---
|
47 |
+
|
48 |
+
### Later Years in Zurich and Prague
|
49 |
+
|
50 |
+
After graduating from ETH, Einstein worked from 1902 to 1909 as an employee of the Federal Patent Office. From 1912, he returned to Zurich again as a professor for Theoretical Physics at ETH. He was now well established, with few teaching responsibilities and a good salary, allowing him to afford an imposing apartment on the Zürichberg.
|
51 |
+
|
52 |
+
He later moved to Prague after only three semesters, causing his students to protest. He returned to Zurich once again in 1912 as a professor at ETH.
|
53 |
+
|
54 |
+
---
|
55 |
+
|
56 |
+
**Sources:**
|
57 |
+
|
58 |
+
[www.nobelpreis.uzh.ch/en_einstein.html](http://www.nobelpreis.uzh.ch/en_einstein.html)
|
resources/case_0/output_1.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Albert Einstein
|
2 |
+
|
3 |
+
**Nobel Prize in Physics 1921**
|
4 |
+
|
5 |
+
Albert Einstein was only his years in Aarau and Berne employee of the Federal Patent Office that he looked back on fondly. “Einstein in Berne. His annus mirabilis fell in the middle of this period: in 1905 he published no less than five revolutionary papers. These included the Theory of Special Relativity and the Light Quanta Hypothesis, for which, among other achievements, he was later awarded the Nobel Prize.” Wolfgang Pauli wrote in an obituary in the *Neue Zürcher Zeitung*.
|
6 |
+
|
7 |
+
Nonetheless, it appears he actually had a good time there. From 1896 to 1900, Einstein studied physics at ETH, then known as the Federal Polytechnical School. He appreciated the institution’s liberal spirit: as a student there, you could “more or less do as you liked.” So he put together a study plan entirely to his own taste: “Some lectures I followed with great interest. Otherwise, I skipped class often and stayed at home to study the masters of theoretical physics with holy fervor.” This self-study took place mainly in Hottingen, where Einstein rented lodgings from various landladies. He also spent much time in the Pension Engelbrecht at Plattenstrasse 50, where his friend, colleague, and later wife, Mileva Marić, had lodgings.
|
8 |
+
|
9 |
+
In 1905, Albert Einstein submitted his groundbreaking paper *Eine neue Bestimmung der Moleküldimensionen* (A New Determination of Molecular Dimensions) as a dissertation at the University of Zurich.
|
10 |
+
|
11 |
+
From 1909 to 1911, he was Professor for Theoretical Physics at the University of Zurich. Einstein’s favorite leisure activity was playing the violin. He was regularly invited by Alfred Stern, a historian at ETH, and his family, to enjoy meals and make music with them. In summer, he enjoyed sailing on the Lake of Zurich, and in winter, he loved hair-raising sledge rides on the Zürichberg. He could often be found happily sitting in the Café Metropol on the Stadthausquai.
|
12 |
+
|
13 |
+
Einstein then moved back to Zurich a second time, when the University created an associate professorship in theoretical physics especially for him. Professor Einstein was usually ill-prepared: his lecture notes often consisted of a scrap of paper the size of a visiting card. But he was so selflessly devoted to his students that they wrote a letter of protest to the education department when he moved to Prague after only three semesters.
|
14 |
+
|
15 |
+
Einstein returned to Zurich again in 1912, this time as Professor for Theoretical Physics at ETH. He was now well-established: he had few teaching responsibilities and a good salary, so he could afford an imposing apartment on the Zürichberg. Otto Stern had followed him from Prague to Zurich as his assistant and served as his sparring partner and “calculating machine.” But again, Einstein only managed to stay in Zurich for a year and a half.
|
16 |
+
|
17 |
+
---
|
18 |
+
|
19 |
+
**Nobel Prize in Physics 1921**
|
20 |
+
“For his services to theoretical physics, and especially for his discovery of the laws of the photoelectric effect.”
|
21 |
+
|
22 |
+
*14 March 1879 in Ulm*
|
23 |
+
*† 18 April 1955 in Princeton, New Jersey*
|
24 |
+
|
25 |
+
1905 was Einstein’s *annus mirabilis*: the physicist published no less than five revolutionary papers.
|
resources/case_0/pdf_page.png
ADDED
![]() |
Git LFS Details
|
resources/case_0/prompt_0.txt
ADDED
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown with correct reading order
|
2 |
+
Only use text from original context.
|
3 |
+
|
4 |
+
```
|
5 |
+
Albert Einstein
|
6 |
+
|
7 |
+
Nobel Prize in Physics 1921
|
8 |
+
|
9 |
+
|
10 |
+
was only his years in Aarau and Berne employee of the Federal Patent Office
|
11 |
+
that he looked back on fondly. “Einstein in Berne. His annus mirabilis fell in the
|
12 |
+
|
13 |
+
liked to think back to his time in Berne, middle of this period: in 1905 he pub
|
14 |
+
which he spoke of more often and more lished no less than five revolutionary
|
15 |
+
positively than of Zurich,” Wolfgang papers. These included the Theory of
|
16 |
+
|
17 |
+
Pauli wrote in an obituary in the Neue Special Relativity and the Light Quanta
|
18 |
+
Zürcher Zeitung. Hypothesis, for which, among other
|
19 |
+
Nonetheless, it appears he actually achievements, he was later awarded
|
20 |
+
|
21 |
+
had a good time there. From 1896 to the Nobel Prize.
|
22 |
+
1900, Einstein studied physics at ETH, Einstein then moved back to Zurich
|
23 |
+
then known as the Federal Polytech a second time, when the University
|
24 |
+
|
25 |
+
nical School. He appreciated the in created an associate professorship in
|
26 |
+
stitution’s liberal spirit: as a student theoretical physics especially for him.
|
27 |
+
there, you could “more or less do as Professor Einstein was usually ill-pre
|
28 |
+
Nobel Prize in Physics 1921 “for his services
|
29 |
+
you liked.” So he put together a study pared: his lecture notes often consisted
|
30 |
+
to theoretical physics, and especially
|
31 |
+
plan entirely to his own taste: “Some of a scrap of paper the size of a visiting
|
32 |
+
for his discovery of the laws of the photo
|
33 |
+
lectures I followed with great interest.
|
34 |
+
electric effect”
|
35 |
+
Otherwise, I skipped class often and
|
36 |
+
* 14 March 1879 in Ulm
|
37 |
+
stayed at home to study the masters 1905 was Einstein’s annus
|
38 |
+
of theoretical physics with holy fer
|
39 |
+
† 18 April 1955 in Princeton, New Jersey mirabilis: the physicist
|
40 |
+
published no less than five
|
41 |
+
vor.” This self-study took place mainly
|
42 |
+
In 1905 Albert Einstein submitted his revolu
|
43 |
+
in Hottingen, where Einstein rented
|
44 |
+
tionary paper “Eine neue Bestimmung der groundbreaking papers.
|
45 |
+
lodgings from various landladies. He
|
46 |
+
Moleküldimensionen” (A New Determination
|
47 |
+
also spent much time in the Pension card. But he was so selflessly devoted
|
48 |
+
of Molecular Dimensions) as a dissertation at
|
49 |
+
Engelbrecht at Plattenstrasse 50, where to his students that they wrote a letter
|
50 |
+
the University of Zurich.
|
51 |
+
his friend, colleague, and later wife, of protest to the education department
|
52 |
+
From 1909 to 1911 he was Professor for
|
53 |
+
Mileva Marić, had lodgings. when he moved to Prague after only
|
54 |
+
Theoretical Physics at the University of Zurich.
|
55 |
+
Einstein’s favorite leisure activity three semesters.
|
56 |
+
was playing the violin. He was regu Einstein returned to Zurich again
|
57 |
+
larly invited by Alfred Stern, a histo in 1912, this time as Professor for The
|
58 |
+
rian at the ETH, and his family, to enjoy oretical Physics at ETH. He was now
|
59 |
+
Zurich and the
|
60 |
+
a meal and make music with them. well established: he had few teaching
|
61 |
+
Annus Mirabilis
|
62 |
+
In summer, he enjoyed sailing on the responsibilities and a good salary, so
|
63 |
+
Lake of Zurich, in winter he loved hair that he could permit himself an impos
|
64 |
+
Albert Einstein and Zurich – it could
|
65 |
+
raising sledge rides on the Zürichberg. ing apartment on the Zürichberg. Otto
|
66 |
+
have been a real love story. Einstein,
|
67 |
+
And he could often be found happily Stern had followed him from Prague to
|
68 |
+
born in Ulm in 1879, was a resident of
|
69 |
+
sitting in the Café Metropol on the Zurich, as his assistant, and served as
|
70 |
+
Zurich, obtaining citizenship in 1901,
|
71 |
+
Stadthausquai. sparring partner and “calculating ma
|
72 |
+
and lived there for almost eight years
|
73 |
+
After graduating from ETH, Ein chine.” But again, Einstein only man
|
74 |
+
altogether, longer than in any other
|
75 |
+
stein worked from 1902 to 1909 as an aged to stay in Zurich for a year and a
|
76 |
+
Swiss town. In retrospect, however, it
|
77 |
+
www.nobelpreis.uzh.ch/en_einstein.html Albert Einstein – Nobel Prize in Physics 1921 1/4
|
78 |
+
```
|
resources/case_0/prompt_1.txt
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown with correct reading order
|
2 |
+
Only use text from original context.
|
3 |
+
|
4 |
+
```
|
5 |
+
Albert Einstein
|
6 |
+
Nobel Prize in Physics 1921
|
7 |
+
was only his years in Aarau and Berne employee of the Federal Patent Office
|
8 |
+
that he looked back on fondly. “Einstein in Berne. His annus mirabilis fell in the
|
9 |
+
liked to think back to his time in Berne, middle of this period: in 1905 he pub
|
10 |
+
which he spoke of more often and more lished no less than five revolutionary
|
11 |
+
positively than of Zurich,” Wolfgang papers. These included the Theory of
|
12 |
+
Pauli wrote in an obituary in the Neue Special Relativity and the Light Quanta
|
13 |
+
Zürcher Zeitung. Hypothesis, for which, among other
|
14 |
+
Nonetheless, it appears he actually achievements, he was later awarded
|
15 |
+
had a good time there. From 1896 to the Nobel Prize.
|
16 |
+
1900, Einstein studied physics at ETH, Einstein then moved back to Zurich
|
17 |
+
then known as the Federal Polytech a second time, when the University
|
18 |
+
nical School. He appreciated the in created an associate professorship in
|
19 |
+
stitution’s liberal spirit: as a student theoretical physics especially for him.
|
20 |
+
there, you could “more or less do as Professor Einstein was usually ill-pre
|
21 |
+
Nobel Prize in Physics 1921 “for his services
|
22 |
+
you liked.” So he put together a study pared: his lecture notes often consisted
|
23 |
+
to theoretical physics, and especially
|
24 |
+
plan entirely to his own taste: “Some of a scrap of paper the size of a visiting
|
25 |
+
for his discovery of the laws of the photo
|
26 |
+
lectures I followed with great interest.
|
27 |
+
electric effect”
|
28 |
+
Otherwise, I skipped class often and
|
29 |
+
|
30 |
+
* 14 March 1879 in Ulm
|
31 |
+
stayed at home to study the masters 1905 was Einstein’s annus
|
32 |
+
of theoretical physics with holy fer
|
33 |
+
† 18 April 1955 in Princeton, New Jersey mirabilis: the physicist
|
34 |
+
published no less than five
|
35 |
+
vor.” This self-study took place mainly
|
36 |
+
In 1905 Albert Einstein submitted his revolu
|
37 |
+
in Hottingen, where Einstein rented
|
38 |
+
tionary paper “Eine neue Bestimmung der groundbreaking papers.
|
39 |
+
lodgings from various landladies. He
|
40 |
+
Moleküldimensionen” (A New Determination
|
41 |
+
also spent much time in the Pension card. But he was so selflessly devoted
|
42 |
+
of Molecular Dimensions) as a dissertation at
|
43 |
+
Engelbrecht at Plattenstrasse 50, where to his students that they wrote a letter
|
44 |
+
the University of Zurich.
|
45 |
+
his friend, colleague, and later wife, of protest to the education department
|
46 |
+
From 1909 to 1911 he was Professor for
|
47 |
+
Mileva Marić, had lodgings. when he moved to Prague after only
|
48 |
+
Theoretical Physics at the University of Zurich.
|
49 |
+
Einstein’s favorite leisure activity three semesters.
|
50 |
+
was playing the violin. He was regu Einstein returned to Zurich again
|
51 |
+
larly invited by Alfred Stern, a histo in 1912, this time as Professor for The
|
52 |
+
rian at the ETH, and his family, to enjoy oretical Physics at ETH. He was now
|
53 |
+
Zurich and the
|
54 |
+
a meal and make music with them. well established: he had few teaching
|
55 |
+
Annus Mirabilis
|
56 |
+
In summer, he enjoyed sailing on the responsibilities and a good salary, so
|
57 |
+
Lake of Zurich, in winter he loved hair that he could permit himself an impos
|
58 |
+
Albert Einstein and Zurich – it could
|
59 |
+
raising sledge rides on the Zürichberg. ing apartment on the Zürichberg. Otto
|
60 |
+
have been a real love story. Einstein,
|
61 |
+
And he could often be found happily Stern had followed him from Prague to
|
62 |
+
born in Ulm in 1879, was a resident of
|
63 |
+
sitting in the Café Metropol on the Zurich, as his assistant, and served as
|
64 |
+
Zurich, obtaining citizenship in 1901,
|
65 |
+
Stadthausquai. sparring partner and “calculating ma
|
66 |
+
and lived there for almost eight years
|
67 |
+
After graduating from ETH, Ein chine.” But again, Einstein only man
|
68 |
+
altogether, longer than in any other
|
69 |
+
stein worked from 1902 to 1909 as an aged to stay in Zurich for a year and a
|
70 |
+
Swiss town. In retrospect, however, it
|
71 |
+
[www.nobelpreis.uzh.ch/en\_einstein.html](http://www.nobelpreis.uzh.ch/en_einstein.html) Albert Einstein – Nobel Prize in Physics 1921 1/4
|
72 |
+
```
|
resources/case_1/output_0.txt
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The table below summarises the maturity profile of the corporation's liabilities at 31 December:
|
2 |
+
|
3 |
+
### At 31 December 2018
|
4 |
+
|
5 |
+
| | Within 3 months | 3 to 6 Months | 6 to 12 Months | 1 to 3 years | Over 3 years | Total |
|
6 |
+
|-----------------------------|------------------|----------------|----------------|--------------|---------------|-----------|
|
7 |
+
| Due to insurance and reinsurance companies | | | | 835,389 | | 835,389 |
|
8 |
+
| Payables and other liabilities | 268,760 | | 290,554 | | | 559,314 |
|
9 |
+
| Obligations under finance lease | | | 65,101 | 223,946 | 1,346,888 | 1,635,935 |
|
10 |
+
|
11 |
+
### At 31 December 2017
|
12 |
+
|
13 |
+
| | Within 3 months | 3 to 6 Months | 6 to 12 Months | 1 to 3 years | Over 3 years | Total |
|
14 |
+
|-----------------------------|------------------|----------------|----------------|--------------|---------------|-----------|
|
15 |
+
| Due to insurance and reinsurance companies | | | | 835,389 | | 835,389 |
|
16 |
+
| Payables and other liabilities | 449,097 | | 273,708 | | | 722,805 |
|
17 |
+
| Obligations under finance lease | | | 60,842 | 209,295 | 1,426,640 | 1,696,777 |
|
resources/case_1/output_1.txt
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
### Maturity Profile of the Corporation's Liabilities at 31 December 2018
|
2 |
+
|
3 |
+
| Category | Within 3 Months | 3 to 6 Months | 6 to 12 Months | 1 to 3 Years | Over 3 Years | Total |
|
4 |
+
|--------------------------------|-----------------|---------------|----------------|--------------|--------------|------------|
|
5 |
+
| Due to insurance and reinsurance companies | | | | | | 835,389 |
|
6 |
+
| Payables and other liabilities | 268,760 | 290,554 | | | | 559,314 |
|
7 |
+
| Obligations under finance lease| | 65,101 | 223,946 | | 1,346,888 | 1,635,935 |
|
8 |
+
|
9 |
+
### Maturity Profile of the Corporation's Liabilities at 31 December 2017
|
10 |
+
|
11 |
+
| Category | Within 3 Months | 3 to 6 Months | 6 to 12 Months | 1 to 3 Years | Over 3 Years | Total |
|
12 |
+
|--------------------------------|-----------------|---------------|----------------|--------------|--------------|------------|
|
13 |
+
| Due to insurance and reinsurance companies | | | | | | 835,389 |
|
14 |
+
| Payables and other liabilities | 449,097 | 273,708 | | | | 722,805 |
|
15 |
+
| Obligations under finance lease| | 60,842 | 209,295 | | 1,426,640 | 1,696,777 |
|
resources/case_1/pdf_page.png
ADDED
![]() |
Git LFS Details
|
resources/case_1/prompt_0.txt
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown
|
2 |
+
|
3 |
+
```page
|
4 |
+
The table below summarises the maturity profile of the corporation's liabilities at 31 December:
|
5 |
+
Within 3 3to6 6to12 Over3
|
6 |
+
At 31December 2018 1 to 3 years Total
|
7 |
+
months Months Months years
|
8 |
+
Due to insurance and reinsurance
|
9 |
+
835,389 835,389
|
10 |
+
companies
|
11 |
+
Payables and other liabilities 268,760 290,554 559,314
|
12 |
+
|
13 |
+
Obligations under finance lease 65,101 223,946 1,346,888 1,635,935
|
14 |
+
|
15 |
+
Within 3 3to6 6to12 Over3
|
16 |
+
At 31 December 2017 Total
|
17 |
+
1 to 3 years
|
18 |
+
months Months Months years
|
19 |
+
Due to insurance and reinsurance
|
20 |
+
835,389 835,389
|
21 |
+
companies
|
22 |
+
Payables and other liabilities 449,097 273,708 722,805
|
23 |
+
Obligations under finance lease 60,842 209,295 1,426,640 1,696,777
|
24 |
+
|
25 |
+
```
|
resources/case_1/prompt_1.txt
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown
|
2 |
+
|
3 |
+
```page
|
4 |
+
The table below summarises the maturity profile of the corporation's liabilities at 31 December:
|
5 |
+
Within 3 3to6 6to12 Over3
|
6 |
+
At 31December 2018 1 to 3 years Total
|
7 |
+
months Months Months years
|
8 |
+
Due to insurance and reinsurance
|
9 |
+
835,389 835,389
|
10 |
+
companies
|
11 |
+
Payables and other liabilities 268,760 290,554 559,314
|
12 |
+
Obligations under finance lease 65,101 223,946 1,346,888 1,635,935
|
13 |
+
Within 3 3to6 6to12 Over3
|
14 |
+
At 31 December 2017 Total
|
15 |
+
1 to 3 years
|
16 |
+
months Months Months years
|
17 |
+
Due to insurance and reinsurance
|
18 |
+
835,389 835,389
|
19 |
+
companies
|
20 |
+
Payables and other liabilities 449,097 273,708 722,805
|
21 |
+
Obligations under finance lease 60,842 209,295 1,426,640 1,696,777
|
22 |
+
```
|
resources/case_2/output_0.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
© 2001 Nature Publishing Group [http://medicine.nature.com](http://medicine.nature.com)
|
2 |
+
NEWS & VIEWS
|
3 |
+
|
4 |
+
## Promiscuous regulator of xenobiotic removal
|
5 |
+
|
6 |
+
The transcription factor SXR mediates drug, xenobiotic and steroid induction of a major drug–metabolizing enzyme. Drugs such as paclitaxel (Taxol) can bind and activate this transcription factor and therefore regulate their own metabolism and efflux from cells. Manipulation of this pathway might lead to new ways to improve therapeutic efficacy and to minimize toxicity (584-590). This indicates a broad role for SXR in the coordinated induction of multiple detoxification pathways.
|
7 |
+
|
8 |
+
**Erin Schuetz** & **Stephen Strom**
|
9 |
+
The body responds to drugs, environmental chemicals, endogenous steroids and bile acids by inducing the coordinated expression of a battery of drug–detoxification genes in tissues such as liver and intestine. These include the cytochromes P450 (CYPs), which are the enzymes responsible for oxidative, peroxidative and reductive metabolism of toxic compounds. Expression of drug transport proteins such as P-glycoprotein (encoded by MDR1 and also known as MDR1 and ABCB1) leads to the efficient efflux of these drugs from the body.
|
10 |
+
|
11 |
+
Activation of drug transport can be beneficial in instances where it is important to remove toxins from the body, but detrimental in situations where it is important for a patient to retain effective levels of a therapeutic drug. In this issue, Synold et al. demonstrate that steroid xenobiotic receptor (SXR; also known as PXR), a transcription factor known to mediate drug, xenobiotic and steroid induction of the major liver drug metabolizing enzyme, can also regulate the expression of a drug efflux pathway, indicating a novel strategy to control drug clearance.
|
12 |
+
|
13 |
+
CYP3A4, the most abundant drug-metabolizing enzyme in the liver and intestine, is responsible for the metabolism of 50% of all drugs. Many drugs are substrates for both CYP3A4 and P-glycoprotein, a broad-specificity efflux pump protein encoded by the gene MDR1. It was first demonstrated in 1996 that MDR1 expression is coordinated with expression of CYP3A4, with both gene products being induced by the same spectrum of drugs. P-glycoprotein and CYP3A4 are colocalized in liver and intestine, and serve as a coordinated system for the absorption, metabolism and disposition of many drugs. Many drug–drug interactions arise from concurrent administration of drugs which are both substrates and inducers of CYP3A4 and MDR1 expression.
|
14 |
+
|
15 |
+
Long-term therapy with drugs that induce CYP3A4 and MDR1 increase the systemic clearance of some antileukemic agents, and such therapy has been shown to exert negative effects on survival while increasing cancer relapse. Recent studies have shown that SXR, a member of the nuclear hormone receptor superfamily, regulates expression of CYP3A (ref. 5,6). SXR is activated by a pharmacopia of drugs, including antibiotics, statin cholesterol-lowering drugs, antiseizure medications, steroids such as glucocorticoids, some bile acids, environmental contaminants such as organochlorine pesticides and polychlorinated biphenyls, and herbal supplements such as St. John’s wort.
|
16 |
+
|
17 |
+
Little is known about how certain drugs induce CYP and MDR1 gene expression. Synold et al. demonstrate that SXR is activated by paclitaxel (Taxol) and is responsible for inducing expression of not only CYP3A (previously shown to be induced by paclitaxel) but also CYP2C9 and MDR1. Paclitaxel is metabolized by both CYP3A4 and CYP2C9 (ref. 11) and transported by P-glycoprotein, and induction of all of these proteins leads to its enhanced clearance. This indicates a broad role for SXR in the coordinated induction of multiple detoxification pathways.
|
18 |
+
|
19 |
+
Synold et al. show that docetaxel, unlike the structural analog paclitaxel, does not induce CYP3A4 or MDR1 expression because it does not activate SXR. This should result in superior pharmacokinetic properties relative to paclitaxel.
|
20 |
+
|
21 |
+
Synold et al. also demonstrate that Ecteinascidin-743 (ET-743), an antineoplastic agent, can antagonize SXR activation and inhibit MDR1 expression. The authors suggest that SXR antagonists that downregulate the P-glycoprotein pathway of drug elimination could be exploited to improve drug retention. This approach should be undertaken cautiously, because clinical trials involving drugs that inhibit P-glycoprotein activity, given in an effort to reduce drug resistance, have had limited success and led to undesired pharmacokinetic side effects. MDR1 expression modulators should be carefully screened for their potential to inhibit or modulate metabolism of other medications taken by a patient.
|
22 |
+
|
23 |
+
**Figure 1:**
|
24 |
+
Feedforward and feedback pathways of drug metabolism. Paclitaxel is a ligand for SXR, causing this nuclear receptor to activate transcription of the P-glycoprotein efflux pump protein encoded by MDR1, and the drug metabolizing enzymes CYP3A and CYP2C9. These pathways, however, mediate drug clearance and reduce paclitaxel activation of SXR in a feedback mechanism. Manipulation of this pathway may be used to prolong or reduce drug retention.
|
25 |
+
|
26 |
+
NATURE MEDICINE • VOLUME 7 • NUMBER 5 • MAY 2001
|
resources/case_2/output_1.txt
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
© 2001 Nature Publishing Group [http://medicine.nature.com](http://medicine.nature.com)
|
2 |
+
|
3 |
+
## NEWS & VIEWS
|
4 |
+
|
5 |
+
### Promiscuous regulator of xenobiotic removal
|
6 |
+
|
7 |
+
The transcription factor SXR mediates drug, xenobiotic, and steroid induction of a major drug-metabolizing enzyme. Drugs such as paclitaxel (Taxol) can bind and activate this transcription factor and therefore regulate their own metabolism and efflux from cells. Manipulation of this pathway might lead to new ways to improve therapeutic efficacy and to minimize toxicity (584-590).
|
8 |
+
|
9 |
+
Enhanced clearance<sup>12</sup>. This indicates a broad role for SXR in the coordinated induction of multiple detoxification pathways.
|
10 |
+
|
11 |
+
**ERIN SCHUETZ<sup>1</sup> & STEPHEN STROM<sup>2</sup>**
|
12 |
+
|
13 |
+
The body responds to drugs, environmental chemicals, endogenous steroids, and bile acids by inducing the coordinated expression of a battery of drug detoxification genes in tissues such as liver and intestine. These include the cytochromes P450 (CYPs), which are the enzymes responsible for oxidative, peroxidative, and reductive metabolism of toxic compounds. Expression of drug transport proteins such as P-glycoprotein (encoded by MDR1 and also known as ABCB1) leads to the efficient efflux of drugs from the body. Activation of drug transport can be beneficial in instances where it is important to remove toxins from the body, but detrimental in situations where it is important for a patient to retain effective levels of a therapeutic drug.
|
14 |
+
|
15 |
+
In this issue, Snyold et al.<sup>1</sup> demonstrate that steroid xenobiotic receptor (SXR; also known as PXR), a transcription factor known to mediate drug, xenobiotic, and steroid induction of the major liver drug-metabolizing enzyme, can also regulate the expression of a drug efflux pathway, indicating a novel strategy to control drug clearance.
|
16 |
+
|
17 |
+
Because concurrent administration of CYP3A4 and P-glycoprotein inducers (such as rifampicin) with drugs that serve as substrates for these proteins is a major basis of drug-drug interactions<sup>5</sup>, pharmaceutical companies are now using SXR-binding and -activation assays to screen and predict which compounds will induce CYP3A expression and potentially cause drug interactions. These types of assays may also identify compounds that induce CYP2C9 and MDR1, causing auto-induction of their own clearance. It might be possible to someday create drugs that are ‘SXR transparent’ by minimizing or eliminating binding activity.
|
18 |
+
|
19 |
+
In this regard, the report of Synold et al.<sup>1</sup> shows that docetaxel, unlike the structural analog paclitaxel, does not induce CYP3A4 or MDR1 expression because it does not activate SXR. This should result in superior pharmacokinetic properties relative to paclitaxel.
|
20 |
+
|
21 |
+
Synold et al.<sup>1</sup> demonstrate that Ecteinascidin-743 (ET-743), an antineoplastic agent, can antagonize SXR and inhibit MDR1 expression. The authors suggest that SXR antagonists that downregulate the P-glycoprotein pathway of drug elimination could be exploited to improve drug retention. This approach should be undertaken cautiously, because clinical trials involving drugs that inhibit P-glycoprotein activity, given in an effort to reduce drug resistance, have had limited success and led to undesired pharmacokinetic side effects<sup>13</sup>. MDR1 expression ‘modulators’ should be carefully screened for their potential to inhibit or modulate metabolism of other medications taken by a patient.
|
22 |
+
|
23 |
+
### Fig. 1: Feedforward and feedback pathways of drug metabolism
|
24 |
+
|
25 |
+
Paclitaxel is a ligand for SXR, causing this nuclear receptor to activate transcription of the P-glycoprotein efflux pump protein encoded by MDR1, and the drug-metabolizing enzymes CYP3A and CYP2C9. These pathways, however, mediate drug clearance and reduce paclitaxel activation of SXR in a feedback mechanism. Manipulation of this pathway may be used to prolong or reduce drug retention.
|
26 |
+
|
27 |
+
536 NATURE MEDICINE • VOLUME 7 • NUMBER 5 • MAY 2001
|
resources/case_2/pdf_page.png
ADDED
![]() |
Git LFS Details
|
resources/case_2/prompt_0.txt
ADDED
@@ -0,0 +1,97 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown with correct reading order. Stay close to original content.
|
2 |
+
|
3 |
+
````
|
4 |
+
© 2001 Nature Publishing Group http://medicine.nature.com
|
5 |
+
NEWS & VIEWS
|
6 |
+
|
7 |
+
|
8 |
+
|
9 |
+
|
10 |
+
Promiscuous regulator of xenobiotic removal
|
11 |
+
|
12 |
+
The transcription factor SXR mediates drug, xenobiotic and steroid induction of a major drug–metabolizing enzyme.
|
13 |
+
Drugs such as paclitaxel (Taxol) can bind and activate this transcription factor and therefore regulate their own
|
14 |
+
|
15 |
+
metabolism and efflux from cells. Manipulation of this pathway might lead to new ways to improve therapeutic
|
16 |
+
efficacy and to minimize toxicity (584-590).
|
17 |
+
|
18 |
+
enhanced clearance12. This indicates a
|
19 |
+
mental chemicals, endogenous broad role for SXR in the coordinated in
|
20 |
+
ERIN SCHUETZ1 & STEPHEN STROM2
|
21 |
+
T he body responds to drugs, environ
|
22 |
+
steroids and bile acids by inducing the co duction of multiple detoxification path
|
23 |
+
ordinated expression of a battery of drug some antileukemic agents, and such ther ways.
|
24 |
+
detoxification genes in tissues such as apy has been shown to exert negative ef Because concurrent administration of
|
25 |
+
liver and intestine. These include the cy fects on survival while increasing cancer CYP3A4 and P-glycoprotein inducers
|
26 |
+
tochromes P450 (CYPs), which are the relapse4 . Recent studies have shown that (such as rifampicin) with drugs that serve
|
27 |
+
enzymes responsible for oxidative, perox SXR, a member of the nuclear hormone as substrates for these proteins is a major
|
28 |
+
idative and reductive metabolism of toxic receptor superfamily, regulates expres basis of drug–drug interactions5 , pharma
|
29 |
+
compounds. Expression of drug transport sion of CYP3A (ref. 5,6). SXR is activated ceutical companies are now using SXR
|
30 |
+
proteins such as P-glycoprotein (encoded by a pharmacopia of drugs, including an binding and -activation assays to screen
|
31 |
+
by MDR1 and also known as MDR1 and tibiotics, statin cholesterol-lowering and predict which compounds will in
|
32 |
+
|
33 |
+
ABCB1) leads to the efficient efflux these drugs, antiseizure medications, steroids duce CYP3A expression and potentially
|
34 |
+
drugs from the body. Activation of drug such as glucocorticoids5 , some bile acids7 , cause drug interactions. These types of as
|
35 |
+
transport can be beneficial in instances environmental contaminants such as says may also identify compounds that
|
36 |
+
where it is important to remove toxins organochlorine pesticides and polychlori induce CYP2C9 and MDR1 , and cause
|
37 |
+
from the body, but detrimental in situa nated biphenyls8 , and herbal supple auto-induction of their own clearance. It
|
38 |
+
|
39 |
+
tions where it is important for a patient ments such as St. John’s wort9 . might be possible to someday create
|
40 |
+
to retain effective levels of a therapeutic Little is known about how certain drugs drugs that are ‘SXR transparent’ by mini
|
41 |
+
drug. In this issue, Snyold et al. 1 demon induce CYP and MDR1 gene expression. mizing or eliminating binding activity. In
|
42 |
+
strate that steroid xenobiotic receptor Synold et al. 1 demonstrate that SXR is ac this regard, the report of Synold et al . 1
|
43 |
+
|
44 |
+
(SXR; also known as PXR), a transcription tivated by paclitaxel (Taxol) and is re shows that docetaxel, unlike the struc
|
45 |
+
factor known to mediate drug, xenobiotic sponsible for inducing expression of not tural analog paclitaxel, does not induce
|
46 |
+
and steroid induction of the major liver only CYP3A (previously shown to be in CYP3A4 or MDR1 expression because it
|
47 |
+
drug metabolizing enzyme, can also regu duced by paclitaxel10) but also CYP2C9 does not activate SXR. This should result
|
48 |
+
late the expression of a drug efflux path and MDR1 . Paclitaxel is metabolized by in superior pharmacokinetic properties
|
49 |
+
©
|
50 |
+
way, indicating a novel strategy to both CYP3A4 and CYP2C9 (ref. 11) and relative to paclitaxel.
|
51 |
+
control drug clearance. transported by P-glycoprotein, and in Synold et al . 1 demonstrate that
|
52 |
+
CYP3A4, the most abundant drug-me duction of all of these proteins leads to its Ecteinascidin-743 (ET-743), an antineo
|
53 |
+
tabolizing enzyme in the liver and plastic agent, can antagonize SXR
|
54 |
+
intestine, is responsible for the activation and inhibit MDR1 ex
|
55 |
+
|
56 |
+
metabolism of 50% of all drugs. pression. The authors suggest that
|
57 |
+
Feed forward and feed back pathways
|
58 |
+
Many drugs are substrates for both SXR antagonists that downregu
|
59 |
+
CYP3A4 and P-glycoprotein, a late the P-glycoprotein pathway of
|
60 |
+
Paclitaxel
|
61 |
+
broad-specificity efflux pump pro drug elimination could be ex
|
62 |
+
tein encoded by the gene MDR1 . It ploited to improve drug retention.
|
63 |
+
was first demonstrated in 1996 This approach should be under
|
64 |
+
that MDR1 expression is coordi taken cautiously, because clinical
|
65 |
+
nated with expression of CYP3A4 , trials involving drugs that inhibit
|
66 |
+
with both gene products being in P-glycoprotein activity, given in an
|
67 |
+
SXR
|
68 |
+
duced by the same spectrum of effort to reduce drug resistance,
|
69 |
+
Regulates
|
70 |
+
drugs2 . P-glycoprotein and have had limited success and led to
|
71 |
+
the expression
|
72 |
+
CYP3A4 are colocalized in liver undesired pharmacokinetic side
|
73 |
+
of MDR1
|
74 |
+
and intestine, and serve as a coor effects13. MDR1 expression ‘modu
|
75 |
+
and CYP3A4
|
76 |
+
dinated system for the absorption, lators’ should be carefully screened
|
77 |
+
MDR1 CYP3A
|
78 |
+
CYP2C9
|
79 |
+
metabolism and disposition of for their potential to inhibit or
|
80 |
+
many drugs. Many drug–drug in modulate metabolism of other
|
81 |
+
teractions arise from concurrent medications taken by a patient.
|
82 |
+
Fig. 1 Feedforward and feedback pathways of drug metabo
|
83 |
+
administration of drugs which are Given the knowledge that SXR has
|
84 |
+
lism. Paclitaxel is a ligand for SXR, causing this nuclear receptor
|
85 |
+
both substrates and inducers of multiple detoxification genes as
|
86 |
+
to activate transcription of the P-glycoprotein efflux pump pro
|
87 |
+
CYP3A4 and MDR1 expression3 . targets, antagonism of SXR might
|
88 |
+
tein encoded by MDR1 , and the drug metabolizing enzymes
|
89 |
+
CYP3A and CYP2C9. These pathways, however, mediate drug
|
90 |
+
Long-term therapy with drugs lead to increased drug toxicity.
|
91 |
+
clearance and reduce paclitaxel activation of SXR in a feedback
|
92 |
+
that induce CYP3A4 and MDR1 in Synold et al . 1 emphasize the feed
|
93 |
+
mechanism. Manipulation of this pathway may be used to pro
|
94 |
+
crease the systemic clearance of forward pathways of drug clear
|
95 |
+
long or reduce drug retention.
|
96 |
+
536 NATURE MEDICINE • VOLUME 7 • NUMBER 5 • MAY 2001```
|
97 |
+
````
|
resources/case_2/prompt_1.txt
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Convert this text to Markdown with correct reading order. Stay close to original content.
|
2 |
+
|
3 |
+
````
|
4 |
+
© 2001 Nature Publishing Group http://medicine.nature.com
|
5 |
+
NEWS & VIEWS
|
6 |
+
Promiscuous regulator of xenobiotic removal
|
7 |
+
The transcription factor SXR mediates drug, xenobiotic and steroid induction of a major drug–metabolizing enzyme.
|
8 |
+
Drugs such as paclitaxel (Taxol) can bind and activate this transcription factor and therefore regulate their own
|
9 |
+
metabolism and efflux from cells. Manipulation of this pathway might lead to new ways to improve therapeutic
|
10 |
+
efficacy and to minimize toxicity (584-590).
|
11 |
+
enhanced clearance12. This indicates a
|
12 |
+
mental chemicals, endogenous broad role for SXR in the coordinated in
|
13 |
+
ERIN SCHUETZ1 & STEPHEN STROM2
|
14 |
+
T he body responds to drugs, environ
|
15 |
+
steroids and bile acids by inducing the co duction of multiple detoxification path
|
16 |
+
ordinated expression of a battery of drug some antileukemic agents, and such ther ways.
|
17 |
+
detoxification genes in tissues such as apy has been shown to exert negative ef Because concurrent administration of
|
18 |
+
liver and intestine. These include the cy fects on survival while increasing cancer CYP3A4 and P-glycoprotein inducers
|
19 |
+
tochromes P450 (CYPs), which are the relapse4 . Recent studies have shown that (such as rifampicin) with drugs that serve
|
20 |
+
enzymes responsible for oxidative, perox SXR, a member of the nuclear hormone as substrates for these proteins is a major
|
21 |
+
idative and reductive metabolism of toxic receptor superfamily, regulates expres basis of drug–drug interactions5 , pharma
|
22 |
+
compounds. Expression of drug transport sion of CYP3A (ref. 5,6). SXR is activated ceutical companies are now using SXR
|
23 |
+
proteins such as P-glycoprotein (encoded by a pharmacopia of drugs, including an binding and -activation assays to screen
|
24 |
+
by MDR1 and also known as MDR1 and tibiotics, statin cholesterol-lowering and predict which compounds will in
|
25 |
+
ABCB1) leads to the efficient efflux these drugs, antiseizure medications, steroids duce CYP3A expression and potentially
|
26 |
+
drugs from the body. Activation of drug such as glucocorticoids5 , some bile acids7 , cause drug interactions. These types of as
|
27 |
+
transport can be beneficial in instances environmental contaminants such as says may also identify compounds that
|
28 |
+
where it is important to remove toxins organochlorine pesticides and polychlori induce CYP2C9 and MDR1 , and cause
|
29 |
+
from the body, but detrimental in situa nated biphenyls8 , and herbal supple auto-induction of their own clearance. It
|
30 |
+
tions where it is important for a patient ments such as St. John’s wort9 . might be possible to someday create
|
31 |
+
to retain effective levels of a therapeutic Little is known about how certain drugs drugs that are ‘SXR transparent’ by mini
|
32 |
+
drug. In this issue, Snyold et al. 1 demon induce CYP and MDR1 gene expression. mizing or eliminating binding activity. In
|
33 |
+
strate that steroid xenobiotic receptor Synold et al. 1 demonstrate that SXR is ac this regard, the report of Synold et al . 1
|
34 |
+
(SXR; also known as PXR), a transcription tivated by paclitaxel (Taxol) and is re shows that docetaxel, unlike the struc
|
35 |
+
factor known to mediate drug, xenobiotic sponsible for inducing expression of not tural analog paclitaxel, does not induce
|
36 |
+
and steroid induction of the major liver only CYP3A (previously shown to be in CYP3A4 or MDR1 expression because it
|
37 |
+
drug metabolizing enzyme, can also regu duced by paclitaxel10) but also CYP2C9 does not activate SXR. This should result
|
38 |
+
late the expression of a drug efflux path and MDR1 . Paclitaxel is metabolized by in superior pharmacokinetic properties
|
39 |
+
©
|
40 |
+
way, indicating a novel strategy to both CYP3A4 and CYP2C9 (ref. 11) and relative to paclitaxel.
|
41 |
+
control drug clearance. transported by P-glycoprotein, and in Synold et al . 1 demonstrate that
|
42 |
+
CYP3A4, the most abundant drug-me duction of all of these proteins leads to its Ecteinascidin-743 (ET-743), an antineo
|
43 |
+
tabolizing enzyme in the liver and plastic agent, can antagonize SXR
|
44 |
+
intestine, is responsible for the activation and inhibit MDR1 ex
|
45 |
+
metabolism of 50% of all drugs. pression. The authors suggest that
|
46 |
+
Feed forward and feed back pathways
|
47 |
+
Many drugs are substrates for both SXR antagonists that downregu
|
48 |
+
CYP3A4 and P-glycoprotein, a late the P-glycoprotein pathway of
|
49 |
+
Paclitaxel
|
50 |
+
broad-specificity efflux pump pro drug elimination could be ex
|
51 |
+
tein encoded by the gene MDR1 . It ploited to improve drug retention.
|
52 |
+
was first demonstrated in 1996 This approach should be under
|
53 |
+
that MDR1 expression is coordi taken cautiously, because clinical
|
54 |
+
nated with expression of CYP3A4 , trials involving drugs that inhibit
|
55 |
+
with both gene products being in P-glycoprotein activity, given in an
|
56 |
+
SXR
|
57 |
+
duced by the same spectrum of effort to reduce drug resistance,
|
58 |
+
Regulates
|
59 |
+
drugs2 . P-glycoprotein and have had limited success and led to
|
60 |
+
the expression
|
61 |
+
CYP3A4 are colocalized in liver undesired pharmacokinetic side
|
62 |
+
of MDR1
|
63 |
+
and intestine, and serve as a coor effects13. MDR1 expression ‘modu
|
64 |
+
and CYP3A4
|
65 |
+
dinated system for the absorption, lators’ should be carefully screened
|
66 |
+
MDR1 CYP3A
|
67 |
+
CYP2C9
|
68 |
+
metabolism and disposition of for their potential to inhibit or
|
69 |
+
many drugs. Many drug–drug in modulate metabolism of other
|
70 |
+
teractions arise from concurrent medications taken by a patient.
|
71 |
+
Fig. 1 Feedforward and feedback pathways of drug metabo
|
72 |
+
administration of drugs which are Given the knowledge that SXR has
|
73 |
+
lism. Paclitaxel is a ligand for SXR, causing this nuclear receptor
|
74 |
+
both substrates and inducers of multiple detoxification genes as
|
75 |
+
to activate transcription of the P-glycoprotein efflux pump pro
|
76 |
+
CYP3A4 and MDR1 expression3 . targets, antagonism of SXR might
|
77 |
+
tein encoded by MDR1 , and the drug metabolizing enzymes
|
78 |
+
CYP3A and CYP2C9. These pathways, however, mediate drug
|
79 |
+
Long-term therapy with drugs lead to increased drug toxicity.
|
80 |
+
clearance and reduce paclitaxel activation of SXR in a feedback
|
81 |
+
that induce CYP3A4 and MDR1 in Synold et al . 1 emphasize the feed
|
82 |
+
mechanism. Manipulation of this pathway may be used to pro
|
83 |
+
crease the systemic clearance of forward pathways of drug clear
|
84 |
+
long or reduce drug retention.
|
85 |
+
536 NATURE MEDICINE • VOLUME 7 • NUMBER 5 • MAY 2001```
|
86 |
+
````
|