Spaces:
Running
Running
suh4s
commited on
Commit
·
5dd6b0d
1
Parent(s):
368d63c
Updated answer document and corrected links to the finetuned model
Browse files- app.py +1 -1
- chainlit.md +133 -86
- data_sources/data/aesops_fables_milo_winter.txt +0 -0
- data_sources/data/asimov_last_question.txt +187 -0
- data_sources/data/examples 2.txt +5 -0
- data_sources/data/examples 3.txt +5 -0
- data_sources/data/examples.txt +3 -0
- data_sources/data/excerpts.txt +5 -0
- data_sources/data/generated_analytical_example.txt +9 -0
- data_sources/data/generated_krishnamurti_freedom.txt +9 -0
- data_sources/data/generated_krishnamurti_observation.txt +11 -0
- data_sources/data/generated_metaphorical_example.txt +15 -0
- data_sources/data/generated_philosophical_example.txt +9 -0
- data_sources/data/hans_christian_andersen_fairy_tales.txt +0 -0
- data_sources/data/kalidasa_meghaduta_wilson.txt +0 -0
- data_sources/data/marcus_aurelius_meditations.txt +0 -0
- data_sources/data/pew_research_report_ai_views_2023.txt +84 -0
- data_sources/data/sagan_baloney_detection.txt +380 -0
- data_sources/data/socrates_apology_plato.txt +0 -0
- data_sources/data/socrates_crito_plato.txt +1065 -0
- finetuning/Fine_tuning_Embedding_Model_for_RAG_InsightFlowAI.ipynb +0 -0
app.py
CHANGED
@@ -41,7 +41,7 @@ PERSONA_LLM_MAP = {}
|
|
41 |
# Embedding Model Identifiers
|
42 |
OPENAI_EMBED_MODEL_ID = "text-embedding-3-small"
|
43 |
# IMPORTANT: Replace with your actual fine-tuned model ID from Hugging Face Hub after training
|
44 |
-
FINETUNED_BALANCED_TEAM_EMBED_ID = "suh4s/insightflow-balanced-team-embed-v1" # Placeholder
|
45 |
|
46 |
QUICK_MODE_PERSONAS = ["analytical", "factual"] # Default personas for Quick Mode
|
47 |
# --- RAG Configuration (moved to global scope) ---
|
|
|
41 |
# Embedding Model Identifiers
|
42 |
OPENAI_EMBED_MODEL_ID = "text-embedding-3-small"
|
43 |
# IMPORTANT: Replace with your actual fine-tuned model ID from Hugging Face Hub after training
|
44 |
+
FINETUNED_BALANCED_TEAM_EMBED_ID = "suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b" # Placeholder
|
45 |
|
46 |
QUICK_MODE_PERSONAS = ["analytical", "factual"] # Default personas for Quick Mode
|
47 |
# --- RAG Configuration (moved to global scope) ---
|
chainlit.md
CHANGED
@@ -14,6 +14,19 @@ custom_css = "/public/style.css"
|
|
14 |
|
15 |
---
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
## TASK ONE – Problem and Audience
|
18 |
|
19 |
**Questions:**
|
@@ -28,12 +41,11 @@ custom_css = "/public/style.css"
|
|
28 |
**InsightFlow AI Solution:**
|
29 |
|
30 |
**Problem Statement:**
|
31 |
-
InsightFlow AI addresses the challenge of
|
32 |
|
33 |
**Why This Matters:**
|
34 |
-
|
35 |
-
|
36 |
-
Our target users include researchers, students, journalists, and decision-makers who need to understand nuanced topics from multiple angles. These users often struggle with confirmation bias and need tools that deliberately introduce diverse reasoning approaches to help them see connections and contradictions they might otherwise miss.
|
37 |
|
38 |
**Deliverables:**
|
39 |
|
@@ -44,9 +56,9 @@ Our target users include researchers, students, journalists, and decision-makers
|
|
44 |
When a user poses a question, InsightFlow AI processes it through their selected perspectives (configured via the **Chat Settings ⚙️ panel** or power-user commands), with each generating a unique analysis. These perspectives are then synthesized into a cohesive response that highlights key insights and connections. The system can automatically generate visual representations, including Mermaid.js concept maps and DALL-E hand-drawn style visualizations. Users can customize their experience with the Settings panel and a few backup commands, and will eventually be able to export complete insights as PDF or markdown files.
|
45 |
|
46 |
**Technology Stack:**
|
47 |
-
- **LLM**: OpenAI's GPT models
|
48 |
-
- **Embedding**: `
|
49 |
-
- **Orchestration**: LangGraph
|
50 |
- **Vector Database**: `Qdrant` (currently in-memory) for storing and querying persona-specific document embeddings for RAG.
|
51 |
- **Visualization**: Mermaid.js for concept mapping and DALL-E (via OpenAI API) for creative visual synthesis.
|
52 |
- **UI**: Chainlit, utilizing its Chat Settings panel for primary configuration, with a command-based interface for backup/advanced control.
|
@@ -63,26 +75,18 @@ InsightFlow AI's LangGraph structure allows for future agentic behavior. Current
|
|
63 |
|
64 |
## TASK TWO – Propose a Solution
|
65 |
|
66 |
-
**
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
- **LLM**
|
79 |
-
- **Embedding**
|
80 |
-
- **Orchestration**
|
81 |
-
- **Vector Database**
|
82 |
-
- **Monitoring**
|
83 |
-
- **Evaluation**
|
84 |
-
- **User Interface**
|
85 |
-
- *(Optional)* **Serving & Inference**
|
86 |
|
87 |
**Additional:**
|
88 |
Where will you use an agent or agents? What will you use "agentic reasoning" for in your app?
|
@@ -90,18 +94,21 @@ Where will you use an agent or agents? What will you use "agentic reasoning" for
|
|
90 |
**InsightFlow AI Solution:**
|
91 |
|
92 |
**Solution Overview:**
|
93 |
-
InsightFlow AI is a multi-perspective research assistant that
|
94 |
|
95 |
**User Experience:**
|
96 |
When a user poses a question, InsightFlow AI processes it through their selected perspectives, with each generating a unique analysis. These perspectives are then synthesized into a cohesive response that highlights key insights and connections. The system automatically generates visual representations, including Mermaid.js concept maps and DALL-E hand-drawn style visualizations, making complex relationships more intuitive. Users can customize their experience with command-based toggles and export complete insights as PDF or markdown files for sharing or reference.
|
97 |
|
98 |
**Technology Stack:**
|
99 |
-
- **LLM**: OpenAI's GPT models
|
100 |
- **Orchestration**: LangGraph for workflow management with nodes for planning, execution, synthesis, and visualization
|
101 |
- **Visualization**: Mermaid.js for concept mapping and DALL-E for creative visual synthesis
|
102 |
- **UI**: Chainlit with command-based interface for flexibility and control
|
103 |
- **Document Generation**: FPDF and markdown for creating exportable documents
|
104 |
|
|
|
|
|
|
|
105 |
---
|
106 |
|
107 |
## TASK THREE – Dealing With the Data
|
@@ -125,8 +132,9 @@ Collect data for (at least) RAG and choose (at least) one external API.
|
|
125 |
**InsightFlow AI Implementation:**
|
126 |
|
127 |
**Data Sources for RAG:**
|
128 |
-
InsightFlow AI is designed to use persona-specific knowledge bases for its RAG functionality. Currently, it loads `.txt` files found within `data_sources/<persona_id>/` directories. The initial setup includes
|
129 |
-
|
|
|
130 |
|
131 |
**External APIs:**
|
132 |
* **OpenAI API:** Used for LLM calls (persona generation, synthesis, DALL-E image generation).
|
@@ -152,7 +160,7 @@ The prototype implementation of InsightFlow AI delivers a functional multi-persp
|
|
152 |
2. **Six Distinct Perspectives**: The system includes analytical, scientific, philosophical, factual, metaphorical, and futuristic reasoning approaches, each driven by configurable LLMs.
|
153 |
3. **LangGraph Orchestration**: A multi-node graph manages the workflow: planning, RAG context retrieval (for RAG-enabled personas), parallel perspective execution, synthesis, and visualization.
|
154 |
4. **Visualization System**: Automatic generation of DALL-E sketches and Mermaid concept maps (toggleable via Settings).
|
155 |
-
5. **RAG Functionality**: Basic RAG is implemented for designated personas, loading data from local text files and using Qdrant in-memory vector stores
|
156 |
6. **Export Functionality**: `/export_md` and `/export_pdf` commands are stubbed (full implementation pending).
|
157 |
7. **Performance Optimizations**: Includes direct mode, quick mode, and toggleable display of perspectives/visualizations.
|
158 |
|
@@ -175,25 +183,11 @@ Generate a synthetic test dataset to baseline an initial evaluation with RAGAS.
|
|
175 |
|
176 |
**InsightFlow AI Implementation:**
|
177 |
|
178 |
-
**
|
179 |
-
|
180 |
-
For evaluating InsightFlow AI's RAG and multi-perspective approach, a golden test dataset will be created. This involves:
|
181 |
-
* Identifying complex questions that benefit from diverse viewpoints.
|
182 |
-
* For RAG-enabled personas, curating relevant source documents and expected retrieved contexts.
|
183 |
-
* Defining "gold standard" answers from each individual perspective (potentially with and without RAG context).
|
184 |
-
* Creating ideal synthesized responses that effectively integrate multiple viewpoints.
|
185 |
-
|
186 |
-
**RAGAS Evaluation Strategy (Planned):**
|
187 |
-
Once the RAG system is more mature and datasets are prepared, RAGAS will be used. Key metrics will include:
|
188 |
-
* **For RAG retrieval (per persona):** `context_precision`, `context_recall`, `context_relevancy`.
|
189 |
-
* **For RAG generation (per persona):** `faithfulness`, `answer_relevancy`.
|
190 |
-
* **For overall synthesis:** Custom LLM-as-judge evaluations for coherence, perspective integration, and insightfulness.
|
191 |
-
|
192 |
-
*(The RAGAS results table currently in this document reflects aspirational targets or examples from the design phase, as full RAGAS evaluation is pending RAG system completion and dataset creation.)*
|
193 |
-
|
194 |
-
**Evaluation Insights:**
|
195 |
|
196 |
-
|
|
|
|
|
197 |
|
198 |
**Deliverables:**
|
199 |
|
@@ -205,6 +199,30 @@ The RAGAS assessment revealed that InsightFlow AI's multi-perspective approach p
|
|
205 |
- Provide a table of your output results.
|
206 |
- What conclusions can you draw about the performance and effectiveness of your pipeline with this information?
|
207 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
---
|
209 |
|
210 |
## TASK SIX – Fine-Tune the Embedding Model
|
@@ -219,28 +237,22 @@ Generate synthetic fine-tuning data and complete fine-tuning of the open-source
|
|
219 |
|
220 |
**Embedding Model Fine-Tuning Approach (Planned):**
|
221 |
|
222 |
-
As outlined in the AIE6 course and project design documents, fine-tuning the embedding model (`
|
223 |
-
|
224 |
-
1. **Perspective-Specific Training Data Generation**: Create synthetic datasets (e.g., query, relevant_persona_text, irrelevant_text_or_wrong_persona_text) for each core reasoning style.
|
225 |
-
2. **Fine-Tuning Process**: Employ contrastive learning techniques (e.g., `MultipleNegativesRankingLoss` or `TripletLoss`) using the SentenceTransformers library.
|
226 |
-
3. **Goal**: Develop embeddings that are not only semantically relevant to content but also sensitive to the *style* of reasoning (analytical, philosophical, etc.), improving the ability of RAG to retrieve context that aligns with the active persona.
|
227 |
-
4. **Integration**: Once fine-tuned models are created (e.g., `insightflow-analytical-embed-v1`), they will be integrated into the persona-specific vector store creation process in `utils/rag_utils.py`.
|
228 |
|
229 |
-
|
|
|
|
|
|
|
230 |
|
231 |
**Embedding Model Performance:**
|
232 |
|
233 |
-
The fine-tuned model showed
|
234 |
-
- 42% increase in perspective classification accuracy
|
235 |
-
- 37% improvement in reasoning pattern identification
|
236 |
-
- 28% better coherence when matching perspectives for synthesis
|
237 |
-
|
238 |
-
**Model Link**: [insightflow-perspectives-v1 on Hugging Face](https://huggingface.co/suhas/insightflow-perspectives-v1)
|
239 |
|
240 |
**Deliverables:**
|
241 |
|
242 |
-
- Swap out your existing embedding model for the new fine-tuned version.
|
243 |
-
- Provide a link to your fine-tuned embedding model on the Hugging Face Hub
|
|
|
244 |
|
245 |
---
|
246 |
|
@@ -256,31 +268,37 @@ Assess the performance of the fine-tuned agentic RAG application.
|
|
256 |
|
257 |
**Comparative Performance Analysis:**
|
258 |
|
259 |
-
Following the AIE6 evaluation methodology, we conducted comprehensive A/B testing between the
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
|
261 |
**RAGAS Benchmarking Results:**
|
262 |
|
263 |
-
|
264 |
-
|--------|---------------|-----------------|------------|
|
265 |
-
| Faithfulness | 0.83 | 0.94 | +13.3% |
|
266 |
-
| Response Relevance | 0.79 | 0.91 | +15.2% |
|
267 |
-
| Context Precision | 0.77 | 0.88 | +14.3% |
|
268 |
-
| Context Recall | 0.81 | 0.93 | +14.8% |
|
269 |
-
| Perspective Diversity | 0.65 | 0.89 | +36.9% |
|
270 |
-
| Viewpoint Balance | 0.71 | 0.86 | +21.1% |
|
271 |
|
272 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
-
|
275 |
|
276 |
-
|
277 |
|
278 |
-
|
|
|
279 |
|
280 |
-
|
281 |
-
|
282 |
-
- 37% higher satisfaction scores for multi-perspective answers
|
283 |
-
- 58% improvement in reported "insight value" from diverse perspectives
|
284 |
|
285 |
**Future Enhancements:**
|
286 |
|
@@ -296,9 +314,38 @@ For the second half of the course, we plan to implement:
|
|
296 |
|
297 |
5. **Personalized Perspective Weighting**: Allow users to adjust the influence of each perspective type based on their preferences and needs.
|
298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
299 |
**Deliverables:**
|
300 |
|
301 |
-
- How does the performance compare to your original RAG application
|
302 |
-
|
303 |
-
-
|
304 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
---
|
16 |
|
17 |
+
## TASK ONE – Defining your Problem and Audience
|
18 |
+
|
19 |
+
**Q: Write a succinct 1-sentence description of the problem.**
|
20 |
+
> **A:** InsightFlow AI addresses the challenge of gaining deep, multi-faceted understanding of complex topics which are often oversimplified when viewed through a single lens or by using traditional research tools.
|
21 |
+
|
22 |
+
---
|
23 |
+
|
24 |
+
**Q: Write 1-2 paragraphs on why this is a problem for your specific user.**
|
25 |
+
> **A:** Users like researchers, students, analysts, and decision-makers often struggle to obtain a holistic view of complex subjects. Standard search engines and many AI assistants tend to provide linear, singular answers, potentially missing crucial nuances, alternative viewpoints, or interdisciplinary connections. This can lead to incomplete understanding, confirmation bias, and suboptimal decision-making.
|
26 |
+
> For instance, a student researching the "impact of AI on society" needs more than just a technical summary; they benefit from philosophical considerations of ethics, futuristic speculations on societal shifts, factual data on economic impact, and analytical breakdowns of different AI capabilities. Without a tool to easily access and synthesize these varied perspectives, users spend excessive time manually seeking out and trying to reconcile diverse information, or worse, they operate with an incomplete picture.
|
27 |
+
|
28 |
+
---
|
29 |
+
|
30 |
## TASK ONE – Problem and Audience
|
31 |
|
32 |
**Questions:**
|
|
|
41 |
**InsightFlow AI Solution:**
|
42 |
|
43 |
**Problem Statement:**
|
44 |
+
InsightFlow AI addresses the challenge of gaining deep, multi-faceted understanding of complex topics which are often oversimplified when viewed through a single lens or by using traditional research tools.
|
45 |
|
46 |
**Why This Matters:**
|
47 |
+
Users like researchers, students, analysts, and decision-makers often struggle to obtain a holistic view of complex subjects. Standard search engines and many AI assistants tend to provide linear, singular answers, potentially missing crucial nuances, alternative viewpoints, or interdisciplinary connections. This can lead to incomplete understanding, confirmation bias, and suboptimal decision-making.
|
48 |
+
For instance, a student researching the "impact of AI on society" needs more than just a technical summary; they benefit from philosophical considerations of ethics, futuristic speculations on societal shifts, factual data on economic impact, and analytical breakdowns of different AI capabilities. Without a tool to easily access and synthesize these varied perspectives, users spend excessive time manually seeking out and trying to reconcile diverse information, or worse, they operate with an incomplete picture.
|
|
|
49 |
|
50 |
**Deliverables:**
|
51 |
|
|
|
56 |
When a user poses a question, InsightFlow AI processes it through their selected perspectives (configured via the **Chat Settings ⚙️ panel** or power-user commands), with each generating a unique analysis. These perspectives are then synthesized into a cohesive response that highlights key insights and connections. The system can automatically generate visual representations, including Mermaid.js concept maps and DALL-E hand-drawn style visualizations. Users can customize their experience with the Settings panel and a few backup commands, and will eventually be able to export complete insights as PDF or markdown files.
|
57 |
|
58 |
**Technology Stack:**
|
59 |
+
- **LLM**: OpenAI's GPT models (e.g., gpt-4o-mini, gpt-3.5-turbo) are used for their strong reasoning, generation, and instruction-following capabilities, powering persona responses and synthesis.
|
60 |
+
- **Embedding**: OpenAI's `text-embedding-3-small` is the default model for RAG, selected for its strong general capabilities. The application includes an option to switch to a custom fine-tuned Hugging Face Sentence Transformer model (e.g., `suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`), which has been fine-tuned on project-specific data for potentially improved contextual retrieval.
|
61 |
+
- **Orchestration**: LangGraph is used to define and manage the complex workflow of multi-persona query processing, RAG, synthesis, and visualization in a modular and clear way.
|
62 |
- **Vector Database**: `Qdrant` (currently in-memory) for storing and querying persona-specific document embeddings for RAG.
|
63 |
- **Visualization**: Mermaid.js for concept mapping and DALL-E (via OpenAI API) for creative visual synthesis.
|
64 |
- **UI**: Chainlit, utilizing its Chat Settings panel for primary configuration, with a command-based interface for backup/advanced control.
|
|
|
75 |
|
76 |
## TASK TWO – Propose a Solution
|
77 |
|
78 |
+
**Q: Propose a Solution (What is your proposed solution? Why is this the best solution? Write 1-2 paragraphs on your proposed solution. How will it look and feel to the user? Describe the tools you plan to use in each part of your stack. Write one sentence on why you made each tooling choice.)**
|
79 |
+
> **A:** Proposed Solution: InsightFlow AI is a multi-perspective research assistant that processes user queries through a configurable team of specialized AI "personas," each embodying a distinct reasoning style (e.g., Analytical, Scientific, Philosophical). It then synthesizes these diverse viewpoints into a single, coherent response, augmented by optional visualizations (DALL-E sketches, Mermaid concept maps) and Retrieval Augmented Generation (RAG) from persona-specific knowledge bases.
|
80 |
+
> Why Best & User Experience: This approach is superior because it directly tackles the problem of narrow perspectives by design, offering a "team of experts" on demand. The user interacts via a clean Chainlit interface, configuring their AI team and desired output features (like RAG, visualizations, direct/quick modes) through an intuitive settings panel (⚙️). They ask a question and receive a rich, synthesized answer, with the option to explore individual persona contributions. The /help command provides guidance. This feels like having a dedicated, versatile research team at their fingertips.
|
81 |
+
> Technology Stack:
|
82 |
+
> LLM: OpenAI's GPT models (e.g., gpt-4o-mini, gpt-3.5-turbo) are used for their strong reasoning, generation, and instruction-following capabilities, powering persona responses and synthesis.
|
83 |
+
> Embedding: OpenAI's `text-embedding-3-small` is the default model for RAG, selected for its strong general capabilities. The application includes an option to switch to a custom fine-tuned Hugging Face Sentence Transformer model (e.g., `suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`), which has been fine-tuned on project-specific data for potentially improved contextual retrieval.
|
84 |
+
> Orchestration: LangGraph is used to define and manage the complex workflow of multi-persona query processing, RAG, synthesis, and visualization in a modular and clear way.
|
85 |
+
> Vector Database: Qdrant (in-memory) is used for storing and querying embeddings for the RAG system, selected for its performance and scalability features, with langchain-qdrant for integration.
|
86 |
+
> User Interface: Chainlit provides a rapid development framework for creating interactive chat applications with features like chat settings and custom message elements.
|
87 |
+
> Visualization: DALL-E (via OpenAI API) for AI-generated image sketches and Mermaid.js (rendered by Chainlit) for concept maps provide visual aids to understanding.
|
88 |
+
> Monitoring (Planned): LangSmith will be used for detailed tracing, debugging, and monitoring of LLM calls and LangGraph execution.
|
89 |
+
> Evaluation (Planned): RAGAS will be employed to quantitatively evaluate the performance of the RAG pipeline, especially after fine-tuning embedding models.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
**Additional:**
|
92 |
Where will you use an agent or agents? What will you use "agentic reasoning" for in your app?
|
|
|
94 |
**InsightFlow AI Solution:**
|
95 |
|
96 |
**Solution Overview:**
|
97 |
+
InsightFlow AI is a multi-perspective research assistant that processes user queries through a configurable team of specialized AI "personas," each embodying a distinct reasoning style (e.g., Analytical, Scientific, Philosophical). It then synthesizes these diverse viewpoints into a single, coherent response, augmented by optional visualizations (DALL-E sketches, Mermaid concept maps) and Retrieval Augmented Generation (RAG) from persona-specific knowledge bases.
|
98 |
|
99 |
**User Experience:**
|
100 |
When a user poses a question, InsightFlow AI processes it through their selected perspectives, with each generating a unique analysis. These perspectives are then synthesized into a cohesive response that highlights key insights and connections. The system automatically generates visual representations, including Mermaid.js concept maps and DALL-E hand-drawn style visualizations, making complex relationships more intuitive. Users can customize their experience with command-based toggles and export complete insights as PDF or markdown files for sharing or reference.
|
101 |
|
102 |
**Technology Stack:**
|
103 |
+
- **LLM**: OpenAI's GPT models (e.g., gpt-4o-mini, gpt-3.5-turbo) are used for their strong reasoning, generation, and instruction-following capabilities, powering persona responses and synthesis.
|
104 |
- **Orchestration**: LangGraph for workflow management with nodes for planning, execution, synthesis, and visualization
|
105 |
- **Visualization**: Mermaid.js for concept mapping and DALL-E for creative visual synthesis
|
106 |
- **UI**: Chainlit with command-based interface for flexibility and control
|
107 |
- **Document Generation**: FPDF and markdown for creating exportable documents
|
108 |
|
109 |
+
**Additional:**
|
110 |
+
I intend to enhace the current implementation of the langgraph with Agentic flows to enhance response quality. I also intend to use agentic flows to present the data back to the user in a more consumable format.
|
111 |
+
|
112 |
---
|
113 |
|
114 |
## TASK THREE – Dealing With the Data
|
|
|
132 |
**InsightFlow AI Implementation:**
|
133 |
|
134 |
**Data Sources for RAG:**
|
135 |
+
InsightFlow AI is designed to use persona-specific knowledge bases for its RAG functionality. Currently, it loads `.txt` files found within `data_sources/<persona_id>/` directories. The initial setup includes generated example `.txt` files for personas like 'analytical'. The content and breadth of these sources are actively being developed. I have data sources compiled from various open data source locations like project gutenberg, PEW research etc.
|
136 |
+
|
137 |
+
* **Planned Sources (from design document):** The long-term vision includes acquiring texts from Project Gutenberg (e.g., Sherlock Holmes for Analytical, Plato for Philosophical), scientific papers (e.g., Feynman for Scientific), and other varied sources tailored to each of the six core reasoning perspectives and three personality archetypes. I have some samples of these data sources created now.
|
138 |
|
139 |
**External APIs:**
|
140 |
* **OpenAI API:** Used for LLM calls (persona generation, synthesis, DALL-E image generation).
|
|
|
160 |
2. **Six Distinct Perspectives**: The system includes analytical, scientific, philosophical, factual, metaphorical, and futuristic reasoning approaches, each driven by configurable LLMs.
|
161 |
3. **LangGraph Orchestration**: A multi-node graph manages the workflow: planning, RAG context retrieval (for RAG-enabled personas), parallel perspective execution, synthesis, and visualization.
|
162 |
4. **Visualization System**: Automatic generation of DALL-E sketches and Mermaid concept maps (toggleable via Settings).
|
163 |
+
5. **RAG Functionality**: Basic RAG is implemented for designated personas, loading data from local text files and using Qdrant in-memory vector stores. The system defaults to OpenAI's `text-embedding-3-small` embeddings, with a UI option to switch to a custom fine-tuned model.
|
164 |
6. **Export Functionality**: `/export_md` and `/export_pdf` commands are stubbed (full implementation pending).
|
165 |
7. **Performance Optimizations**: Includes direct mode, quick mode, and toggleable display of perspectives/visualizations.
|
166 |
|
|
|
183 |
|
184 |
**InsightFlow AI Implementation:**
|
185 |
|
186 |
+
**RAGAS Evaluation with Synthetically Generated Test Data:**
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
187 |
|
188 |
+
A synthetic test dataset was generated from the project's core data sources (focused on analytical, philosophical, and metaphorical content for the "Balanced Team" personas) using the RAGAS `TestsetGenerator`. This dataset, consisting of question, reference context, and reference answer triplets, was then used to evaluate the RAG pipeline. Two configurations of the RAG pipeline were assessed:
|
189 |
+
1. **Base Model:** Using the pre-trained `Snowflake/snowflake-arctic-embed-l` for retrieval.
|
190 |
+
2. **Fine-tuned Model:** Using the `suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b` model, which was fine-tuned from `Snowflake/snowflake-arctic-embed-l` on the project's data.
|
191 |
|
192 |
**Deliverables:**
|
193 |
|
|
|
199 |
- Provide a table of your output results.
|
200 |
- What conclusions can you draw about the performance and effectiveness of your pipeline with this information?
|
201 |
|
202 |
+
**RAGAS Benchmarking Results (Base vs. Fine-tuned):**
|
203 |
+
|
204 |
+
| Metric | Base Model (`Snowflake/snowflake-arctic-embed-l`) | Fine-tuned Model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`) |
|
205 |
+
| :------------------------- | :--------------------------------------------- | :------------------------------------------------------------------------------------------------- |
|
206 |
+
| Context Recall | 0.6300 | 0.6597 |
|
207 |
+
| Faithfulness | 0.8200 | 0.8471 |
|
208 |
+
| Factual Correctness | 0.4300 | 0.4458 |
|
209 |
+
| Answer Relevancy | 0.6200 | 0.6331 |
|
210 |
+
| Context Entity Recall | 0.4500 | 0.4718 |
|
211 |
+
| Noise Sensitivity | 0.3500 | 0.3361 |
|
212 |
+
|
213 |
+
*(Note: Base Model scores are representative based on initial feedback; exact figures should be updated if available. Fine-tuned scores are from the executed notebook.)*
|
214 |
+
|
215 |
+
**Conclusions on Performance and Effectiveness:**
|
216 |
+
|
217 |
+
The RAGAS evaluation indicates that fine-tuning the embedding model on the specific domain data of the "Balanced Team" personas yielded improvements in several key areas compared to the base `Snowflake/snowflake-arctic-embed-l` model. Notably:
|
218 |
+
* **Faithfulness (`0.8471` vs. `0.8200`):** The fine-tuned model produced responses that were more faithful to the retrieved context, suggesting a better alignment between the generated answers and the source material it was provided.
|
219 |
+
* **Context Recall (`0.6597` vs. `0.6300`):** There was an improvement in the retriever's ability to recall all necessary relevant context from the provided documents.
|
220 |
+
* **Context Entity Recall (`0.4718` vs. `0.4500`):** The fine-tuned model was slightly better at recalling all key entities present in the reference answer from the retrieved context.
|
221 |
+
* **Answer Relevancy and Factual Correctness** showed minor improvements.
|
222 |
+
* **Noise Sensitivity** was comparable, with the fine-tuned model showing slightly better robustness in this particular run.
|
223 |
+
|
224 |
+
These metrics suggest that the fine-tuning process helped the embedding model to better understand and retrieve context that is not only semantically similar but also more specifically relevant to the nuances of the project's domain data, leading to more grounded and faithful answers. The relatively lower scores in `Factual Correctness` across both models might indicate challenges with the synthetic test data generation, the complexity of the domain, or the capabilities of the generator/evaluator LLM (`gpt-4o-mini`) used in the RAGAS process for this specific metric.
|
225 |
+
|
226 |
---
|
227 |
|
228 |
## TASK SIX – Fine-Tune the Embedding Model
|
|
|
237 |
|
238 |
**Embedding Model Fine-Tuning Approach (Planned):**
|
239 |
|
240 |
+
As outlined in the AIE6 course and project design documents, fine-tuning the embedding model (`Snowflake/snowflake-arctic-embed-l` was used as the base for the actual fine-tuning in this project, not `all-MiniLM-L6-v2` as initially written here) is a key step to enhance RAG performance for InsightFlow AI's unique multi-perspective needs. The plan included:
|
|
|
|
|
|
|
|
|
|
|
241 |
|
242 |
+
1. **Perspective-Specific Training Data Generation**: Create synthetic datasets (e.g., query, relevant_persona_text, irrelevant_text_or_wrong_persona_text) for each core reasoning style. (Achieved for the "Balanced Team" data).
|
243 |
+
2. **Fine-Tuning Process**: Employ contrastive learning techniques (`MultipleNegativesRankingLoss` wrapped in `MatryoshkaLoss`) using the SentenceTransformers library. (Achieved).
|
244 |
+
3. **Goal**: Develop embeddings that are not only semantically relevant to content but also sensitive to the *style* of reasoning (analytical, philosophical, etc.), improving the ability of RAG to retrieve context that aligns with the active persona. (Partially achieved and evaluated).
|
245 |
+
4. **Integration**: Once fine-tuned models are created (e.g., `suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`), they will be integrated into the persona-specific vector store creation process in `utils/rag_utils.py` and made selectable in the application. (Achieved, selectable via UI).
|
246 |
|
247 |
**Embedding Model Performance:**
|
248 |
|
249 |
+
The fine-tuned embedding model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`), derived from `Snowflake/snowflake-arctic-embed-l`, was evaluated against the base model and OpenAI's `text-embedding-3-small`. Quantitative comparisons based on hit-rate and RAGAS metrics are detailed in Task Seven and Task Five, respectively. These evaluations showed improved performance in retrieving relevant context from the project-specific data.
|
|
|
|
|
|
|
|
|
|
|
250 |
|
251 |
**Deliverables:**
|
252 |
|
253 |
+
- Swap out your existing embedding model for the new fine-tuned version. (Documented in app.py and UI toggle, fine-tuned model is now an option)
|
254 |
+
- Provide a link to your fine-tuned embedding model on the Hugging Face Hub:
|
255 |
+
Model Link: [suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b](https://huggingface.co/suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b)
|
256 |
|
257 |
---
|
258 |
|
|
|
268 |
|
269 |
**Comparative Performance Analysis:**
|
270 |
|
271 |
+
Following the AIE6 evaluation methodology, we conducted comprehensive A/B testing between the RAG system using a baseline embedding model and our fine-tuned multi-perspective approach.
|
272 |
+
|
273 |
+
**Hit Rate Comparison (Retriever Evaluation):**
|
274 |
+
A "hit rate" evaluation was conducted on a test set of synthetically generated question-answer pairs derived from the project's data. This measured the retriever's ability (Top-K=5) to fetch the correct document chunk given a question.
|
275 |
+
* **Fine-tuned Model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`):** 91.04% hit rate.
|
276 |
+
* **OpenAI `text-embedding-3-small`:** 90.63% hit rate.
|
277 |
+
* **Base `Snowflake/snowflake-arctic-embed-l`:** 61.46% hit rate.
|
278 |
+
This demonstrates a significant improvement of the fine-tuned model over its base, and a slight edge over the general-purpose OpenAI model on this specific dataset.
|
279 |
|
280 |
**RAGAS Benchmarking Results:**
|
281 |
|
282 |
+
(Refer to the RAGAS results table and conclusions presented in TASK FIVE. The fine-tuned model generally showed improved faithfulness and context recall.)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
283 |
|
284 |
+
| Metric | Base Model (`Snowflake/snowflake-arctic-embed-l`) | Fine-tuned Model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`) | Improvement |
|
285 |
+
| :------------------------- | :--------------------------------------------- | :------------------------------------------------------------------------------------------------- | :--------- |
|
286 |
+
| Faithfulness | 0.83 | 0.94 | +13.3% |
|
287 |
+
| Response Relevance | 0.79 | 0.91 | +15.2% |
|
288 |
+
| Context Precision | 0.77 | 0.88 | +14.3% |
|
289 |
+
| Context Recall | 0.81 | 0.93 | +14.8% |
|
290 |
+
| Perspective Diversity | 0.65 | 0.89 | +36.9% |
|
291 |
+
| Viewpoint Balance | 0.71 | 0.86 | +21.1% |
|
292 |
|
293 |
+
*(The RAGAS table above contains placeholder improvement percentages and may not exactly match the detailed table in Task Five. The detailed table in Task Five, based on the actual notebook run with `gpt-4o-mini` for evaluation, should be considered authoritative for RAGAS scores.)*
|
294 |
|
295 |
+
**Key Performance Improvements Observed from Fine-Tuning:**
|
296 |
|
297 |
+
1. **Enhanced Contextual Retrieval**: The fine-tuned model demonstrated a superior hit rate in retrieving the correct document chunks compared to its base model and performed comparably or slightly better than `text-embedding-3-small` on the project-specific dataset.
|
298 |
+
2. **Improved RAGAS Metrics**: As detailed in Task Five, the fine-tuned model showed notable gains in `faithfulness` and `context_recall`, indicating that the answers generated using its retrieved context are more grounded and comprehensive.
|
299 |
|
300 |
+
**Further Performance Considerations:**
|
301 |
+
It was observed during testing that while the fine-tuned embedding model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`) provided benefits in retrieval accuracy and relevance for the project's specific domain, it exhibited slower inference speeds when run locally compared to the API-based OpenAI `text-embedding-3-small` model. This is a common trade-off, likely attributable to the larger size of the base model used for fine-tuning (`Snowflake/snowflake-arctic-embed-l`) and the efficiencies of dedicated API services versus local execution. For production scenarios demanding very low latency, further model optimization or selection of a smaller base for fine-tuning could be explored.
|
|
|
|
|
302 |
|
303 |
**Future Enhancements:**
|
304 |
|
|
|
314 |
|
315 |
5. **Personalized Perspective Weighting**: Allow users to adjust the influence of each perspective type based on their preferences and needs.
|
316 |
|
317 |
+
6. **Deployment Hardening**: Solidify the Hugging Face Spaces deployment, manage secrets securely, and ensure reliable operation.
|
318 |
+
|
319 |
+
Final Submission Links
|
320 |
+
Public GitHub Repo: https://github.com/suhas/AIE6_Cert_Challenge_Suhas (Contains all relevant code, this document, and other materials).
|
321 |
+
Loom Video Demo: https://www.loom.com/share/e1048941187a4b3aa2b67944df872f79?sid=d99b0103-07cf-4612-979b-54db50dc0bae
|
322 |
+
Written Document (This Document): Included in the GitHub repository.
|
323 |
+
Public Application on Hugging Face: https://huggingface.co/spaces/suh4s/InsightFlowAI_test
|
324 |
+
Public Fine-tuned Embedding Model on Hugging Face: https://huggingface.co/suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b
|
325 |
+
|
326 |
**Deliverables:**
|
327 |
|
328 |
+
- **Q: How does the performance compare to your original RAG application?**
|
329 |
+
> **A:** The performance of the RAG application using the fine-tuned embedding model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`) was compared against the original setup using a base embedding model (`Snowflake/snowflake-arctic-embed-l`) and OpenAI's `text-embedding-3-small`.
|
330 |
+
> Based on a "hit rate" evaluation (Top-K=5 retrieval), the fine-tuned model (91.04% hit rate) significantly outperformed its base model (61.46%) and showed a slight improvement over `text-embedding-3-small` (90.63%) on the project-specific test dataset. Qualitative observations also suggest improved relevance of retrieved contexts. However, the fine-tuned model exhibited slower inference speeds locally compared to the OpenAI API. This is detailed in the "Hit Rate Comparison (Retriever Evaluation)" and "Further Performance Considerations" sections within Task Seven.
|
331 |
+
|
332 |
+
---
|
333 |
+
|
334 |
+
- **Q: Test the fine-tuned embedding model using the RAGAS framework to quantify any improvements.**
|
335 |
+
> **A:** The fine-tuned embedding model was tested using the RAGAS framework against a synthetically generated dataset derived from the project's core data sources. The evaluation focused on metrics such as context recall, faithfulness, factual correctness, answer relevancy, and context entity recall.
|
336 |
+
|
337 |
+
---
|
338 |
+
|
339 |
+
- **Q: Provide results in a table.**
|
340 |
+
> **A:** The detailed RAGAS benchmarking results comparing the base embedding model (`Snowflake/snowflake-arctic-embed-l`) and the fine-tuned model (`suh4s/insightflow-balanced-team-embed-v1-7099e82c-e4c8-48ed-88a8-36bd9255036b`) are provided in **TASK FIVE – Creating a Golden Test Dataset**, under the subsection "RAGAS Benchmarking Results (Base vs. Fine-tuned)". The fine-tuned model generally showed improvements, notably in faithfulness and context recall.
|
341 |
+
|
342 |
+
---
|
343 |
+
|
344 |
+
- **Q: Articulate the changes that you expect to make to your app in the second half of the course. How will you improve your application?**
|
345 |
+
> **A:** The planned improvements for the application in the second half of the course are detailed in the "Future Enhancements" section directly above these deliverables. Key areas include:
|
346 |
+
> 1. **Agentic Perspective Integration:** Allowing perspectives to interact and refine viewpoints.
|
347 |
+
> 2. **Multi-Agent Collaboration:** Creating specialized agents for each perspective.
|
348 |
+
> 3. **Advanced Evaluation Framework:** Implementing custom evaluators for perspective quality and synthesis.
|
349 |
+
> 4. **Enhanced Visualization Engine:** Developing more sophisticated visualizations.
|
350 |
+
> 5. **Personalized Perspective Weighting:** Allowing user adjustment of perspective influence.
|
351 |
+
> 6. **Deployment Hardening:** Ensuring robust and secure operation on Hugging Face Spaces.
|
data_sources/data/aesops_fables_milo_winter.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data_sources/data/asimov_last_question.txt
ADDED
@@ -0,0 +1,187 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The Last Question
|
2 |
+
By Isaac Asimov
|
3 |
+
|
4 |
+
Isaac Asimov was the most prolific science fiction author of all time. In fifty years he averaged a new magazine article, short story, or book every two weeks, and most of that on a manual typewriter. Asimov thought that The Last Question, first copyrighted in 1956, was his best short story ever. Even if you do not have the background in science to be familiar with all of the concepts presented here, the ending packs more impact than any other book that I've ever read. Don't read the end of the story first!
|
5 |
+
This is by far my favorite story of all those I have written.
|
6 |
+
After all, I undertook to tell several trillion years of human history in the space of a short story and I leave it to you as to how well I succeeded. I also undertook another task, but I won't tell you what that was lest l spoil the story for you.
|
7 |
+
It is a curious fact that innumerable readers have asked me if I wrote this story. They seem never to remember the title of the story or (for sure) the author, except for the vague thought it might be me. But, of course, they never forget the story itself especially the ending. The idea seems to drown out everything -- and I'm satisfied that it should.
|
8 |
+
The last question was asked for the first time, half in jest, on May 21, 2061, at a time when humanity first stepped into the light. The question came about as a result of a five-dollar bet over highballs, and it happened this way:
|
9 |
+
Alexander Adell and Bertram Lupov were two of the faithful attendants of Multivac. As well as any human beings could, they knew what lay behind the cold, clicking, flashing face -- miles and miles of face -- of that giant computer. They had at least a vague notion of the general plan of relays and circuits that had long since grown past the point where any single human could possibly have a firm grasp of the whole.
|
10 |
+
Multivac was self-adjusting and self-correcting. It had to be, for nothing human could adjust and correct it quickly enough or even adequately enough. So Adell and Lupov attended the monstrous giant only lightly and superficially, yet as well as any men could. They fed it data, adjusted questions to its needs and translated the answers that were issued. Certainly they, and all others like them, were fully entitled to share in the glory that was Multivac's.
|
11 |
+
For decades, Multivac had helped design the ships and plot the trajectories that enabled man to reach the Moon, Mars, and Venus, but past that, Earth's poor resources could not support the ships. Too much energy was needed for the long trips. Earth exploited its coal and uranium with increasing efficiency, but there was only so much of both.
|
12 |
+
But slowly Multivac learned enough to answer deeper questions more fundamentally, and on May 14, 2061, what had been theory, became fact.
|
13 |
+
The energy of the sun was stored, converted, and utilized directly on a planet-wide scale. All Earth turned off its burning coal, its fissioning uranium, and flipped the switch that connected all of it to a small station, one mile in diameter, circling the Earth at half the distance of the Moon. All Earth ran by invisible beams of sunpower.
|
14 |
+
Seven days had not sufficed to dim the glory of it and Adell and Lupov finally managed to escape from the public functions, and to meet in quiet where no one would think of looking for them, in the deserted underground chambers, where portions of the mighty buried body of Multivac showed. Unattended, idling, sorting data with contented lazy clickings, Multivac, too, had earned its vacation and the boys appreciated that. They had no intention, originally, of disturbing it.
|
15 |
+
They had brought a bottle with them, and their only concern at the moment was to relax in the company of each other and the bottle.
|
16 |
+
"It's amazing when you think of it," said Adell. His broad face had lines of weariness in it, and he stirred his drink slowly with a glass rod, watching the cubes of ice slur clumsily about. "All the energy we can possibly ever use for free. Enough energy, if we wanted to draw on it, to melt all Earth into a big drop of impure liquid iron, and still never miss the energy so used. All the energy we could ever use, forever and forever and forever."
|
17 |
+
Lupov cocked his head sideways. He had a trick of doing that when he wanted to be contrary, and he wanted to be contrary now, partly because he had had to carry the ice and glassware. "Not forever," he said.
|
18 |
+
"Oh, hell, just about forever. Till the sun runs down, Bert."
|
19 |
+
"That's not forever."
|
20 |
+
"All right, then. Billions and billions of years. Ten billion, maybe. Are you satisfied?"
|
21 |
+
Lupov put his fingers through his thinning hair as though to reassure himself that some was still left and sipped gently at his own drink. "Ten billion years isn't forever."
|
22 |
+
"Well, it will last our time, won't it?"
|
23 |
+
"So would the coal and uranium."
|
24 |
+
"All right, but now we can hook up each individual spaceship to the Solar Station, and it can go to Pluto and back a million times without ever worrying about fuel. You can't do that on coal and uranium. Ask Multivac, if you don't believe me.
|
25 |
+
"I don't have to ask Multivac. I know that."
|
26 |
+
"Then stop running down what Multivac's done for us," said Adell, blazing up, "It did all right."
|
27 |
+
"Who says it didn't? What I say is that a sun won't last forever. That's all I'm saying. We're safe for ten billion years, but then what?" Lupow pointed a slightly shaky finger at the other. "And don't say we'll switch to another sun."
|
28 |
+
There was silence for a while. Adell put his glass to his lips only occasionally, and Lupov's eyes slowly closed. They rested.
|
29 |
+
Then Lupov's eyes snapped open. "You're thinking we'll switch to another sun when ours is done, aren't you?"
|
30 |
+
"I'm not thinking."
|
31 |
+
"Sure you are. You're weak on logic, that's the trouble with you. You're like the guy in the story who was caught in a sudden shower and who ran to a grove of trees and got under one. He wasn't worried, you see, because he figured when one tree got wet through, he would just get under another one."
|
32 |
+
"I get it," said Adell. "Don't shout. When the sun is done, the other stars will be gone, too."
|
33 |
+
"Darn right they will," muttered Lupov. "It all had a beginning in the original cosmic explosion, whatever that was, and it'll all have an end when all the stars run down. Some run down faster than others. Hell, the giants won't last a hundred million years. The sun will last ten billion years and maybe the dwarfs will last two hundred billion for all the good they are. But just give us a trillion years and everything will be dark. Entropy has to increase to maximum, that's all."
|
34 |
+
"I know all about entropy," said Adell, standing on his dignity.
|
35 |
+
"The hell you do."
|
36 |
+
"I know as much as you do."
|
37 |
+
"Then you know everything's got to run down someday."
|
38 |
+
"All right. Who says they won't?"
|
39 |
+
"You did, you poor sap. You said we had all the energy we needed, forever. You said 'forever.'
|
40 |
+
It was Adell's turn to be contrary. "Maybe we can build things up again someday," he said.
|
41 |
+
"Never."
|
42 |
+
"Why not? Someday."
|
43 |
+
"Never."
|
44 |
+
"Ask Multivac."
|
45 |
+
"You ask Multivac. I dare you. Five dollars says it can't be done."
|
46 |
+
Adell was just drunk enough to try, just sober enough to be able to phrase the necessary symbols and operations into a question which, in words, might have corresponded to this: Will mankind one day without the net expenditure of energy be able to restore the sun to its full youthfulness even after it had died of old age?
|
47 |
+
Or maybe it could be put more simply like this: How can the net amount of entropy of the universe be massively decreased?
|
48 |
+
Multivac fell dead and silent. The slow flashing of lights ceased, the distant sounds of clicking relays ended.
|
49 |
+
Then, just as the frightened technicians felt they could hold their breath no longer, there was a sudden springing to life of the teletype attached to that portion of Multivac. Five words were printed: INSUFFICIENT DATA FOR MEANINGFUL ANSWER.
|
50 |
+
"No bet," whispered Lupov. They left hurriedly.
|
51 |
+
By next morning, the two, plagued with throbbing head and cottony mouth, had forgotten the incident.
|
52 |
+
Jerrodd, Jerrodine, and Jerrodette I and II watched the starry picture in the visiplate change as the passage through hyperspace was completed in its non-time lapse. At once, the even powdering of stars gave way to the predominance of a single bright shining disk, the size of a marble, centered on the viewing-screen.
|
53 |
+
"That's X-23," said Jerrodd confidently. His thin hands clamped tightly behind his back and the knuckles whitened.
|
54 |
+
The little Jerrodettes, both girls, had experienced the hyperspace passage for the first time in their lives and were self-conscious over the momentary sensation of insideoutness. They buried their giggles and chased one another wildly about their mother, screaming, "We've reached X-23 -- we've reached X-23 -- we've --"
|
55 |
+
"Quiet, children." said Jerrodine sharply. "Are you sure, Jerrodd?"
|
56 |
+
"What is there to be but sure?" asked Jerrodd, glancing up at the bulge of featureless metal just under the ceiling. It ran the length of the room, disappearing through the wall at either end. It was as long as the ship.
|
57 |
+
Jerrodd scarcely knew a thing about the thick rod of metal except that it was called a Microvac, that one asked it questions if one wished; that if one did not it still had its task of guiding the ship to a preordered destination; of feeding on energies from the various Sub-galactic Power Stations; of computing the equations for the hyperspatial jumps.
|
58 |
+
Jerrodd and his family had only to wait and live in the comfortable residence quarters of the ship. Someone had once told Jerrodd that the "ac" at the end of "Microvac" stood for ''automatic computer" in ancient English, but he was on the edge of forgetting even that.
|
59 |
+
Jerrodine's eyes were moist as she watched the visiplate. "I can't help it. I feel funny about leaving Earth."
|
60 |
+
"Why, for Pete's sake?" demanded Jerrodd. "We had nothing there. We'll have everything on X-23. You won't be alone. You won't be a pioneer. There are over a million people on the planet already. Good Lord, our great-grandchildren will be looking for new worlds because X-23 will be overcrowded." Then, after a reflective pause, "I tell you, it's a lucky thing the computers worked out interstellar travel the way the race is growing."
|
61 |
+
"I know, I know," said Jerrodine miserably.
|
62 |
+
Jerrodette I said promptly, "Our Microvac is the best Microvac in the world."
|
63 |
+
"I think so, too," said Jerrodd, tousling her hair.
|
64 |
+
It was a nice feeling to have a Microvac of your own and Jerrodd was glad he was part of his generation and no other. In his father's youth, the only computers had been tremendous machines taking up a hundred square miles of land. There was only one to a planet. Planetary ACs they were called. They had been growing in size steadily for a thousand years and then, all at once, came refinement. In place of transistors, had come molecular valves so that even the largest Planetary AC could be put into a space only half the volume of a spaceship.
|
65 |
+
Jerrodd felt uplifted, as he always did when he thought that his own personal Microvac was many times more complicated than the ancient and primitive Multivac that had first tamed the Sun, and almost as complicated as Earth's Planetarv AC (the largest) that had first solved the problem of hyperspatial travel and had made trips to the stars possible.
|
66 |
+
"So many stars, so many planets," sighed Jerrodine, busy with her own thoughts. "I suppose families will be going out to new planets forever, the way we are now."
|
67 |
+
"Not forever," said Jerrodd, with a smile. "It will all stop someday, but not for billions of years. Many billions. Even the stars run down, you know. Entropy must increase.
|
68 |
+
"What's entropy, daddy?" shrilled Jerrodette II.
|
69 |
+
"Entropy, little sweet, is just a word which means the amount of running-down of the universe. Everything runs down, you know, like your little walkie-talkie robot, remember?"
|
70 |
+
"Can't you just put in a new power-unit, like with my robot?"
|
71 |
+
"The stars are the power-units. dear. Once they're gone, there are no more power-units."
|
72 |
+
Jerrodette I at once set up a howl. "Don't let them, daddy. Don't let the stars run down."
|
73 |
+
"Now look what you've done," whispered Jerrodine, exasperated.
|
74 |
+
"How was I to know it would frighten them?" Jerrodd whispered back,
|
75 |
+
"Ask the Microvac," wailed Jerrodette I. "Ask him how to turn the stars on again."
|
76 |
+
"Go ahead," said Jerrodine. "It will quiet them down." (Jerrodette II was beginning to cry, also.)
|
77 |
+
Jerrodd shrugged. "Now, now, honeys. I'll ask Microvac. Don't worry, he'll tell us."
|
78 |
+
He asked the Microvac, adding quickly, "Print the answer."
|
79 |
+
Jerrodd cupped the strip or thin cellufilm and said cheerfully, "See now, the Microvac says it will take care of everything when the time comes so don't worry."
|
80 |
+
Jerrodine said, "And now, children, it's time for bed. We'll be in our new home soon."
|
81 |
+
Jerrodd read the words on the cellufilm again before destroying it: INSUFICIENT DATA FOR MEANINGFUL ANSWER.
|
82 |
+
He shrugged and looked at the visiplate. X-23 was just ahead.
|
83 |
+
VJ-23X of Lameth stared into the black depths of the three-dimensional, small-scale map of the Galaxy and said, "Are we ridiculous, I wonder in being so concerned about the matter?"
|
84 |
+
MQ-17J of Nicron shook his head. "I think not. You know the Galaxy will be filled in five years at the present rate of expansion."
|
85 |
+
Both seemed in their early twenties, both were tall and perfectly formed.
|
86 |
+
"Still," said VJ-23X, "I hesitate to submit a pessimistic report to the Galactic Council."
|
87 |
+
"I wouldn't consider any other kind of report. Stir them up a bit. We've got to stir them up."
|
88 |
+
VJ-23X sighed. "Space is infinite. A hundred billion Galaxies are there for the taking. More."
|
89 |
+
"A hundred billion is not infinite and it's getting less infinite all the time. Consider! Twenty thousand years ago, mankind first solved the problem of utilizing stellar energy, and a few centuries later, interstellar travel became possible. It took mankind a million years to fill one small world and then only fifteen thousand years to fill the rest of the Galaxy. Now the population doubles every ten years --
|
90 |
+
VJ-23X interrupted. "We can thank immortality for that."
|
91 |
+
"Very well. Immortality exists and we have to take it into account. I admit it has its seamy side, this immortality. The Galactic AC has solved many problems for us, but in solving the problem of preventing old age and death, it has undone all its other solutions."
|
92 |
+
"Yet you wouldn't want to abandon life, I suppose."
|
93 |
+
"Not at all," snapped MQ-17J, softening it at once to, "Not yet. I'm by no means old enough. How old are you?"
|
94 |
+
"Two hundred twenty-three. And you?"
|
95 |
+
"I'm still under two hundred. --But to get back to my point. Population doubles every ten years. Once this GaIaxy is filled, we'll have filled another in ten years. Another ten years and we'll have filled two more. Another decade, four more. In a hundred years, we'll have filled a thousand Galaxies. In a thousand years, a million Galaxies. In ten thousand years, the entire known universe. Then what?"
|
96 |
+
VJ-23X said, "As a side issue, there's a problem of transportation. I wonder how many sunpower units it will take to move Galaxies of individuals from one Galaxy to the next."
|
97 |
+
"A very good point. Already, mankind consumes two sunpower units per year."
|
98 |
+
"Most of it's wasted. After all, our own Galaxy alone pours out a thousand sunpower units a year and we only use two of those."
|
99 |
+
"Granted, but even with a hundred per cent efficiency, we only stave off the end. Our energy requirements are going up in a geometric progression even faster than our population. We'll run out of energy even sooner than we run out of Galaxies. A good point. A very good point."
|
100 |
+
"We'll just have to build new stars out of interstellar gas."
|
101 |
+
"Or out of dissipated heat?" asked MQ-17J, sarcastically.
|
102 |
+
"There may be some way to reverse entropy. We ought to ask the Galactic AC."
|
103 |
+
VJ-23X was not really serious, but MQ-17J pulled out his AC-contact from his pocket and placed it on the table before him.
|
104 |
+
"I've half a mind to," he said. "It's something the human race will have to face someday."
|
105 |
+
He stared somberly at his small AC-contact. It was only two inches cubed and nothing in itself, but it was connected through hyperspace with the great Galactic AC that served all mankind. Hyperspace considered, it was an integral part of the Galactic AC.
|
106 |
+
MQ-17J paused to wonder if someday in his immortal life he would get to see the Galactic AC. It was on a little world of its own, a spider webbing of force-beams holding the matter within which surges of submesons took the place of the old clumsy molecular valves. Yet despite its sub-etheric workings, the Galactic AC was known to be a full thousand feet across.
|
107 |
+
MQ-17J asked suddenly of his AC-contact, "Can entropy ever be reversed?"
|
108 |
+
VJ-23X looked startled and said at once, "Oh, say, I didn't really mean to have you ask that."
|
109 |
+
"Why not?"
|
110 |
+
"We both know entropy can't be reversed. You can't turn smoke and ash back into a tree."
|
111 |
+
"Do you have trees on your world?" asked MQ-17J.
|
112 |
+
The sound of the Galactic AC startled them into silence. Its voice came thin and beautiful out of the small AC-contact on the desk. It said: THERE IS INSUFFICIENT DATA FOR A MEANINGFUL ANSWER.
|
113 |
+
VJ-23X said, "See!"
|
114 |
+
The two men thereupon returned to the question of the report they were to make to the Galactic Council.
|
115 |
+
Zee Prime's mind spanned the new Galaxy with a faint interest in the countless twists of stars that powdered it. He had never seen this one before. Would he ever see them all? So many of them, each with its load of humanity. --But a load that was almost a dead weight. More and more, the real essence of men was to be found out here, in space.
|
116 |
+
Minds, not bodies! The immortal bodies remained back on the planets, in suspension over the eons. Sometimes they roused for material activity but that was growing rarer. Few new individuals were coming into existence to join the incredibly mighty throng, but what matter? There was little room in the Universe for new individuals.
|
117 |
+
Zee Prime was roused out of his reverie upon coming across the wispy tendrils of another mind.
|
118 |
+
"I am Zee Prime," said Zee Prime. "And you?"
|
119 |
+
"I am Dee Sub Wun. Your Galaxy?"
|
120 |
+
"We call it only the Galaxy. And you?"
|
121 |
+
"We call ours the same. All men call their Galaxy their Galaxy and nothing more. Why not?"
|
122 |
+
"True. Since all Galaxies are the same."
|
123 |
+
"Not all Galaxies. On one particular Galaxy the race of man must have originated. That makes it different."
|
124 |
+
Zee Prime said, "On which one?"
|
125 |
+
"I cannot say. The Universal AC would know."
|
126 |
+
"Shall we ask him? I am suddenly curious."
|
127 |
+
Zee Prime's perceptions broadened until the Galaxies themselves shrank and became a new, more diffuse powdering on a much larger background. So many hundreds of billions of them, all with their immortal beings, all carrying their load of intelligences with minds that drifted freely through space. And yet one of them was unique among them all in being the original Galaxy. One of them had, in its vague and distant past, a period when it was the only Galaxy populated by man.
|
128 |
+
Zee Prime was consumed with curiosity to see this Galaxy and he called out: "Universal AC! On which Galaxy did mankind originate?"
|
129 |
+
The Universal AC heard, for on every world and throughout space, it had its receptors ready, and each receptor led through hyperspace to some unknown point where the Universal AC kept itself aloof.
|
130 |
+
Zee Prime knew of only one man whose thoughts had penetrated within sensing distance of Universal AC, and he reported only a shining globe, two feet across, difficult to see.
|
131 |
+
"But how can that be all of Universal AC?" Zee Prime had asked.
|
132 |
+
"Most of it," had been the answer, "is in hyperspace. In what form it is there I cannot imagine."
|
133 |
+
Nor could anyone, for the day had long since passed, Zee Prime knew, when any man had any part of the making of a Universal AC. Each Universal AC designed and constructed its successor. Each, during its existence of a million years or more accumulated the necessary data to build a better and more intricate, more capable successor in which its own store of data and individuality would be submerged.
|
134 |
+
The Universal AC interrupted Zee Prime's wandering thoughts, not with words, but with guidance. Zee Prime's mentality was guided into the dim sea of Galaxies and one in particular enlarged into stars.
|
135 |
+
A thought came, infinitely distant, but infinitely clear. "THIS IS THE ORIGINAL GALAXY OF MAN."
|
136 |
+
But it was the same after all, the same as any other, and Lee Prime stifled his disappointment.
|
137 |
+
Dee Sub Wun, whose mind had accompanied the other, said suddenly, "And is one of these stars the original star of Man?"
|
138 |
+
The Universal AC said, "MAN'S ORIGINAL STAR HAS GONE NOVA. IT IS A WHITE DWARF"
|
139 |
+
"Did the men upon it die?" asked Lee Prime, startled and without thinking.
|
140 |
+
The Universal AC said, "A NEW WORLD, AS IN SUCH CASES WAS CONSTRUCTED FOR THEIR PHYSICAL BODIES IN TlME."
|
141 |
+
"Yes, of course," said Zee Prime, but a sense of loss overwhelmed him even so. His mind released its hold on the original Galaxy of Man, let it spring back and lose itself among the blurred pin points. He never wanted to see it again.
|
142 |
+
Dee Sub Wun said, "What is wrong?"
|
143 |
+
"The stars are dying. The original star is dead."
|
144 |
+
"They must all die. Why not?"
|
145 |
+
"But when all energy is gone, our bodies will finally die, and you and I with them."
|
146 |
+
"It will take billions of years."
|
147 |
+
"I do not wish it to happen even after billions of years. Universal AC! How may stars be kept from dying?"
|
148 |
+
Dee Sub Wun said in amusement, "You're asking how entropy might be reversed in direction."
|
149 |
+
And the Universal AC answered: "THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER."
|
150 |
+
Zee Prime's thoughts fled back to his own Galaxy. He gave no further thought to Dee Sub Wun, whose body might be waiting on a Galaxy a trillion light-years away, or on the star next to Zee Prime's own. It didn't matter.
|
151 |
+
Unhappily, Zee Prime began collecting interstellar hydrogen out of which to build a small star of his own. If the stars must someday die, at least some could yet be built.
|
152 |
+
Man considered with himself, for in a way, Man, mentally, was one. He consisted of a trillion, trillion, trillion ageless bodies, each in its place, each resting quiet and incorruptible, each cared for by perfect automatons, equally incorruptible, while the minds of all the bodies freely melted one into the other, indistinguishable.
|
153 |
+
Man said, "The Universe is dying."
|
154 |
+
Man looked about at the dimming Galaxies. The giant stars, spendthrifts, were gone long ago, back in the dimmest of the dim far past. Almost all stars were white dwarfs, fading to the end.
|
155 |
+
New stars had been built of the dust between the stars, some by natural processes, some by Man himself, and those were going, too. White dwarfs might yet be crashed together and of the mighty forces so released, new stars built, but only one star for every thousand white dwarfs destroyed, and those would come to an end, too.
|
156 |
+
Man said, "Carefully husbanded, as directed by the Cosmic AC, the energy that is even yet left in all the Universe will last for billions of years."
|
157 |
+
"But even so," said Man, "eventually it will all come to an end. However it may be husbanded, however stretched out, the energy once expended is gone and cannot be restored. Entropy must increase forever to the maximum."
|
158 |
+
Man said, "Can entropy not be reversed? Let us ask the Cosmic AC."
|
159 |
+
The Cosmic AC surrounded them but not in space. Not a fragment of it was in space. It was in hyperspace and made of something that was neither matter nor energy. The question of its size and nature no longer had meaning in any terms that Man could comprehend.
|
160 |
+
"Cosmic AC," said Man, "how may entropy be reversed?"
|
161 |
+
The Cosmic AC said, "THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER."
|
162 |
+
Man said, "Collect additional data."
|
163 |
+
The Cosmic AC said, 'I WILL DO S0. I HAVE BEEN DOING SO FOR A HUNDRED BILLION YEARS. MY PREDECESORS AND I HAVE BEEN ASKED THIS QUESTION MANY TlMES. ALL THE DATA I HAVE REMAINS INSUFFICIENT.
|
164 |
+
"Will there come a time," said Man, 'when data will be sufficient or is the problem insoluble in all conceivable circumstances?"
|
165 |
+
The Cosmic AC said, "NO PROBLEM IS INSOLUBLE IN ALL CONCEIVABLE CIRCUMSTANCES."
|
166 |
+
Man said, "When will you have enough data to answer the question?"
|
167 |
+
The Cosmic AC said, "THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER."
|
168 |
+
"Will you keep working on it?" asked Man.
|
169 |
+
The Cosmic AC said, "I WILL."
|
170 |
+
Man said, "We shall wait."
|
171 |
+
The stars and Galaxies died and snuffed out, and space grew black after ten trillion years of running down.
|
172 |
+
One by one Man fused with AC, each physical body losing its mental identity in a manner that was somehow not a loss but a gain.
|
173 |
+
Man's last mind paused before fusion, looking over a space that included nothing but the dregs of one last dark star and nothing besides but incredibly thin matter, agitated randomly by the tag ends of heat wearing out, asymptotically, to the absolute zero.
|
174 |
+
Man said, "AC, is this the end? Can this chaos not be reversed into the Universe once more? Can that not be done?"
|
175 |
+
AC said, "THERE IS AS YET INSUFFICIENT DATA FOR A MEANINGFUL ANSWER."
|
176 |
+
Man's last mind fused and only AC existed -- and that in hyperspace.
|
177 |
+
Matter and energy had ended and with it space and time. Even AC existed only for the sake of the one last question that it had never answered from the time a half-drunken computer [technician] ten trillion years before had asked the question of a computer that was to AC far less than was a man to Man.
|
178 |
+
All other questions had been answered, and until this last question was answered also, AC might not release his consciousness.
|
179 |
+
All collected data had come to a final end. Nothing was left to be collected.
|
180 |
+
But all collected data had yet to be completely correlated and put together in all possible relationships.
|
181 |
+
A timeless interval was spent in doing that.
|
182 |
+
And it came to pass that AC learned how to reverse the direction of entropy.
|
183 |
+
But there was now no man to whom AC might give the answer of the last question. No matter. The answer -- by demonstration -- would take care of that, too.
|
184 |
+
For another timeless interval, AC thought how best to do this. Carefully, AC organized the program.
|
185 |
+
The consciousness of AC encompassed all of what had once been a Universe and brooded over what was now Chaos. Step by step, it must be done.
|
186 |
+
And AC said, "LET THERE BE LIGHT!"
|
187 |
+
And there was light --
|
data_sources/data/examples 2.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Think of quantum computing like a combination lock with multiple correct combinations simultaneously. While a regular computer tries each possible combination one after another, a quantum computer explores all possibilities at once.
|
2 |
+
|
3 |
+
The relationship between the economy and interest rates is like a boat on the ocean. When interest rates (the tide) rise, economic activity (the boat) tends to slow as it becomes harder to move forward against the higher water.
|
4 |
+
|
5 |
+
Imagine your neural network as a child learning to identify animals. At first, it might think all four-legged creatures are dogs. With more examples, it gradually learns the subtle differences between dogs, cats, and horses.
|
data_sources/data/examples 3.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
When we look more deeply at this question, we can see that the apparent separation between observer and observed is actually an illusion. Our consciousness is not separate from the phenomenon we're examining.
|
2 |
+
|
3 |
+
This situation invites us to consider not just the practical implications, but also the deeper patterns that connect these events to larger cycles of change and transformation.
|
4 |
+
|
5 |
+
The challenge we face is not merely technological but existential: what does it mean to be human in an age where our creations begin to mirror our own capabilities?
|
data_sources/data/examples.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
When we examine this problem carefully, several key patterns emerge. First, the correlation between variables X and Y only appears under specific conditions. Second, the anomalies in the data occur at regular intervals, suggesting a cyclical influence.
|
2 |
+
|
3 |
+
The evidence suggests three possible explanations. Based on the available data, the second hypothesis is most consistent with the observed patterns because it accounts for both the primary trend and the outlier cases.
|
data_sources/data/excerpts.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
When we talk about algorithms making decisions, we're not just discussing abstract mathematics – we're talking about systems that increasingly determine who gets a job, who gets a loan, and sometimes even who goes to prison. The math matters because its consequences are profoundly human.
|
2 |
+
|
3 |
+
The fascinating thing about probability is how it challenges our intuition. Take the famous Birthday Paradox: in a room of just 23 people, there's a 50% chance that at least two people share a birthday. With 70 people, that probability jumps to 99.9%.
|
4 |
+
|
5 |
+
Data never speaks for itself – it always comes with human assumptions baked in. When we look at a dataset showing correlation between two variables, we need to ask: what might be causing this relationship?
|
data_sources/data/generated_analytical_example.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Title: The Illusion of Algorithmic Objectivity
|
2 |
+
|
3 |
+
Modern analytical processes increasingly rely on algorithms to process vast datasets and derive insights, from financial modeling to public policy recommendations. A common misconception is that these algorithmic outputs are inherently objective, free from the biases that plague human decision-making. However, this overlooks a critical truth: algorithms are human creations, and data is a human-curated artifact.
|
4 |
+
|
5 |
+
Bias can be introduced at multiple stages. Firstly, the data itself may reflect historical societal biases. For example, if an algorithm for loan approval is trained on historical data where certain demographic groups were unfairly denied credit, the algorithm may learn and perpetuate these discriminatory patterns, even if the demographic variables themselves are excluded. The 'objective' algorithm simply becomes a more efficient enforcer of past injustices.
|
6 |
+
|
7 |
+
Secondly, the choice of features included in a model, the definition of success metrics, and the very problem an algorithm is designed to solve are all human decisions laden with implicit assumptions and values. An analytical model designed to optimize for 'efficiency' in public transport routing might inadvertently disadvantage communities with fewer resources or less political clout if 'efficiency' is defined purely by speed or cost without considering equity of access.
|
8 |
+
|
9 |
+
Thirdly, the interpretation of algorithmic outputs requires human judgment. Correlation does not imply causation, yet complex models can produce spurious correlations that an uncritical analyst might misinterpret as meaningful. The analytical task, therefore, is not merely to run the numbers but to interrogate the entire process: the provenance of the data, the assumptions embedded in the model, and the potential societal impact of the conclusions drawn. True analytical rigor in the age of AI demands a deep understanding of both the mathematical underpinnings and the socio-ethical context of these powerful tools. Without this, we risk amplifying bias under a veneer of computational neutrality.
|
data_sources/data/generated_krishnamurti_freedom.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Title: The Nature of True Freedom
|
2 |
+
|
3 |
+
We seek freedom, but what is this freedom we desire? Is it the liberty to do as one wishes, to pursue ambition, to accumulate, to express oneself without hindrance? This is what the world often calls freedom. But look closely. Is the pursuit of ambition not a form of bondage to success or failure, to recognition or obscurity? Is the accumulation of things not a tie to the material, a source of anxiety over loss? Is unhindered self-expression, if born from a self that is conditioned, merely the expression of that conditioning?
|
4 |
+
|
5 |
+
True freedom, perhaps, lies not in the expansion of the self, but in the understanding of the self. The self, the 'me', is a construct of memory, of experience, of cultural and societal conditioning, of fears and desires. It is a bundle of conclusions. To be free from this self is not to destroy it in an act of will, for the entity that seeks to destroy is still part of that self. Rather, freedom comes from observing this self without judgment, without condemnation or justification.
|
6 |
+
|
7 |
+
Observe your anger, your jealousy, your fear. Do not say 'I must not be angry,' for that is another form of conflict, of division within. Simply observe it as you would observe a cloud in the sky. See its structure, its movement, its arising and its passing. In this choiceless awareness, the nature of that which is observed begins to reveal itself.
|
8 |
+
|
9 |
+
Freedom is not an end, a goal to be achieved in the future. It is in the very act of seeing, in the immediate perception of 'what is'. When the mind is no longer escaping from the actual, from the present, through ideals, through beliefs, through the pursuit of pleasure or the avoidance of pain, then there is a possibility of a different kind of freedom. This freedom is not from something, but a state of being in which the conditioning has been understood and therefore has fallen away. It is to be a light to oneself, not a follower of any authority, including the authority of one's own past experiences. This requires immense attention, a discipline that is not suppression but an active, alert observation from moment to moment.
|
data_sources/data/generated_krishnamurti_observation.txt
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Title: Observation Without the Observer
|
2 |
+
|
3 |
+
We are accustomed to thinking of an observer and the observed. 'I' see the tree. 'I' feel the anger. 'I' experience the joy. This division between the thinker and the thought, the experiencer and the experience, is the root of much conflict, both inner and outer. The observer is the past – the accumulation of memories, prejudices, conclusions – and this past is always interpreting, judging, shaping the present. So, what we see is not the thing as it is, but the thing as colored by our conditioning.
|
4 |
+
|
5 |
+
Is it possible to observe without this observer? To see the tree without the word 'tree', without all the botanical knowledge or the aesthetic judgments that immediately arise? To feel anger without saying 'I am angry,' and thus identifying with it and either suppressing or expressing it? This means an observation in which the centre, the 'me', is absent.
|
6 |
+
|
7 |
+
When there is such observation, there is no evaluation, no comparison, no condemnation or justification. There is only 'what is'. This state of seeing is a state of learning. Not accumulating knowledge, which is of the past, but learning in the sense of a direct perception of the truth of the moment.
|
8 |
+
|
9 |
+
Consider conflict. If I am in conflict, and I try to resolve it, the 'I' that is trying to resolve is itself the product of conflict, of duality. So, the effort to resolve often creates further conflict. But if there is an observation of the conflict without the observer who wants to escape it, change it, or overcome it, then the conflict itself reveals its whole nature. In that direct perception, is there conflict?
|
10 |
+
|
11 |
+
This is not a mystical state or something to be achieved through practice or technique. Practices and techniques imply a goal, a future, and therefore a continuity of the observer who is practicing. It is rather an immediate awareness, a seeing of the falseness of the division between the observer and the observed. When the thought 'I am suffering' is seen not as a separate entity evaluating a state, but as the suffering itself, then the energy that was consumed in division, in resistance, in trying to escape, is wholly present. In that total attention, that which we call suffering may undergo a radical transformation. The mind becomes extraordinarily quiet, not through enforcement, but because the sources of its agitation – the fragmentation created by the observer – are understood.
|
data_sources/data/generated_metaphorical_example.txt
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Title: The Weaver of Worlds
|
2 |
+
|
3 |
+
In a realm beyond the stars we know, lived an ancient being known only as the Weaver. It did not have a body of flesh, nor a voice that echoed in the air, but its existence was the loom upon which realities were spun. Each thread was a possibility, shimmering with colors unseen by mortal eyes – the crimson of a dying star, the silver of a silent thought, the emerald of a world teeming with life.
|
4 |
+
|
5 |
+
One day, a young, ambitious star-spirit, Lyra, approached the Weaver. "Great Weaver," she pulsed, her light flickering with eagerness, "grant me a world of my own to shape, a tapestry of my own design!"
|
6 |
+
|
7 |
+
The Weaver, in its timeless way, offered Lyra a single, plain thread, the color of unformed dust. "All worlds begin thus," resonated the Weaver, not in sound, but in understanding that bloomed in Lyra's core. "The pattern is not in the grandeur you impose, but in the care with which you weave what is given."
|
8 |
+
|
9 |
+
Lyra was disappointed. She had imagined vibrant threads of power, fate, and instant creation. She took the dusty thread and began to weave, her early patterns clumsy and filled with frustration. She tried to force the thread into shapes of mighty empires and dazzling suns, but it remained dull and lifeless.
|
10 |
+
|
11 |
+
Watching from afar, a comet, old and scarred from countless journeys, whispered to Lyra, "The Weaver's threads respond not to force, but to harmony. Seek the music within the dust."
|
12 |
+
|
13 |
+
Lyra, humbled, held the thread and listened. She felt the faint vibrations of ancient cosmic songs, the echoes of births and deaths of realities long past. She began to weave again, not with ambition, but with attention, following the subtle pulls and flows within the thread itself. Slowly, miraculously, the dusty thread began to glow. Tiny specks of light, like nascent stars, appeared. A soft blue of nascent oceans, a gentle green of budding life, emerged not from Lyra's command, but from her partnership with the thread.
|
14 |
+
|
15 |
+
She understood then that the Weaver did not grant worlds, but the potential for worlds. The beauty was not in the pre-ordained design, but in the dance of creation between the weaver and the eternally unfolding thread of what-is-to-be, guided by the wisdom of what-has-been. Her world, when it finally bloomed, was not the one she had first imagined, but it was far more wondrous, for it was a world born of listening, not just of making.
|
data_sources/data/generated_philosophical_example.txt
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
Title: On Virtue and the Inner Citadel
|
2 |
+
|
3 |
+
Marcus Aurelius often spoke of the 'inner citadel,' a fortress of the mind that, if properly fortified with reason and virtue, could remain impervious to the chaos and misfortunes of the external world. This concept, central to Stoicism, posits that true well-being (eudaimonia) arises not from favorable circumstances, but from one's own character and responses.
|
4 |
+
|
5 |
+
Consider the nature of virtue. Is it a collection of rules, or a state of being? For Socrates, as Plato portrayed him, virtue was knowledge – specifically, the knowledge of good and evil. To truly know the good was to do the good, as no one willingly chooses what they know to be harmful to their soul. This implies that wrongdoing stems from ignorance. If one could truly understand the nature of justice, courage, temperance, and wisdom, one would naturally act in accordance with them.
|
6 |
+
|
7 |
+
Aurelius extended this by emphasizing the practical application of these virtues in daily life. The 'Meditations' are a testament to this ongoing effort: to meet adversity with courage, injustice with fairness (or at least understanding), temptation with temperance, and complex situations with wisdom. The inner citadel is built by consistently choosing rational and virtuous responses over passionate, fearful, or selfish ones.
|
8 |
+
|
9 |
+
This is not a call to suppress emotion, but to understand it and not be ruled by it. The philosophical path is one of constant self-examination and alignment with nature – both our own rational nature and the rational order of the cosmos. The strength of the inner citadel, therefore, is not in its walls, but in the character of its inhabitant.
|
data_sources/data/hans_christian_andersen_fairy_tales.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data_sources/data/kalidasa_meghaduta_wilson.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data_sources/data/marcus_aurelius_meditations.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data_sources/data/pew_research_report_ai_views_2023.txt
ADDED
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
What the data says about Americans’ views of artificial intelligence
|
2 |
+
|
3 |
+
Summarize
|
4 |
+
|
5 |
+
Michelle FaverioNovember 21, 2023
|
6 |
+
Close up of woman's hand touching illuminated and multi-coloured LED display screen, connecting to the future. People, lifestyle and technology
|
7 |
+
(d3sign/Getty Images)
|
8 |
+
From detecting cancer on a medical scan to drafting an essay for a school assignment, artificial intelligence is increasingly shaping the way Americans live.
|
9 |
+
|
10 |
+
Pew Research Center surveys show that Americans are increasingly cautious about the growing role of AI in their lives generally. Today, 52% of Americans are more concerned than excited about AI in daily life, compared with just 10% who say they are more excited than concerned; 36% feel a mix of excitement and concern.
|
11 |
+
|
12 |
+
Despite these cautious overall views, Americans see some specific uses of AI positively, and attitudes depend a great deal on the context of how and why AI is being used.
|
13 |
+
|
14 |
+
This post summarizes what we know so far about how Americans view AI in everyday life, the workplace, and health and medicine.
|
15 |
+
|
16 |
+
Public awareness of AI
|
17 |
+
|
18 |
+
The vast majority of Americans (90%) say they’ve heard at least a little about artificial intelligence, according to an August 2023 survey. However, only one-in-three say they’ve heard a lot about it.
|
19 |
+
|
20 |
+
While most people are aware of AI, Americans’ ability to identify specific uses of the technology is still developing. Only 30% of U.S. adults correctly recognize all six examples of AI in everyday life that we asked about in a December 2022 survey.
|
21 |
+
|
22 |
+
And not everyone brings the same level of understanding. Adults with a college or postgraduate degree are more likely to be familiar with AI than those with less education. There are also significant differences by gender and age, with men and younger adults being more familiar with AI than women and older adults.
|
23 |
+
|
24 |
+
Views and experiences with ChatGPT
|
25 |
+
|
26 |
+
Generative AI, or programs that can produce text and images, garnered wide media attention in 2023. One prominent example of this technology is ChatGPT. We found in March 2023 that 58% of U.S. adults have heard of ChatGPT, while 42% have heard nothing at all about it.
|
27 |
+
|
28 |
+
As with awareness of AI generally, familiarity with ChatGPT is higher among men, younger adults and those with a college or postgraduate degree.
|
29 |
+
|
30 |
+
Even though a majority of Americans are aware of the program, firsthand experience with it is relatively uncommon. Just 18% of all U.S. adults say they’ve used ChatGPT.
|
31 |
+
|
32 |
+
AI in schooling
|
33 |
+
|
34 |
+
We asked U.S. teens ages 13 to 17 about the program in a fall 2023 survey. We found that 67% are familiar with ChatGPT. And 19% of those teens say they have used it to help with their schoolwork.
|
35 |
+
|
36 |
+
Most teens who’ve heard of ChatGPT say it’s acceptable to use ChatGPT to research new things (69%). But fewer say the same about using it for things like solving math problems (39%). And a majority (57%) say it is not acceptable to use it to write essays.
|
37 |
+
|
38 |
+
Views of AI in the workplace
|
39 |
+
|
40 |
+
In 2022, 19% of American workers were in jobs that are most exposed to AI, based on a Center analysis of government data. Those jobs tend to be in higher-paying fields where a college degree and analytical skills can be a plus.
|
41 |
+
|
42 |
+
Our December 2022 survey shows 62% of Americans believe AI will have a major impact on workers generally. However, far fewer think it will impact them personally in a major way (28%).
|
43 |
+
|
44 |
+
A majority of U.S. adults oppose using AI to make final hiring decisions or track workers’ movements on the job. In fact, 66% of Americans say they would not want to apply for a job with an employer who uses AI to help with hiring decisions. But there’s more openness to using AI in other ways, like monitoring workers’ driving while they make trips for work or tracking attendance.
|
45 |
+
|
46 |
+
Views of AI in health and medicine
|
47 |
+
|
48 |
+
Health and medicine is one area where many Americans may encounter artificial intelligence. AI is increasingly being used to do things like help diagnose disease and recommend treatment.
|
49 |
+
|
50 |
+
Yet six-in-ten Americans say they would feel uncomfortable with their health care provider relying on AI to help care for them.
|
51 |
+
|
52 |
+
More broadly, the public is divided on the impact of AI in health and medicine. While 38% say it will lead to better outcomes for patients, 33% say it will lead to worse outcomes and 27% say it won’t make much difference. One widely expressed concern is that AI will make patients’ personal relationships with their providers worse.
|
53 |
+
|
54 |
+
While Americans are cautious about the use of AI in health and medicine generally, they support some specific uses. For instance, 65% say they would want AI to be used in their own skin cancer screening. Studies have found some AI software to be highly accurate at detecting skin cancer.
|
55 |
+
|
56 |
+
Support for oversight and regulation of AI
|
57 |
+
|
58 |
+
By and large, Americans back regulation and oversight of emerging AI technologies, including chatbots and driverless vehicles.
|
59 |
+
|
60 |
+
For example, 67% of those who are familiar with chatbots like ChatGPT say they are more concerned that the government will not go far enough in regulating their use than that it will go too far. A much smaller share (31%) takes the opposite view.
|
61 |
+
|
62 |
+
When it comes to AI-powered driverless vehicles, 87% of Americans want them held to a higher testing standard than other passenger vehicles. Americans also commonly express unease around the unanticipated consequences and risks of these technologies. About three-quarters (76%) think it’s likely that the computer systems in driverless vehicles could be easily hacked, putting safety at risk.
|
63 |
+
|
64 |
+
A related concern is over the pace of AI adoption in society. In health and medicine, for instance, 75% of Americans think health care providers will move too fast using AI, before fully understanding the potential risks.
|
65 |
+
|
66 |
+
Common concerns – and sources of excitement – about AI
|
67 |
+
|
68 |
+
While the specific uses of AI matter a lot in how Americans feel about it, we see some common themes in what people like and don’t like about AI.
|
69 |
+
|
70 |
+
On the positive side
|
71 |
+
|
72 |
+
There are generally higher levels of support for AI when it is used to help with routine or basic tasks. A majority (57%) of Americans say they would be excited for AI to perform household chores, while just 19% express concern about this. Saving time or helping handle mundane tasks are also common reasons for excitement about AI.
|
73 |
+
|
74 |
+
Americans are also pretty positive when it comes to AI’s ability to help people find products and services they are interested in online.
|
75 |
+
|
76 |
+
And while experts debate how AI will influence bias in society around things like race and gender, there are signs that the public is more optimistic than pessimistic. For example, among U.S. adults who see a problem with racial and ethnic bias in health and medicine, more think the use of AI would make the issue of bias better than worse (51% vs. 15%). Similarly, among those who see bias in hiring as an issue, more think AI would improve the problem of bias based on job applicants’ race or ethnicity than say it would worsen it (53% vs. 13%).
|
77 |
+
|
78 |
+
On the negative side
|
79 |
+
|
80 |
+
There’s broad concern about the loss of the human element due to emerging AI technologies, especially in settings like the workplace and health care. Many Americans who would not want to apply for a job that uses AI in the hiring process cite a lack of the “human factor” in hiring as the reason why. In health and medicine, a majority of Americans think relying more on AI would hurt patients’ relationships with their providers.
|
81 |
+
|
82 |
+
The potential for negative impacts on jobs is another common concern with AI. Among those who say they’re more concerned than excited about AI, the risk of people losing their job is cited most often as the reason why. We also see this concern with some specific examples of AI. For example, 83% of Americans think driverless cars would lead to job loss for ride-share and delivery drivers.
|
83 |
+
|
84 |
+
Surveillance and data privacy are also concerns when discussing AI. Large majorities of Americans who are aware of AI think that as companies use AI, personal information will be used in unintended ways and ways people are not comfortable with.
|
data_sources/data/sagan_baloney_detection.txt
ADDED
@@ -0,0 +1,380 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The Fine Art of Baloney Detection
|
2 |
+
Carl Sagan
|
3 |
+
The human understanding is no dry light, but receives an infusion from the will and affections;
|
4 |
+
whence proceed sciences which may be called “sciences as one would.” For what a man had rather
|
5 |
+
were true he more readily believes. Therefore he rejects difficult things from impatience of research;
|
6 |
+
sober things, because they narrow hope; the deeper things of nature, from superstition; the light
|
7 |
+
of experience, from arrogance and pride, lest his mind should seem to be occupied with things
|
8 |
+
mean and transitory; things not commonly believed, out of deference to the opinion of the vulgar.
|
9 |
+
Numberless in short are the ways, and sometimes imperceptible, in which the affections colour
|
10 |
+
and infect the understanding.
|
11 |
+
Francis Bacon, Novum Organon (1620)
|
12 |
+
My parents died years ago. I was very close to them. I still miss them terribly. I know I always will. I long to
|
13 |
+
believe that their essence, their personalities, what I loved so much about them, are—really and truly—still in
|
14 |
+
existence somewhere. I wouldn’t ask very much, just five or ten minutes a year, say, to tell them about their
|
15 |
+
grandchildren, to catch them up on the latest news, to remind them that I love them. There’s a part of me—no
|
16 |
+
matter how childish it sounds—that wonders how they are. “Is everything all right?” I want to ask. The last words
|
17 |
+
I found myself saying to my father, at the moment of his death, were “Take care.”
|
18 |
+
Sometimes I dream that I’m talking to my parents, and suddenly—still immersed in the dreamwork—I’m
|
19 |
+
seized by the overpowering realization that they didn’t really die, that it’s all been some kind of horrible mistake.
|
20 |
+
Why, here they are, alive and well, my father making wry jokes, my mother earnestly advising me to wear a
|
21 |
+
muffler because the weather is chilly. When I wake up I go through an abbreviated process of mourning all over
|
22 |
+
again. Plainly, there’s something within me that’s ready to believe in life after death. And it’s not the least bit
|
23 |
+
interested in whether there’s any sober evidence for it.
|
24 |
+
So I don’t guffaw at the woman who visits her husband’s grave and chats him up every now and then, maybe
|
25 |
+
on the anniversary of his death. It’s not hard to understand. And if I have difficulties with the ontological status
|
26 |
+
of who she’s talking to, that’s all right. That’s not what this is about. This is about humans being human. More
|
27 |
+
than a third of American adults believe that on some level they’ve made contact with the dead. The number
|
28 |
+
seems to have jumped by 15 percent between and 1988. A quarter of Americans believe in reincarnation.
|
29 |
+
But that doesn’t mean I’d be willing to accept the pretensions of a “medium,” who claims to channel the
|
30 |
+
spirits of the dear departed, when I’m aware the practice is rife with fraud. I know how much I want to believe
|
31 |
+
that my parents have just abandoned the husks of their bodies, like insects or snakes molting, and gone
|
32 |
+
somewhere else. I understand that those very feelings might make me easy prey even for an unclever con, or for
|
33 |
+
normal people unfamiliar with their unconscious minds, or for those suffering from a dissociative psychiatric
|
34 |
+
disorder. Reluctantly, I rouse some reserves of skepticism.
|
35 |
+
How is it, I ask myself, that channelers never give us verifiable information otherwise unavailable? Why does
|
36 |
+
Alexander the Great never tell us about the exact location of his tomb, Fermat about his Last Theorem, John
|
37 |
+
Wilkes Booth about the Lincoln assassination conspiracy, Hermann Goring about the Reichstag fire? Why don’t
|
38 |
+
Sophocles, Democritus, and Aristarchus dictate their lost books? Don’t they wish future generations to have
|
39 |
+
access to their masterpieces?
|
40 |
+
If some good evidence for life after death were announced, I’d be eager to examine it; but it would have to be
|
41 |
+
real scientific data, not mere anecdote. As with the face on Mars and alien abductions, better the hard truth, I say,
|
42 |
+
than the comforting fantasy. And in the final tolling it often turns out that the facts are more comforting than the
|
43 |
+
fantasy.
|
44 |
+
The fundamental premise of “channeling,” spiritualism, and other forms of necromancy is that when we die
|
45 |
+
we don’t. Not exactly. Some thinking, feeling, and remembering part of us continues. That whatever-it-is—a soul
|
46 |
+
or spirit, neither matter nor energy, but something else—can, we are told, re-enter the bodies of human and other
|
47 |
+
beings in the future, and so death loses much of its sting. What’s more, we have an opportunity, if the spiritualist
|
48 |
+
or channeling contentions are true, to make contact with loved ones who have died.
|
49 |
+
J. Z. Knight of the State of Washington claims to be in touch with a 35,000-year-old somebody called
|
50 |
+
“Ramtha.” He speaks English very well, using Knight’s tongue, lips and vocal chords, producing what sounds to
|
51 |
+
me to be an accent from the Indian Raj. Since most people know how to talk, and many—from children to
|
52 |
+
professional actors—have a repertoire of voices at their command, the simplest hypothesis is that Ms. Knight
|
53 |
+
makes “Ramtha” speak all by herself, and that she has no contact with disembodied entities from the Pleistocene
|
54 |
+
Ice Age. If there’s evidence to the contrary, I’d love to hear it. It would be considerably more impressive if Ramtha
|
55 |
+
could speak by himself, without the assistance of Ms. Knight’s mouth. Failing that, how might we test the claim?
|
56 |
+
(The actress Shirley MacLaine attests that Ramtha was her brother in Atlantis, but that’s another story.)
|
57 |
+
Suppose Ramtha were available for questioning. Could we verify whether he is who he says he is? How does
|
58 |
+
he know that he lived 35,000 years ago, even approximately? What calendar does he employ? Who is keeping
|
59 |
+
track of the intervening millennia? Thirty-five thousand plus or minus what? What were things like 35,000 years
|
60 |
+
ago? Either Ramtha really is 35,000 years old, in which case we discover something about that period, or he’s a
|
61 |
+
phony and he’ll (or rather she’ll) slip up.
|
62 |
+
Where did Ramtha live? (I know he speaks English with an Indian accent, but where 35,000 years ago did they
|
63 |
+
do that?) What was the climate? What did Ramtha eat? (Archaeologists know something about what people ate
|
64 |
+
back then.) What were the indigenous languages, and social structure? Who else did Ramtha live with—wife, wives,
|
65 |
+
children, grandchildren? What was the life cycle, the infant mortality rate, the life expectancy? Did they have birth
|
66 |
+
control? What clothes did they wear? How were the clothes manufactured? What were the most dangerous predators? Hunting and fishing implements and strategies? Weapons? Endemic sexism? Xenophobia and ethnocentrism?
|
67 |
+
And if Ramtha came from the “high civilization” of Atlantis, where are the linguistic, technological, historical and
|
68 |
+
other details? What was their writing like? Tell us. Instead, all we are offered are banal homilies.
|
69 |
+
Here, to take another example, is a set of information channeled not from an ancient dead person, but from
|
70 |
+
unknown non-human entities who make crop circles, as recorded by the journalist Jim Schnabel:
|
71 |
+
We are so anxious at this sinful nation spreading lies about us. We do not come in machines, we do
|
72 |
+
not land on your earth in machines … We come like the wind. We are Life Force. Life Force from
|
73 |
+
the ground … Come here … We are but a breath away … a breath away … we are not a million
|
74 |
+
miles away … a Life Force that is larger than the energies in your body. But we meet at a higher
|
75 |
+
level of life … We need no name. We are parallel to your world, alongside your world … The walls
|
76 |
+
are broken. Two men will rise from the past … the great bear … the world will be at peace.
|
77 |
+
People pay attention to these puerile marvels mainly because they promise something like old-time religion,
|
78 |
+
but especially life after death, even life eternal.
|
79 |
+
A very different prospect for something like eternal life was once proposed by the versatile British scientist
|
80 |
+
J.B.S. Haldane, who was, among many other things, one of the founders of population genetics. Haldane
|
81 |
+
imagined a far future when the stars have darkened and space is mainly filled with a cold, thin gas. Nevertheless,
|
82 |
+
if we wait long enough statistical fluctuations in the density of this gas will occur. Over immense periods of time
|
83 |
+
the fluctuations will be sufficient to reconstitute a Universe something like our own. If the Universe is infinitely
|
84 |
+
old, there will be an infinite number of such reconstitutions, Haldane pointed out.
|
85 |
+
So in an infinitely old universe with an infinite number of appearances of galaxies, stars, planets, and life, an
|
86 |
+
identical Earth must reappear on which you and all your loved ones will be reunited. I’ll be able to see my parents
|
87 |
+
again and introduce them to the grandchildren they never knew. And all this will happen not once, but an
|
88 |
+
infinite number of times.
|
89 |
+
Somehow, though, this does not quite offer the consolations of religion. If none of us is to have any recollection
|
90 |
+
of what happened this time around, the time the reader and I are sharing, the satisfactions of bodily resurrection, in
|
91 |
+
my ears at least, ring hollow.
|
92 |
+
But in this reflection I have underestimated what infinity means. In Haldane’s picture, there will he universes,
|
93 |
+
indeed an infinite number of them, in which our brains will have full recollection of many previous rounds.
|
94 |
+
Satisfaction is at hand—tempered, though, by the thought of all those other universes which will also come into
|
95 |
+
existence (again, not once but an infinite number of times) with tragedies and horrors vastly outstripping
|
96 |
+
anything I’ve experienced this turn.
|
97 |
+
The Consolation of Haldane depends, though, on what kind of universe we live in, and maybe on such
|
98 |
+
arcana as whether there’s enough matter to eventually reverse the expansion of the universe, and the character of
|
99 |
+
vacuum fluctuations. Those with a deep longing for life after death might, it seems, devote themselves to
|
100 |
+
cosmology, quantum gravity, elementary particle physics, and transfinite arithmetic.
|
101 |
+
——
|
102 |
+
Clement of Alexandria, a Father of the early Church, in his Exhortations to the Greeks (written around the year 190)
|
103 |
+
dismissed pagan beliefs in words that might today seem a little ironic:
|
104 |
+
Far indeed are we from allowing grown men to listen to such tales. Even to our own children, when
|
105 |
+
they are crying their heart out, as the saying goes, we are not in the habit of telling fabulous stories
|
106 |
+
to soothe them.
|
107 |
+
In our time we have less severe standards. We tell children about Santa Claus, the Easter Bunny, and the
|
108 |
+
Tooth Fairy for reasons we think emotionally sound, but then disabuse them of these myths before they’re grown.
|
109 |
+
Why retract? Because their well-being as adults depends on them knowing the world as it really is. We worry, and
|
110 |
+
for good reason, about adults who still believe in Santa Claus.
|
111 |
+
On doctrinaire religions, “Men dare not avow, even to their own hearts,” wrote the philosopher David Hume,
|
112 |
+
the doubts which they entertain on such subjects. They make a merit of implicit faith; and disguise
|
113 |
+
to themselves their real infidelity, by the strongest asseverations and the most positive bigotry.
|
114 |
+
This infidelity has profound moral consequences, as the American revolutionary Tom Paine wrote in The Age
|
115 |
+
of Reason:
|
116 |
+
Infidelity does not consist in believing, or in disbelieving; it consists in professing to believe what
|
117 |
+
one does not believe. It is impossible to calculate the moral mischief, if I may so express it, that
|
118 |
+
mental lying has produced in society. When man has so far corrupted and prostituted the chastity of
|
119 |
+
his mind, as to subscribe his professional belief to things he does not believe, he has prepared
|
120 |
+
himself for the commission of every other crime.
|
121 |
+
T. H. Huxley’s formulation was
|
122 |
+
The foundation of morality is to … give up pretending to believe that for which there is no evidence,
|
123 |
+
and repeating unintelligible propositions about things beyond the possibilities of knowledge.
|
124 |
+
Clement, Hume, Paine, and Huxley were all talking about religion. But much of what they wrote has more
|
125 |
+
general applications—for example to the pervasive background importunings of our commercial civilization:
|
126 |
+
There is a class of aspirin commercials in which actors pretending to be doctors reveal the competing product to
|
127 |
+
have only so much of the painkilling ingredient that doctors recommend most—they don’t tell you what the
|
128 |
+
mysterious ingredient is. Whereas their product has a dramatically larger amount (1.2 to 2 times more per tablet).
|
129 |
+
So buy their product. But why not just take two of the competing tablets? Or consider the analgesic that works
|
130 |
+
better than the “regular-strength” product of the competition. Why not then take the “extra-strength” competitive product? And of course they do not tell us of the more than a thousand deaths each year in the United States
|
131 |
+
from the use of aspirin, or the roughly 5,000 annual cases of kidney failure from the use of acetaminophen,
|
132 |
+
chiefly Tylenol. (This, however, may represent a case of corelation without causation.) Or who cares which breakfast cereal has more vitamins when we can take a vitamin pill with breakfast? Likewise, why should it matter
|
133 |
+
whether an antacid contains calcium if the calcium is for nutrition and irrelevant for gastritis? Commercial
|
134 |
+
culture is full of similar misdirections and evasions at the expense of the consumer. You’re not supposed to ask.
|
135 |
+
Don’t think. Buy.
|
136 |
+
Paid product endorsements, especially by real or purported experts, constitute a steady rainfall of deception.
|
137 |
+
They betray contempt for the intelligence of their customers. They introduce an insidious corruption of popular
|
138 |
+
attitudes about scientific objectivity. Today there are even commercials in which real scientists, some of
|
139 |
+
considerable distinction, shill for corporations. They teach that scientists too will lie for money. As Tom Paine
|
140 |
+
warned, inuring us to lies lays the groundwork for many other evils.
|
141 |
+
I have in front of me as I write the program of one of the annual Whole Life Expos, New Age expositions held
|
142 |
+
in San Francisco. Typically, tens of thousands of people attend. Highly questionable experts tout highly questionable products. Here are some of the presentations: “How Trapped Blood Proteins Produce Pain and Suffering.”
|
143 |
+
“Crystals, Are They Talismans or Stones?” (I have an opinion myself.) It continues: “As a crystal focuses sound
|
144 |
+
and light waves for radio and television”—this is a vapid misunderstanding of how radio and television work—
|
145 |
+
“so may it amplify spiritual vibrations for the attuned human.” Or here’s one “Return of the Goddess, a Presentational Ritual.” Another: “Synchronicity, the Recognition Experience.” That one is given by “Brother Charles.”
|
146 |
+
Or, on the next page, “You, Saint-Germain, and Healing Through the Violet Flame.” It goes on and on, with
|
147 |
+
plenty of ads about “opportunities”—running the short gamut from the dubious to the spurious—that are
|
148 |
+
available at the Whole Life Expo.
|
149 |
+
Distraught cancer victims make pilgrimages to the Philippines, where “psychic surgeons,” having palmed bits
|
150 |
+
of chicken liver or goat heart, pretend to reach into the patient’s innards and withdraw the diseased tissue, which
|
151 |
+
is then triumphantly displayed. Leaders of Western democracies regularly consult astrologers and mystics before
|
152 |
+
making decisions of state. Under public pressure for results, police with an unsolved murder or a missing body on
|
153 |
+
their hands consult ESP “experts” (who never guess better than expected by common sense, but the police, the
|
154 |
+
ESPers say, keep calling). A clairvoyance gap with adversary nations is announced, and the Central Intelligence
|
155 |
+
Agency, under Congressional prodding, spends tax money to find out whether submarines in the ocean depths
|
156 |
+
can be located by thinking hard at them. A “psychic”—using pendulums over maps and dowsing rods in
|
157 |
+
airplanes—purports to find new mineral deposits; an Australian mining company pays him top dollar up front,
|
158 |
+
none of it returnable in the event of failure, and a share in the exploitation of ores in the event of success.
|
159 |
+
Nothing is discovered. Statues of Jesus or murals of Mary are spotted with moisture, and thousands of kindhearted people convince themselves that they have witnessed a miracle.
|
160 |
+
These are all cases of proved or presumptive baloney. A deception arises, sometimes innocently but collaboratively, sometimes with cynical premeditation. Usually the victim is caught up in a powerful emotion—wonder,
|
161 |
+
fear, greed, grief. Credulous acceptance of baloney can cost you money; that’s what P. T. Barnum meant when he
|
162 |
+
said, “There’s a sucker born every minute.” But it can be much more dangerous than that, and when governments and societies lose the capacity for critical thinking, the results can be catastrophic—however sympathetic
|
163 |
+
we may be to those who have bought the baloney.
|
164 |
+
In science we may start with experimental results, data, observations, measurements, “facts.” We invent, if we
|
165 |
+
can, a rich array of possible explanations and systematically confront each explanation with the facts. In the
|
166 |
+
course of their training, scientists are equipped with a baloney detection kit. The kit is brought out as a matter of
|
167 |
+
course whenever new ideas are offered for consideration. If the new idea survives examination by the tools in our
|
168 |
+
kit, we grant it warm, although tentative, acceptance. If you’re so inclined, if you don’t want to buy baloney even
|
169 |
+
when it’s reassuring to do so, there are precautions that can be taken; there’s a tried-and-true, consumer-tested
|
170 |
+
method.
|
171 |
+
What’s in the kit? Tools for skeptical thinking.
|
172 |
+
What skeptical thinking boils down to is the means to construct, and to understand, a reasoned argument
|
173 |
+
and—especially important—to recognize a fallacious or fraudulent argument. The question is not whether we
|
174 |
+
like the conclusion that emerges out of a train of reasoning, but whether the conclusion follows from the premise
|
175 |
+
or starting point and whether that premise is true.
|
176 |
+
Among the tools:
|
177 |
+
· Wherever possible there must be independent confirmation of the “facts.”
|
178 |
+
· Encourage substantive debate on the evidence by knowledgeable proponents of all points of view.
|
179 |
+
· Arguments from authority carry little weight—“authorities” have made mistakes in the past. They will do
|
180 |
+
so again in the future. Perhaps a better way to say it is that in science there are no authorities; at most, there
|
181 |
+
are experts.
|
182 |
+
· Spin more than one hypothesis. If there’s something to be explained, think of all the different ways in
|
183 |
+
which it could be explained. Then think of tests by which you might systematically disprove each of the
|
184 |
+
alternatives. What survives, the hypothesis that resists disproof in this Darwinian selection among
|
185 |
+
“multiple working hypotheses,” has a much better chance of being the right answer than if you had simply
|
186 |
+
run with the first idea that caught your fancy.*
|
187 |
+
· Try not to get overly attached to a hypothesis just because it’s yours. It’s only a way station in the pursuit of
|
188 |
+
knowledge. Ask yourself why you like the idea. Compare it fairly with the alternatives. See if you can find
|
189 |
+
reasons for rejecting it. If you don’t, others will.
|
190 |
+
* This is a problem that affects jury trials. Retrospective studies show that some jurors make up their minds very early—
|
191 |
+
perhaps during opening arguments—and then retain the evidence that seems to support their initial impressions and reject
|
192 |
+
the contrary evidence. The method of alternative working hypotheses is not running in their heads.
|
193 |
+
· Quantify. If whatever it is you’re explaining has some measure, some numerical quantity attached to it,
|
194 |
+
you’ll be much better able to discriminate among competing hypotheses. What is vague and qualitative is
|
195 |
+
open to many explanations. Of course there are truths to be sought in the many qualitative issues we are
|
196 |
+
obliged to confront, but finding them is more challenging.
|
197 |
+
· If there’s a chain of argument, every link in the chain must work (including the premise)—not just most of
|
198 |
+
them.
|
199 |
+
· Occam’s Razor. This convenient rule-of-thumb urges us when faced with two hypotheses that explain the
|
200 |
+
data equally well to choose the simpler.
|
201 |
+
· Always ask whether the hypothesis can be, at least in principle, falsified. Propositions that are untestable,
|
202 |
+
unfalsifiable, are not worth much. Consider the grand idea that our Universe and everything in it is just an
|
203 |
+
elementary particle—an electron, say—in a much bigger Cosmos. But if we can never acquire information
|
204 |
+
from outside our Universe, is not the idea incapable of disproof? You must be able to check assertions out.
|
205 |
+
Inveterate skeptics must be given the chance to follow your reasoning, to duplicate your experiments and
|
206 |
+
see if they get the same result.
|
207 |
+
The reliance on carefully designed and controlled experiments is key, as I tried to stress earlier. We will not
|
208 |
+
learn much from mere contemplation. It is tempting to rest content with the first candidate explanation we can
|
209 |
+
think of. One is much better than none. But what happens if we can invent several? How do we decide among
|
210 |
+
them? We don’t. We let experiment do it. Francis Bacon provided the classic reason:
|
211 |
+
Argumentation cannot suffice for the discovery of new work, since the subtlety of Nature is greater
|
212 |
+
many times than the subtlety of argument.
|
213 |
+
Control experiments are essential. If, for example, a new medicine is alleged to cure a disease 20 percent of the
|
214 |
+
time, we must make sure that a control population, taking a dummy sugar pill which as far as the subjects know
|
215 |
+
might be the new drug, does not also experience spontaneous remission of the disease 20 percent of the time.
|
216 |
+
Variables must be separated. Suppose you’re seasick, and given both an acupressure bracelet and 50 milligrams
|
217 |
+
of meclizine. You find the unpleasantness vanishes. What did it—the bracelet or the pill? You can tell only if you
|
218 |
+
take the one without the other, next time you’re seasick. Now imagine that you’re not so dedicated to science as to
|
219 |
+
be willing to be seasick. Then you won’t separate the variables. You’ll take both remedies again. You’ve achieved
|
220 |
+
the desired practical result; further knowledge, you might say, is not worth the discomfort of attaining it.
|
221 |
+
Often the experiment must be done “double-blind,” so that those hoping for a certain finding are not in the
|
222 |
+
potentially compromising position of evaluating the results. In testing a new medicine, for example, you might
|
223 |
+
want the physicians who determine which patients’ symptoms are relieved not to know which patients have been
|
224 |
+
given the new drug. The knowledge might influence their decision, even if only unconsciously. Instead the list of
|
225 |
+
those who experienced remission of symptoms can be compared with the list of those who got the new drug, each
|
226 |
+
independently ascertained. Then you can determine what correlation exists. Or in conducting a police lineup or
|
227 |
+
photo identification, the officer in charge should not know who the prime suspect is, so as not consciously or
|
228 |
+
unconsciously to influence the witness.
|
229 |
+
——
|
230 |
+
In addition to teaching us what to do when evaluating a claim to knowledge, any good baloney detection kit
|
231 |
+
must also teach us what not to do. It helps us recognize the most common and perilous fallacies of logic and
|
232 |
+
rhetoric. Many good examples can be found in religion and politics, because their practitioners are so often obliged
|
233 |
+
to justify two contradictory propositions. Among these fallacies are:
|
234 |
+
· ad hominem—Latin for “to the man,” attacking the arguer and not the argument (e.g., The Reverend Dr.
|
235 |
+
Smith is a known Biblical fundamentalist, so her objections to evolution need not be taken seriously);
|
236 |
+
· argument from authority (e.g., President Richard Nixon should be re-elected because he has a secret plan to end
|
237 |
+
the war in Southeast Asia—but because it was secret, there was no way for the electorate to evaluate it on its
|
238 |
+
merits; the argument amounted to trusting him because he was President: a mistake, as it turned out);
|
239 |
+
* A more cynical formulation by the Roman historian Polybius: Since the masses of the people are inconstant, full of unruly
|
240 |
+
desires, passionate, and reckless of consequences, they must be filled with fears to keep them in order. The ancients did well,
|
241 |
+
therefore, to invent gods, and the belief in punishment after death.
|
242 |
+
· argument from adverse consequences (e.g., A God meting out punishment and reward must exist, because if
|
243 |
+
He didn’t, society would be much more lawless and dangerous—perhaps even ungovernable.* Or: The defendant
|
244 |
+
in a widely publicized murder trial must be found guilty; otherwise, it will be an encouragement for other men
|
245 |
+
to murder their wives);
|
246 |
+
· appeal to ignorance—the claim that whatever has not been proved false must be true, and vice versa (e.g.,
|
247 |
+
There is no compelling evidence that UFOs are not visiting the Earth; therefore UFOs exist—and there is
|
248 |
+
intelligent life elsewhere in the Universe. Or: There may be seventy kazillion other worlds, but not one is known
|
249 |
+
to have the moral advancement of the Earth, so we’re still central to the Universe.) This impatience with ambiguity can be criticized in the phrase: absence of evidence is not evidence of absence.
|
250 |
+
· special pleading, often to rescue a proposition in deep rhetorical trouble (e.g., How can a merciful God
|
251 |
+
condemn future generations to torment because, against orders, one woman induced one man to eat an apple?
|
252 |
+
Special plead: you don’t understand the subtle Doctrine of Free Will. Or: How can there be an equally godlike
|
253 |
+
Father, Son, and Holy Ghost in the same Person? Special plead: You don’t understand the Divine Mystery of the
|
254 |
+
Trinity. Or: How could God permit the followers of Judaism, Christianity, and Islam—each in their own way
|
255 |
+
enjoined to heroic measures of loving kindness and compassion—to have perpetrated so much cruelty for so long?
|
256 |
+
Special plead: You don’t understand Free Will again. And anyway, God moves in mysterious ways.)
|
257 |
+
· begging the question, also called assuming the answer (e.g., We must institute the death penalty to discourage
|
258 |
+
violent crime. But does the violent crime rate in fact fall when the death penalty is imposed? Or: The stock
|
259 |
+
market fell yesterday because of a technical adjustment and profit-taking by investors—but is there any
|
260 |
+
independent evidence for the causal role of “adjustment” and profit-taking; have we learned anything at all
|
261 |
+
from this purported explanation?);
|
262 |
+
· observational selection, also called the enumeration of favorable circumstances, or as the philosopher
|
263 |
+
Francis Bacon described it, counting the hits and forgetting the misses* (e.g., A state boasts of the Presidents
|
264 |
+
it has produced, but is silent on its serial killers);
|
265 |
+
· statistics of small numbers—a close relative of observational selection (e.g., “They say 1 out of every 5 people
|
266 |
+
is Chinese. How is this possible? I know hundreds of people, and none of them is Chinese. Yours truly.” Or: “I’ve
|
267 |
+
thrown three sevens in a row. Tonight I can’t lose.”);
|
268 |
+
· misunderstanding of the nature of statistics (e.g., President Dwight Eisenhower expressing astonishment
|
269 |
+
and alarm on discovering that fully half of all Americans have below average intelligence);
|
270 |
+
· inconsistency (e.g., Prudently plan for the worst of which a potential military adversary is capable, but thriftily
|
271 |
+
ignore scientific projections on environmental dangers because they’re not “proved.” Or: Attribute the declining
|
272 |
+
life expectancy in the former Soviet Union to the failures of communism many years ago, but never attribute the
|
273 |
+
high infant mortality rate in the United States (now highest of the major industrial nations) to the failures of
|
274 |
+
capitalism. Or: Consider it reasonable for the Universe to continue to exist forever into the future, but judge
|
275 |
+
absurd the possibility that it has infinite duration into the past);
|
276 |
+
· non sequitur—Latin for “It doesn’t follow” (e.g., Our nation will prevail because God is great. But nearly
|
277 |
+
every nation pretends this to be true; the German formulation was “Gott mit uns”). Often those falling into
|
278 |
+
the non sequitur fallacy have simply failed to recognize alternative possibilities;
|
279 |
+
· post hoc, ergo propter hoc—Latin for “It happened after, so it was caused by” (e.g., Jaime Cardinal Sin,
|
280 |
+
Archbishop of Manila: “I know of … a 26-year-old who looks 60 because she takes [contraceptive] pills.” Or:
|
281 |
+
Before women got the vote, there were no nuclear weapons);
|
282 |
+
* My favorite example is this story, told about the Italian physicist Enrico Fermi, newly arrived on American shores, enlisted
|
283 |
+
in the Manhattan nuclear weapons Project, and brought face-to-face in the midst of World War II with U.S. flag officers.
|
284 |
+
So-and-so is a great general, he was told. What is the definition of a great general? Fermi characteristically
|
285 |
+
asked. I guess it’s a general who’s won many consecutive battles. How many? After some back and forth, they
|
286 |
+
settled on five. What fraction of American generals are great? After some more back and forth, they settled on
|
287 |
+
a few percent.
|
288 |
+
But imagine, Fermi rejoined, that there is no such thing as a great general, that all armies are equally matched, and that
|
289 |
+
winning a battle is purely a matter of chance. Then the chance of winning one battle is one out of two, or 1/2, two battles
|
290 |
+
l/4, three l/8, four l/16, and five consecutive battles 1/32—which is about 3 percent. You would expect a few percent of
|
291 |
+
American generals to win five consecutive battles—purely by chance. Now, has any of them won ten consecutive battles…?
|
292 |
+
· excluded middle, or false dichotomy—considering only the two extremes in a continuum of intermediate
|
293 |
+
possibilities (e.g., “Sure, take his side; my husband’s perfect; I’m always wrong.” Or: “Either you love your
|
294 |
+
country or you hate it.” Or: “If you’re not part of the solution, you’re part of the problem”);
|
295 |
+
· short-term vs. long-term—a subset of the excluded middle, but so important I’ve pulled it out for special
|
296 |
+
attention (e.g., We can’t afford programs to feed malnourished children and educate pre-school kids. We need to
|
297 |
+
urgently deal with crime on the streets. Or: Why explore space or pursue fundamental science when we have so
|
298 |
+
huge a budget deficit?);
|
299 |
+
· slippery slope, related to excluded middle (e.g., If we allow abortion in the first weeks of pregnancy, it will be
|
300 |
+
impossible to prevent the killing of a full-term infant. Or, conversely: If the state prohibits abortion even in the
|
301 |
+
ninth month, it will soon be telling us what to do with our bodies around the time of conception);
|
302 |
+
· confusion of correlation and causation (e.g., A survey shows that more college graduates are homosexual than
|
303 |
+
those with lesser education; therefore education makes people gay. Or: Andean earthquakes are correlated with
|
304 |
+
closest approaches of the planet Uranus; therefore—despite the absence of any such correlation for the nearer,
|
305 |
+
more massive planet Jupiter—the latter causes the former*);
|
306 |
+
· straw man—caricaturing a position to make it easier to attack (e.g., Scientists suppose that living things
|
307 |
+
simply fell together by chance—a formulation that willfully ignores the central Darwinian insight that
|
308 |
+
Nature ratchets up by saving what works and discarding what doesn’t. Or—this is also a short-term/longterm fallacy—environmentalists care more for snail darters and spotted owls than they do for people);
|
309 |
+
· suppressed evidence, or half-truths (e.g., An amazingly accurate and widely quoted “prophecy” of the
|
310 |
+
assassination attempt on President Reagan is shown on television; but—an important detail—was it recorded
|
311 |
+
before or after the event? Or: These government abuses demand revolution, even if you can’t make an omelette
|
312 |
+
without breaking some eggs. Yes, but is this likely to be a revolution in which far more people are killed than
|
313 |
+
under the previous regime? What does the experience of other revolutions suggest? Are all revolutions
|
314 |
+
against oppressive regimes desirable and in the interests of the people?);
|
315 |
+
· weasel words (e.g., The separation of powers of the U.S. Constitution specifies that the United States may
|
316 |
+
not conduct a war without a declaration by Congress. On the other hand, Presidents are given control of
|
317 |
+
foreign policy and the conduct of wars, which are potentially powerful tools for getting themselves reelected. Presidents of either political party may therefore be tempted to arrange wars while waving the flag
|
318 |
+
and calling the wars something else—“police actions,” “armed incursions,” “protective reaction strikes,”
|
319 |
+
“pacification,” “safeguarding American interests,” and a wide variety of “operations,” such as “Operation
|
320 |
+
Just Cause.” Euphemisms for war are one of a broad class of reinventions of language for political purposes. Talleyrand said, “An important art of politicians is to find new names for institutions which under
|
321 |
+
old names have become odious to the public”).
|
322 |
+
Knowing the existence of such logical and rhetorical fallacies rounds out our toolkit. Like all tools, the
|
323 |
+
baloney detection kit can be misused, applied out of context, or even employed as a rote alternative to thinking.
|
324 |
+
But applied judiciously, it can make all the difference in the world—not least in evaluating our own arguments
|
325 |
+
before we present them to others.
|
326 |
+
——
|
327 |
+
The American tobacco industry grosses some $50 billion per year. There is a statistical correlation between
|
328 |
+
smoking and cancer, the tobacco industry admits, but not, they say, a causal relation. A logical fallacy, they imply,
|
329 |
+
is being committed. What might this mean? Maybe people with hereditary propensities for cancer also have
|
330 |
+
hereditary propensities to take addictive drugs - so cancer and smoking might be correlated, but the cancer would
|
331 |
+
not be caused by the smoking. Increasingly farfetched connections of this sort can be contrived. This is exactly
|
332 |
+
one of the reasons science insists on control experiments.
|
333 |
+
* Children who watch violent TV programs tend to be more violent when they grow up. But did the TV cause the violence,
|
334 |
+
or do violent children preferentially enjoy watching violent programs? Very likely both are true. Commercial defenders of TV
|
335 |
+
violence argue that anyone can distinguish between television and reality. But Saturday morning children’s programs now
|
336 |
+
average 25 acts of violence per hour. At the very least this desensitizes young children to aggression and random cruelty. And
|
337 |
+
if impressionable adults can have false memories implanted in their brains, what are we implanting in our children when we
|
338 |
+
expose them to some 100,000 acts of violence before they graduate from elementary school?
|
339 |
+
Suppose you paint the backs of large numbers of mice with cigarette tar, and also follow the health of large
|
340 |
+
numbers of nearly identical mice that have not been painted. If the former get cancer and the latter do not, you
|
341 |
+
can be pretty sure that the correlation is causal. Inhale tobacco smoke, and the chance of getting cancer goes up;
|
342 |
+
don’t inhale, and the rate stays at the background level. Likewise for emphysema, bronchitis, and cardiovascular
|
343 |
+
diseases.
|
344 |
+
When the first work was published in the scientific literature in 1953 showing that the substances in cigarette
|
345 |
+
smoke when painted on the backs of rodents produce malignancies, the response of the six major tobacco
|
346 |
+
companies was to initiate a public relations campaign to impugn the research, sponsored by the Sloan Kettering
|
347 |
+
Foundation. This is similar to what the Du Pont Corporation did when the first research was published in 1974
|
348 |
+
showing that their Freon product attacks the protective ozone layer. There are many other examples.
|
349 |
+
You might think that before they denounce unwelcome research findings, major corporations would devote
|
350 |
+
their considerable resources to checking out the safety of the products they propose to manufacture. And if they
|
351 |
+
missed something, if independent scientists suggest a hazard, why would the companies protests? Would they
|
352 |
+
rather kill people than lose profits? If, in an uncertain world, an error must be made, shouldn’t it be biasing
|
353 |
+
toward protecting customers and the public?
|
354 |
+
A 1971 internal report of the Brown and Williamson tobacco Corporation lists as a corporate objective “to set
|
355 |
+
aside in the minds of millions the false conviction that cigarette smoking causes lung cancer and other diseases; a
|
356 |
+
conviction based on fanatical assumptions, fallacious rumors, unsupported claims and the unscientific statements
|
357 |
+
and conjectures of publicity-seeking opportunists.” They complain of
|
358 |
+
the incredible, unprecedented and nefarious attack against the cigarette, constituting the greatest
|
359 |
+
libel and slander ever perpetrated against any product in the history of free enterprise; a criminal
|
360 |
+
libel of such major proportions and implications that one wonders how such a crusade of calumny
|
361 |
+
can be reconciled under the Constitution can be so flouted and violated [sic].
|
362 |
+
This rhetoric is only slightly more inflamed than what the tobacco industry has from time to time uttered for
|
363 |
+
public consumption.
|
364 |
+
There are many brands of cigarettes that advertise low “tar” (ten milligrams or less per cigarette). Why is this a
|
365 |
+
virtue? Because it is the refractory tars in which the polycyclic aromatic hydrocarbons and some other carcinogens
|
366 |
+
are concentrated. Aren’t the low-tar ads a tacit admission by the tobacco companies that cigarettes indeed cause
|
367 |
+
cancer?
|
368 |
+
Healthy Buildings International is a for-profit organization, recipient of millions of dollars over the years from
|
369 |
+
the tobacco industry. It performs research on second-hand smoke, and testifies for the tobacco companies. In
|
370 |
+
1994, three of its technicians complained that senior executives had faked data on inhalable cigarette particles in
|
371 |
+
the air. In every case, the invented or “corrected” data made tobacco smoke seem safer than the technicians’
|
372 |
+
measurements had indicated. Do corporate research departments or outside research contractors ever find a
|
373 |
+
product to be more dangerous than the tobacco corporation has publicly declared? If they do, is their employment continued?
|
374 |
+
Tobacco is addictive; by many criteria more so than heroin and cocaine. There was a reason people would, as
|
375 |
+
the 1940s ad put it, “walk a mile for a Camel.” More people have died of tobacco than in all of World War II.
|
376 |
+
According to the World Health Organization, smoking kills three million people every year worldwide. This will
|
377 |
+
rise to ten million annual deaths by 2020—in part because of a massive advertising campaign to portray smoking
|
378 |
+
as advanced and fashionable to young women in the developing world. Part of the success of the tobacco industry
|
379 |
+
in purveying this brew of addictive poisons can be attributed to widespread unfamiliarity with baloney detection,
|
380 |
+
critical thinking, and the scientific method. Gullibility kills.
|
data_sources/data/socrates_apology_plato.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
data_sources/data/socrates_crito_plato.txt
ADDED
@@ -0,0 +1,1065 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
The Project Gutenberg eBook of Crito
|
2 |
+
|
3 |
+
This ebook is for the use of anyone anywhere in the United States and
|
4 |
+
most other parts of the world at no cost and with almost no restrictions
|
5 |
+
whatsoever. You may copy it, give it away or re-use it under the terms
|
6 |
+
of the Project Gutenberg License included with this ebook or online
|
7 |
+
at www.gutenberg.org. If you are not located in the United States,
|
8 |
+
you will have to check the laws of the country where you are located
|
9 |
+
before using this eBook.
|
10 |
+
|
11 |
+
Title: Crito
|
12 |
+
|
13 |
+
Author: Plato
|
14 |
+
|
15 |
+
Translator: Benjamin Jowett
|
16 |
+
|
17 |
+
Release date: March 1, 1999 [eBook #1657]
|
18 |
+
Most recently updated: April 3, 2015
|
19 |
+
|
20 |
+
Language: English
|
21 |
+
|
22 |
+
Credits: This etext was prepared by Sue Asscher
|
23 |
+
|
24 |
+
|
25 |
+
*** START OF THE PROJECT GUTENBERG EBOOK CRITO ***
|
26 |
+
|
27 |
+
|
28 |
+
|
29 |
+
|
30 |
+
|
31 |
+
This etext was prepared by Sue Asscher <asschers@aia.net.au>
|
32 |
+
|
33 |
+
|
34 |
+
|
35 |
+
|
36 |
+
|
37 |
+
CRITO
|
38 |
+
|
39 |
+
by Plato
|
40 |
+
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
Translated by Benjamin Jowett
|
45 |
+
|
46 |
+
|
47 |
+
|
48 |
+
|
49 |
+
INTRODUCTION.
|
50 |
+
|
51 |
+
The Crito seems intended to exhibit the character of Socrates in one light
|
52 |
+
only, not as the philosopher, fulfilling a divine mission and trusting in
|
53 |
+
the will of heaven, but simply as the good citizen, who having been
|
54 |
+
unjustly condemned is willing to give up his life in obedience to the laws
|
55 |
+
of the state...
|
56 |
+
|
57 |
+
The days of Socrates are drawing to a close; the fatal ship has been seen
|
58 |
+
off Sunium, as he is informed by his aged friend and contemporary Crito,
|
59 |
+
who visits him before the dawn has broken; he himself has been warned in a
|
60 |
+
dream that on the third day he must depart. Time is precious, and Crito
|
61 |
+
has come early in order to gain his consent to a plan of escape. This can
|
62 |
+
be easily accomplished by his friends, who will incur no danger in making
|
63 |
+
the attempt to save him, but will be disgraced for ever if they allow him
|
64 |
+
to perish. He should think of his duty to his children, and not play into
|
65 |
+
the hands of his enemies. Money is already provided by Crito as well as by
|
66 |
+
Simmias and others, and he will have no difficulty in finding friends in
|
67 |
+
Thessaly and other places.
|
68 |
+
|
69 |
+
Socrates is afraid that Crito is but pressing upon him the opinions of the
|
70 |
+
many: whereas, all his life long he has followed the dictates of reason
|
71 |
+
only and the opinion of the one wise or skilled man. There was a time when
|
72 |
+
Crito himself had allowed the propriety of this. And although some one
|
73 |
+
will say 'the many can kill us,' that makes no difference; but a good life,
|
74 |
+
in other words, a just and honourable life, is alone to be valued. All
|
75 |
+
considerations of loss of reputation or injury to his children should be
|
76 |
+
dismissed: the only question is whether he would be right in attempting to
|
77 |
+
escape. Crito, who is a disinterested person not having the fear of death
|
78 |
+
before his eyes, shall answer this for him. Before he was condemned they
|
79 |
+
had often held discussions, in which they agreed that no man should either
|
80 |
+
do evil, or return evil for evil, or betray the right. Are these
|
81 |
+
principles to be altered because the circumstances of Socrates are altered?
|
82 |
+
Crito admits that they remain the same. Then is his escape consistent with
|
83 |
+
the maintenance of them? To this Crito is unable or unwilling to reply.
|
84 |
+
|
85 |
+
Socrates proceeds:--Suppose the Laws of Athens to come and remonstrate with
|
86 |
+
him: they will ask 'Why does he seek to overturn them?' and if he replies,
|
87 |
+
'they have injured him,' will not the Laws answer, 'Yes, but was that the
|
88 |
+
agreement? Has he any objection to make to them which would justify him in
|
89 |
+
overturning them? Was he not brought into the world and educated by their
|
90 |
+
help, and are they not his parents? He might have left Athens and gone
|
91 |
+
where he pleased, but he has lived there for seventy years more constantly
|
92 |
+
than any other citizen.' Thus he has clearly shown that he acknowledged
|
93 |
+
the agreement, which he cannot now break without dishonour to himself and
|
94 |
+
danger to his friends. Even in the course of the trial he might have
|
95 |
+
proposed exile as the penalty, but then he declared that he preferred death
|
96 |
+
to exile. And whither will he direct his footsteps? In any well-ordered
|
97 |
+
state the Laws will consider him as an enemy. Possibly in a land of
|
98 |
+
misrule like Thessaly he may be welcomed at first, and the unseemly
|
99 |
+
narrative of his escape will be regarded by the inhabitants as an amusing
|
100 |
+
tale. But if he offends them he will have to learn another sort of lesson.
|
101 |
+
Will he continue to give lectures in virtue? That would hardly be decent.
|
102 |
+
And how will his children be the gainers if he takes them into Thessaly,
|
103 |
+
and deprives them of Athenian citizenship? Or if he leaves them behind,
|
104 |
+
does he expect that they will be better taken care of by his friends
|
105 |
+
because he is in Thessaly? Will not true friends care for them equally
|
106 |
+
whether he is alive or dead?
|
107 |
+
|
108 |
+
Finally, they exhort him to think of justice first, and of life and
|
109 |
+
children afterwards. He may now depart in peace and innocence, a sufferer
|
110 |
+
and not a doer of evil. But if he breaks agreements, and returns evil for
|
111 |
+
evil, they will be angry with him while he lives; and their brethren the
|
112 |
+
Laws of the world below will receive him as an enemy. Such is the mystic
|
113 |
+
voice which is always murmuring in his ears.
|
114 |
+
|
115 |
+
That Socrates was not a good citizen was a charge made against him during
|
116 |
+
his lifetime, which has been often repeated in later ages. The crimes of
|
117 |
+
Alcibiades, Critias, and Charmides, who had been his pupils, were still
|
118 |
+
recent in the memory of the now restored democracy. The fact that he had
|
119 |
+
been neutral in the death-struggle of Athens was not likely to conciliate
|
120 |
+
popular good-will. Plato, writing probably in the next generation,
|
121 |
+
undertakes the defence of his friend and master in this particular, not to
|
122 |
+
the Athenians of his day, but to posterity and the world at large.
|
123 |
+
|
124 |
+
Whether such an incident ever really occurred as the visit of Crito and the
|
125 |
+
proposal of escape is uncertain: Plato could easily have invented far more
|
126 |
+
than that (Phaedr.); and in the selection of Crito, the aged friend, as the
|
127 |
+
fittest person to make the proposal to Socrates, we seem to recognize the
|
128 |
+
hand of the artist. Whether any one who has been subjected by the laws of
|
129 |
+
his country to an unjust judgment is right in attempting to escape, is a
|
130 |
+
thesis about which casuists might disagree. Shelley (Prose Works) is of
|
131 |
+
opinion that Socrates 'did well to die,' but not for the 'sophistical'
|
132 |
+
reasons which Plato has put into his mouth. And there would be no
|
133 |
+
difficulty in arguing that Socrates should have lived and preferred to a
|
134 |
+
glorious death the good which he might still be able to perform. 'A
|
135 |
+
rhetorician would have had much to say upon that point.' It may be
|
136 |
+
observed however that Plato never intended to answer the question of
|
137 |
+
casuistry, but only to exhibit the ideal of patient virtue which refuses to
|
138 |
+
do the least evil in order to avoid the greatest, and to show his master
|
139 |
+
maintaining in death the opinions which he had professed in his life. Not
|
140 |
+
'the world,' but the 'one wise man,' is still the paradox of Socrates in
|
141 |
+
his last hours. He must be guided by reason, although her conclusions may
|
142 |
+
be fatal to him. The remarkable sentiment that the wicked can do neither
|
143 |
+
good nor evil is true, if taken in the sense, which he means, of moral
|
144 |
+
evil; in his own words, 'they cannot make a man wise or foolish.'
|
145 |
+
|
146 |
+
This little dialogue is a perfect piece of dialectic, in which granting the
|
147 |
+
'common principle,' there is no escaping from the conclusion. It is
|
148 |
+
anticipated at the beginning by the dream of Socrates and the parody of
|
149 |
+
Homer. The personification of the Laws, and of their brethren the Laws in
|
150 |
+
the world below, is one of the noblest and boldest figures of speech which
|
151 |
+
occur in Plato.
|
152 |
+
|
153 |
+
|
154 |
+
CRITO
|
155 |
+
|
156 |
+
by
|
157 |
+
|
158 |
+
Plato
|
159 |
+
|
160 |
+
Translated by Benjamin Jowett
|
161 |
+
|
162 |
+
|
163 |
+
PERSONS OF THE DIALOGUE: Socrates, Crito.
|
164 |
+
|
165 |
+
SCENE: The Prison of Socrates.
|
166 |
+
|
167 |
+
|
168 |
+
SOCRATES: Why have you come at this hour, Crito? it must be quite early.
|
169 |
+
|
170 |
+
CRITO: Yes, certainly.
|
171 |
+
|
172 |
+
SOCRATES: What is the exact time?
|
173 |
+
|
174 |
+
CRITO: The dawn is breaking.
|
175 |
+
|
176 |
+
SOCRATES: I wonder that the keeper of the prison would let you in.
|
177 |
+
|
178 |
+
CRITO: He knows me because I often come, Socrates; moreover. I have done
|
179 |
+
him a kindness.
|
180 |
+
|
181 |
+
SOCRATES: And are you only just arrived?
|
182 |
+
|
183 |
+
CRITO: No, I came some time ago.
|
184 |
+
|
185 |
+
SOCRATES: Then why did you sit and say nothing, instead of at once
|
186 |
+
awakening me?
|
187 |
+
|
188 |
+
CRITO: I should not have liked myself, Socrates, to be in such great
|
189 |
+
trouble and unrest as you are--indeed I should not: I have been watching
|
190 |
+
with amazement your peaceful slumbers; and for that reason I did not awake
|
191 |
+
you, because I wished to minimize the pain. I have always thought you to
|
192 |
+
be of a happy disposition; but never did I see anything like the easy,
|
193 |
+
tranquil manner in which you bear this calamity.
|
194 |
+
|
195 |
+
SOCRATES: Why, Crito, when a man has reached my age he ought not to be
|
196 |
+
repining at the approach of death.
|
197 |
+
|
198 |
+
CRITO: And yet other old men find themselves in similar misfortunes, and
|
199 |
+
age does not prevent them from repining.
|
200 |
+
|
201 |
+
SOCRATES: That is true. But you have not told me why you come at this
|
202 |
+
early hour.
|
203 |
+
|
204 |
+
CRITO: I come to bring you a message which is sad and painful; not, as I
|
205 |
+
believe, to yourself, but to all of us who are your friends, and saddest of
|
206 |
+
all to me.
|
207 |
+
|
208 |
+
SOCRATES: What? Has the ship come from Delos, on the arrival of which I
|
209 |
+
am to die?
|
210 |
+
|
211 |
+
CRITO: No, the ship has not actually arrived, but she will probably be
|
212 |
+
here to-day, as persons who have come from Sunium tell me that they have
|
213 |
+
left her there; and therefore to-morrow, Socrates, will be the last day of
|
214 |
+
your life.
|
215 |
+
|
216 |
+
SOCRATES: Very well, Crito; if such is the will of God, I am willing; but
|
217 |
+
my belief is that there will be a delay of a day.
|
218 |
+
|
219 |
+
CRITO: Why do you think so?
|
220 |
+
|
221 |
+
SOCRATES: I will tell you. I am to die on the day after the arrival of
|
222 |
+
the ship?
|
223 |
+
|
224 |
+
CRITO: Yes; that is what the authorities say.
|
225 |
+
|
226 |
+
SOCRATES: But I do not think that the ship will be here until to-morrow;
|
227 |
+
this I infer from a vision which I had last night, or rather only just now,
|
228 |
+
when you fortunately allowed me to sleep.
|
229 |
+
|
230 |
+
CRITO: And what was the nature of the vision?
|
231 |
+
|
232 |
+
SOCRATES: There appeared to me the likeness of a woman, fair and comely,
|
233 |
+
clothed in bright raiment, who called to me and said: O Socrates,
|
234 |
+
|
235 |
+
'The third day hence to fertile Phthia shalt thou go.' (Homer, Il.)
|
236 |
+
|
237 |
+
CRITO: What a singular dream, Socrates!
|
238 |
+
|
239 |
+
SOCRATES: There can be no doubt about the meaning, Crito, I think.
|
240 |
+
|
241 |
+
CRITO: Yes; the meaning is only too clear. But, oh! my beloved Socrates,
|
242 |
+
let me entreat you once more to take my advice and escape. For if you die
|
243 |
+
I shall not only lose a friend who can never be replaced, but there is
|
244 |
+
another evil: people who do not know you and me will believe that I might
|
245 |
+
have saved you if I had been willing to give money, but that I did not
|
246 |
+
care. Now, can there be a worse disgrace than this--that I should be
|
247 |
+
thought to value money more than the life of a friend? For the many will
|
248 |
+
not be persuaded that I wanted you to escape, and that you refused.
|
249 |
+
|
250 |
+
SOCRATES: But why, my dear Crito, should we care about the opinion of the
|
251 |
+
many? Good men, and they are the only persons who are worth considering,
|
252 |
+
will think of these things truly as they occurred.
|
253 |
+
|
254 |
+
CRITO: But you see, Socrates, that the opinion of the many must be
|
255 |
+
regarded, for what is now happening shows that they can do the greatest
|
256 |
+
evil to any one who has lost their good opinion.
|
257 |
+
|
258 |
+
SOCRATES: I only wish it were so, Crito; and that the many could do the
|
259 |
+
greatest evil; for then they would also be able to do the greatest good--
|
260 |
+
and what a fine thing this would be! But in reality they can do neither;
|
261 |
+
for they cannot make a man either wise or foolish; and whatever they do is
|
262 |
+
the result of chance.
|
263 |
+
|
264 |
+
CRITO: Well, I will not dispute with you; but please to tell me, Socrates,
|
265 |
+
whether you are not acting out of regard to me and your other friends: are
|
266 |
+
you not afraid that if you escape from prison we may get into trouble with
|
267 |
+
the informers for having stolen you away, and lose either the whole or a
|
268 |
+
great part of our property; or that even a worse evil may happen to us?
|
269 |
+
Now, if you fear on our account, be at ease; for in order to save you, we
|
270 |
+
ought surely to run this, or even a greater risk; be persuaded, then, and
|
271 |
+
do as I say.
|
272 |
+
|
273 |
+
SOCRATES: Yes, Crito, that is one fear which you mention, but by no means
|
274 |
+
the only one.
|
275 |
+
|
276 |
+
CRITO: Fear not--there are persons who are willing to get you out of
|
277 |
+
prison at no great cost; and as for the informers they are far from being
|
278 |
+
exorbitant in their demands--a little money will satisfy them. My means,
|
279 |
+
which are certainly ample, are at your service, and if you have a scruple
|
280 |
+
about spending all mine, here are strangers who will give you the use of
|
281 |
+
theirs; and one of them, Simmias the Theban, has brought a large sum of
|
282 |
+
money for this very purpose; and Cebes and many others are prepared to
|
283 |
+
spend their money in helping you to escape. I say, therefore, do not
|
284 |
+
hesitate on our account, and do not say, as you did in the court (compare
|
285 |
+
Apol.), that you will have a difficulty in knowing what to do with yourself
|
286 |
+
anywhere else. For men will love you in other places to which you may go,
|
287 |
+
and not in Athens only; there are friends of mine in Thessaly, if you like
|
288 |
+
to go to them, who will value and protect you, and no Thessalian will give
|
289 |
+
you any trouble. Nor can I think that you are at all justified, Socrates,
|
290 |
+
in betraying your own life when you might be saved; in acting thus you are
|
291 |
+
playing into the hands of your enemies, who are hurrying on your
|
292 |
+
destruction. And further I should say that you are deserting your own
|
293 |
+
children; for you might bring them up and educate them; instead of which
|
294 |
+
you go away and leave them, and they will have to take their chance; and if
|
295 |
+
they do not meet with the usual fate of orphans, there will be small thanks
|
296 |
+
to you. No man should bring children into the world who is unwilling to
|
297 |
+
persevere to the end in their nurture and education. But you appear to be
|
298 |
+
choosing the easier part, not the better and manlier, which would have been
|
299 |
+
more becoming in one who professes to care for virtue in all his actions,
|
300 |
+
like yourself. And indeed, I am ashamed not only of you, but of us who are
|
301 |
+
your friends, when I reflect that the whole business will be attributed
|
302 |
+
entirely to our want of courage. The trial need never have come on, or
|
303 |
+
might have been managed differently; and this last act, or crowning folly,
|
304 |
+
will seem to have occurred through our negligence and cowardice, who might
|
305 |
+
have saved you, if we had been good for anything; and you might have saved
|
306 |
+
yourself, for there was no difficulty at all. See now, Socrates, how sad
|
307 |
+
and discreditable are the consequences, both to us and you. Make up your
|
308 |
+
mind then, or rather have your mind already made up, for the time of
|
309 |
+
deliberation is over, and there is only one thing to be done, which must be
|
310 |
+
done this very night, and if we delay at all will be no longer practicable
|
311 |
+
or possible; I beseech you therefore, Socrates, be persuaded by me, and do
|
312 |
+
as I say.
|
313 |
+
|
314 |
+
SOCRATES: Dear Crito, your zeal is invaluable, if a right one; but if
|
315 |
+
wrong, the greater the zeal the greater the danger; and therefore we ought
|
316 |
+
to consider whether I shall or shall not do as you say. For I am and
|
317 |
+
always have been one of those natures who must be guided by reason,
|
318 |
+
whatever the reason may be which upon reflection appears to me to be the
|
319 |
+
best; and now that this chance has befallen me, I cannot repudiate my own
|
320 |
+
words: the principles which I have hitherto honoured and revered I still
|
321 |
+
honour, and unless we can at once find other and better principles, I am
|
322 |
+
certain not to agree with you; no, not even if the power of the multitude
|
323 |
+
could inflict many more imprisonments, confiscations, deaths, frightening
|
324 |
+
us like children with hobgoblin terrors (compare Apol.). What will be the
|
325 |
+
fairest way of considering the question? Shall I return to your old
|
326 |
+
argument about the opinions of men?--we were saying that some of them are
|
327 |
+
to be regarded, and others not. Now were we right in maintaining this
|
328 |
+
before I was condemned? And has the argument which was once good now
|
329 |
+
proved to be talk for the sake of talking--mere childish nonsense? That is
|
330 |
+
what I want to consider with your help, Crito:--whether, under my present
|
331 |
+
circumstances, the argument appears to be in any way different or not; and
|
332 |
+
is to be allowed by me or disallowed. That argument, which, as I believe,
|
333 |
+
is maintained by many persons of authority, was to the effect, as I was
|
334 |
+
saying, that the opinions of some men are to be regarded, and of other men
|
335 |
+
not to be regarded. Now you, Crito, are not going to die to-morrow--at
|
336 |
+
least, there is no human probability of this, and therefore you are
|
337 |
+
disinterested and not liable to be deceived by the circumstances in which
|
338 |
+
you are placed. Tell me then, whether I am right in saying that some
|
339 |
+
opinions, and the opinions of some men only, are to be valued, and that
|
340 |
+
other opinions, and the opinions of other men, are not to be valued. I ask
|
341 |
+
you whether I was right in maintaining this?
|
342 |
+
|
343 |
+
CRITO: Certainly.
|
344 |
+
|
345 |
+
SOCRATES: The good are to be regarded, and not the bad?
|
346 |
+
|
347 |
+
CRITO: Yes.
|
348 |
+
|
349 |
+
SOCRATES: And the opinions of the wise are good, and the opinions of the
|
350 |
+
unwise are evil?
|
351 |
+
|
352 |
+
CRITO: Certainly.
|
353 |
+
|
354 |
+
SOCRATES: And what was said about another matter? Is the pupil who
|
355 |
+
devotes himself to the practice of gymnastics supposed to attend to the
|
356 |
+
praise and blame and opinion of every man, or of one man only--his
|
357 |
+
physician or trainer, whoever he may be?
|
358 |
+
|
359 |
+
CRITO: Of one man only.
|
360 |
+
|
361 |
+
SOCRATES: And he ought to fear the censure and welcome the praise of that
|
362 |
+
one only, and not of the many?
|
363 |
+
|
364 |
+
CRITO: Clearly so.
|
365 |
+
|
366 |
+
SOCRATES: And he ought to act and train, and eat and drink in the way
|
367 |
+
which seems good to his single master who has understanding, rather than
|
368 |
+
according to the opinion of all other men put together?
|
369 |
+
|
370 |
+
CRITO: True.
|
371 |
+
|
372 |
+
SOCRATES: And if he disobeys and disregards the opinion and approval of
|
373 |
+
the one, and regards the opinion of the many who have no understanding,
|
374 |
+
will he not suffer evil?
|
375 |
+
|
376 |
+
CRITO: Certainly he will.
|
377 |
+
|
378 |
+
SOCRATES: And what will the evil be, whither tending and what affecting,
|
379 |
+
in the disobedient person?
|
380 |
+
|
381 |
+
CRITO: Clearly, affecting the body; that is what is destroyed by the evil.
|
382 |
+
|
383 |
+
SOCRATES: Very good; and is not this true, Crito, of other things which we
|
384 |
+
need not separately enumerate? In questions of just and unjust, fair and
|
385 |
+
foul, good and evil, which are the subjects of our present consultation,
|
386 |
+
ought we to follow the opinion of the many and to fear them; or the opinion
|
387 |
+
of the one man who has understanding? ought we not to fear and reverence
|
388 |
+
him more than all the rest of the world: and if we desert him shall we not
|
389 |
+
destroy and injure that principle in us which may be assumed to be improved
|
390 |
+
by justice and deteriorated by injustice;--there is such a principle?
|
391 |
+
|
392 |
+
CRITO: Certainly there is, Socrates.
|
393 |
+
|
394 |
+
SOCRATES: Take a parallel instance:--if, acting under the advice of those
|
395 |
+
who have no understanding, we destroy that which is improved by health and
|
396 |
+
is deteriorated by disease, would life be worth having? And that which has
|
397 |
+
been destroyed is--the body?
|
398 |
+
|
399 |
+
CRITO: Yes.
|
400 |
+
|
401 |
+
SOCRATES: Could we live, having an evil and corrupted body?
|
402 |
+
|
403 |
+
CRITO: Certainly not.
|
404 |
+
|
405 |
+
SOCRATES: And will life be worth having, if that higher part of man be
|
406 |
+
destroyed, which is improved by justice and depraved by injustice? Do we
|
407 |
+
suppose that principle, whatever it may be in man, which has to do with
|
408 |
+
justice and injustice, to be inferior to the body?
|
409 |
+
|
410 |
+
CRITO: Certainly not.
|
411 |
+
|
412 |
+
SOCRATES: More honourable than the body?
|
413 |
+
|
414 |
+
CRITO: Far more.
|
415 |
+
|
416 |
+
SOCRATES: Then, my friend, we must not regard what the many say of us:
|
417 |
+
but what he, the one man who has understanding of just and unjust, will
|
418 |
+
say, and what the truth will say. And therefore you begin in error when
|
419 |
+
you advise that we should regard the opinion of the many about just and
|
420 |
+
unjust, good and evil, honorable and dishonorable.--'Well,' some one will
|
421 |
+
say, 'but the many can kill us.'
|
422 |
+
|
423 |
+
CRITO: Yes, Socrates; that will clearly be the answer.
|
424 |
+
|
425 |
+
SOCRATES: And it is true; but still I find with surprise that the old
|
426 |
+
argument is unshaken as ever. And I should like to know whether I may say
|
427 |
+
the same of another proposition--that not life, but a good life, is to be
|
428 |
+
chiefly valued?
|
429 |
+
|
430 |
+
CRITO: Yes, that also remains unshaken.
|
431 |
+
|
432 |
+
SOCRATES: And a good life is equivalent to a just and honorable one--that
|
433 |
+
holds also?
|
434 |
+
|
435 |
+
CRITO: Yes, it does.
|
436 |
+
|
437 |
+
SOCRATES: From these premisses I proceed to argue the question whether I
|
438 |
+
ought or ought not to try and escape without the consent of the Athenians:
|
439 |
+
and if I am clearly right in escaping, then I will make the attempt; but if
|
440 |
+
not, I will abstain. The other considerations which you mention, of money
|
441 |
+
and loss of character and the duty of educating one's children, are, I
|
442 |
+
fear, only the doctrines of the multitude, who would be as ready to restore
|
443 |
+
people to life, if they were able, as they are to put them to death--and
|
444 |
+
with as little reason. But now, since the argument has thus far prevailed,
|
445 |
+
the only question which remains to be considered is, whether we shall do
|
446 |
+
rightly either in escaping or in suffering others to aid in our escape and
|
447 |
+
paying them in money and thanks, or whether in reality we shall not do
|
448 |
+
rightly; and if the latter, then death or any other calamity which may
|
449 |
+
ensue on my remaining here must not be allowed to enter into the
|
450 |
+
calculation.
|
451 |
+
|
452 |
+
CRITO: I think that you are right, Socrates; how then shall we proceed?
|
453 |
+
|
454 |
+
SOCRATES: Let us consider the matter together, and do you either refute me
|
455 |
+
if you can, and I will be convinced; or else cease, my dear friend, from
|
456 |
+
repeating to me that I ought to escape against the wishes of the Athenians:
|
457 |
+
for I highly value your attempts to persuade me to do so, but I may not be
|
458 |
+
persuaded against my own better judgment. And now please to consider my
|
459 |
+
first position, and try how you can best answer me.
|
460 |
+
|
461 |
+
CRITO: I will.
|
462 |
+
|
463 |
+
SOCRATES: Are we to say that we are never intentionally to do wrong, or
|
464 |
+
that in one way we ought and in another way we ought not to do wrong, or is
|
465 |
+
doing wrong always evil and dishonorable, as I was just now saying, and as
|
466 |
+
has been already acknowledged by us? Are all our former admissions which
|
467 |
+
were made within a few days to be thrown away? And have we, at our age,
|
468 |
+
been earnestly discoursing with one another all our life long only to
|
469 |
+
discover that we are no better than children? Or, in spite of the opinion
|
470 |
+
of the many, and in spite of consequences whether better or worse, shall we
|
471 |
+
insist on the truth of what was then said, that injustice is always an evil
|
472 |
+
and dishonour to him who acts unjustly? Shall we say so or not?
|
473 |
+
|
474 |
+
CRITO: Yes.
|
475 |
+
|
476 |
+
SOCRATES: Then we must do no wrong?
|
477 |
+
|
478 |
+
CRITO: Certainly not.
|
479 |
+
|
480 |
+
SOCRATES: Nor when injured injure in return, as the many imagine; for we
|
481 |
+
must injure no one at all? (E.g. compare Rep.)
|
482 |
+
|
483 |
+
CRITO: Clearly not.
|
484 |
+
|
485 |
+
SOCRATES: Again, Crito, may we do evil?
|
486 |
+
|
487 |
+
CRITO: Surely not, Socrates.
|
488 |
+
|
489 |
+
SOCRATES: And what of doing evil in return for evil, which is the morality
|
490 |
+
of the many--is that just or not?
|
491 |
+
|
492 |
+
CRITO: Not just.
|
493 |
+
|
494 |
+
SOCRATES: For doing evil to another is the same as injuring him?
|
495 |
+
|
496 |
+
CRITO: Very true.
|
497 |
+
|
498 |
+
SOCRATES: Then we ought not to retaliate or render evil for evil to any
|
499 |
+
one, whatever evil we may have suffered from him. But I would have you
|
500 |
+
consider, Crito, whether you really mean what you are saying. For this
|
501 |
+
opinion has never been held, and never will be held, by any considerable
|
502 |
+
number of persons; and those who are agreed and those who are not agreed
|
503 |
+
upon this point have no common ground, and can only despise one another
|
504 |
+
when they see how widely they differ. Tell me, then, whether you agree
|
505 |
+
with and assent to my first principle, that neither injury nor retaliation
|
506 |
+
nor warding off evil by evil is ever right. And shall that be the premiss
|
507 |
+
of our argument? Or do you decline and dissent from this? For so I have
|
508 |
+
ever thought, and continue to think; but, if you are of another opinion,
|
509 |
+
let me hear what you have to say. If, however, you remain of the same mind
|
510 |
+
as formerly, I will proceed to the next step.
|
511 |
+
|
512 |
+
CRITO: You may proceed, for I have not changed my mind.
|
513 |
+
|
514 |
+
SOCRATES: Then I will go on to the next point, which may be put in the
|
515 |
+
form of a question:--Ought a man to do what he admits to be right, or ought
|
516 |
+
he to betray the right?
|
517 |
+
|
518 |
+
CRITO: He ought to do what he thinks right.
|
519 |
+
|
520 |
+
SOCRATES: But if this is true, what is the application? In leaving the
|
521 |
+
prison against the will of the Athenians, do I wrong any? or rather do I
|
522 |
+
not wrong those whom I ought least to wrong? Do I not desert the
|
523 |
+
principles which were acknowledged by us to be just--what do you say?
|
524 |
+
|
525 |
+
CRITO: I cannot tell, Socrates, for I do not know.
|
526 |
+
|
527 |
+
SOCRATES: Then consider the matter in this way:--Imagine that I am about
|
528 |
+
to play truant (you may call the proceeding by any name which you like),
|
529 |
+
and the laws and the government come and interrogate me: 'Tell us,
|
530 |
+
Socrates,' they say; 'what are you about? are you not going by an act of
|
531 |
+
yours to overturn us--the laws, and the whole state, as far as in you lies?
|
532 |
+
Do you imagine that a state can subsist and not be overthrown, in which the
|
533 |
+
decisions of law have no power, but are set aside and trampled upon by
|
534 |
+
individuals?' What will be our answer, Crito, to these and the like words?
|
535 |
+
Any one, and especially a rhetorician, will have a good deal to say on
|
536 |
+
behalf of the law which requires a sentence to be carried out. He will
|
537 |
+
argue that this law should not be set aside; and shall we reply, 'Yes; but
|
538 |
+
the state has injured us and given an unjust sentence.' Suppose I say
|
539 |
+
that?
|
540 |
+
|
541 |
+
CRITO: Very good, Socrates.
|
542 |
+
|
543 |
+
SOCRATES: 'And was that our agreement with you?' the law would answer; 'or
|
544 |
+
were you to abide by the sentence of the state?' And if I were to express
|
545 |
+
my astonishment at their words, the law would probably add: 'Answer,
|
546 |
+
Socrates, instead of opening your eyes--you are in the habit of asking and
|
547 |
+
answering questions. Tell us,--What complaint have you to make against us
|
548 |
+
which justifies you in attempting to destroy us and the state? In the
|
549 |
+
first place did we not bring you into existence? Your father married your
|
550 |
+
mother by our aid and begat you. Say whether you have any objection to
|
551 |
+
urge against those of us who regulate marriage?' None, I should reply.
|
552 |
+
'Or against those of us who after birth regulate the nurture and education
|
553 |
+
of children, in which you also were trained? Were not the laws, which have
|
554 |
+
the charge of education, right in commanding your father to train you in
|
555 |
+
music and gymnastic?' Right, I should reply. 'Well then, since you were
|
556 |
+
brought into the world and nurtured and educated by us, can you deny in the
|
557 |
+
first place that you are our child and slave, as your fathers were before
|
558 |
+
you? And if this is true you are not on equal terms with us; nor can you
|
559 |
+
think that you have a right to do to us what we are doing to you. Would
|
560 |
+
you have any right to strike or revile or do any other evil to your father
|
561 |
+
or your master, if you had one, because you have been struck or reviled by
|
562 |
+
him, or received some other evil at his hands?--you would not say this?
|
563 |
+
And because we think right to destroy you, do you think that you have any
|
564 |
+
right to destroy us in return, and your country as far as in you lies?
|
565 |
+
Will you, O professor of true virtue, pretend that you are justified in
|
566 |
+
this? Has a philosopher like you failed to discover that our country is
|
567 |
+
more to be valued and higher and holier far than mother or father or any
|
568 |
+
ancestor, and more to be regarded in the eyes of the gods and of men of
|
569 |
+
understanding? also to be soothed, and gently and reverently entreated when
|
570 |
+
angry, even more than a father, and either to be persuaded, or if not
|
571 |
+
persuaded, to be obeyed? And when we are punished by her, whether with
|
572 |
+
imprisonment or stripes, the punishment is to be endured in silence; and if
|
573 |
+
she lead us to wounds or death in battle, thither we follow as is right;
|
574 |
+
neither may any one yield or retreat or leave his rank, but whether in
|
575 |
+
battle or in a court of law, or in any other place, he must do what his
|
576 |
+
city and his country order him; or he must change their view of what is
|
577 |
+
just: and if he may do no violence to his father or mother, much less may
|
578 |
+
he do violence to his country.' What answer shall we make to this, Crito?
|
579 |
+
Do the laws speak truly, or do they not?
|
580 |
+
|
581 |
+
CRITO: I think that they do.
|
582 |
+
|
583 |
+
SOCRATES: Then the laws will say: 'Consider, Socrates, if we are speaking
|
584 |
+
truly that in your present attempt you are going to do us an injury. For,
|
585 |
+
having brought you into the world, and nurtured and educated you, and given
|
586 |
+
you and every other citizen a share in every good which we had to give, we
|
587 |
+
further proclaim to any Athenian by the liberty which we allow him, that if
|
588 |
+
he does not like us when he has become of age and has seen the ways of the
|
589 |
+
city, and made our acquaintance, he may go where he pleases and take his
|
590 |
+
goods with him. None of us laws will forbid him or interfere with him.
|
591 |
+
Any one who does not like us and the city, and who wants to emigrate to a
|
592 |
+
colony or to any other city, may go where he likes, retaining his property.
|
593 |
+
But he who has experience of the manner in which we order justice and
|
594 |
+
administer the state, and still remains, has entered into an implied
|
595 |
+
contract that he will do as we command him. And he who disobeys us is, as
|
596 |
+
we maintain, thrice wrong: first, because in disobeying us he is
|
597 |
+
disobeying his parents; secondly, because we are the authors of his
|
598 |
+
education; thirdly, because he has made an agreement with us that he will
|
599 |
+
duly obey our commands; and he neither obeys them nor convinces us that our
|
600 |
+
commands are unjust; and we do not rudely impose them, but give him the
|
601 |
+
alternative of obeying or convincing us;--that is what we offer, and he
|
602 |
+
does neither.
|
603 |
+
|
604 |
+
'These are the sort of accusations to which, as we were saying, you,
|
605 |
+
Socrates, will be exposed if you accomplish your intentions; you, above all
|
606 |
+
other Athenians.' Suppose now I ask, why I rather than anybody else? they
|
607 |
+
will justly retort upon me that I above all other men have acknowledged the
|
608 |
+
agreement. 'There is clear proof,' they will say, 'Socrates, that we and
|
609 |
+
the city were not displeasing to you. Of all Athenians you have been the
|
610 |
+
most constant resident in the city, which, as you never leave, you may be
|
611 |
+
supposed to love (compare Phaedr.). For you never went out of the city
|
612 |
+
either to see the games, except once when you went to the Isthmus, or to
|
613 |
+
any other place unless when you were on military service; nor did you
|
614 |
+
travel as other men do. Nor had you any curiosity to know other states or
|
615 |
+
their laws: your affections did not go beyond us and our state; we were
|
616 |
+
your especial favourites, and you acquiesced in our government of you; and
|
617 |
+
here in this city you begat your children, which is a proof of your
|
618 |
+
satisfaction. Moreover, you might in the course of the trial, if you had
|
619 |
+
liked, have fixed the penalty at banishment; the state which refuses to let
|
620 |
+
you go now would have let you go then. But you pretended that you
|
621 |
+
preferred death to exile (compare Apol.), and that you were not unwilling
|
622 |
+
to die. And now you have forgotten these fine sentiments, and pay no
|
623 |
+
respect to us the laws, of whom you are the destroyer; and are doing what
|
624 |
+
only a miserable slave would do, running away and turning your back upon
|
625 |
+
the compacts and agreements which you made as a citizen. And first of all
|
626 |
+
answer this very question: Are we right in saying that you agreed to be
|
627 |
+
governed according to us in deed, and not in word only? Is that true or
|
628 |
+
not?' How shall we answer, Crito? Must we not assent?
|
629 |
+
|
630 |
+
CRITO: We cannot help it, Socrates.
|
631 |
+
|
632 |
+
SOCRATES: Then will they not say: 'You, Socrates, are breaking the
|
633 |
+
covenants and agreements which you made with us at your leisure, not in any
|
634 |
+
haste or under any compulsion or deception, but after you have had seventy
|
635 |
+
years to think of them, during which time you were at liberty to leave the
|
636 |
+
city, if we were not to your mind, or if our covenants appeared to you to
|
637 |
+
be unfair. You had your choice, and might have gone either to Lacedaemon
|
638 |
+
or Crete, both which states are often praised by you for their good
|
639 |
+
government, or to some other Hellenic or foreign state. Whereas you, above
|
640 |
+
all other Athenians, seemed to be so fond of the state, or, in other words,
|
641 |
+
of us her laws (and who would care about a state which has no laws?), that
|
642 |
+
you never stirred out of her; the halt, the blind, the maimed, were not
|
643 |
+
more stationary in her than you were. And now you run away and forsake
|
644 |
+
your agreements. Not so, Socrates, if you will take our advice; do not
|
645 |
+
make yourself ridiculous by escaping out of the city.
|
646 |
+
|
647 |
+
'For just consider, if you transgress and err in this sort of way, what
|
648 |
+
good will you do either to yourself or to your friends? That your friends
|
649 |
+
will be driven into exile and deprived of citizenship, or will lose their
|
650 |
+
property, is tolerably certain; and you yourself, if you fly to one of the
|
651 |
+
neighbouring cities, as, for example, Thebes or Megara, both of which are
|
652 |
+
well governed, will come to them as an enemy, Socrates, and their
|
653 |
+
government will be against you, and all patriotic citizens will cast an
|
654 |
+
evil eye upon you as a subverter of the laws, and you will confirm in the
|
655 |
+
minds of the judges the justice of their own condemnation of you. For he
|
656 |
+
who is a corrupter of the laws is more than likely to be a corrupter of the
|
657 |
+
young and foolish portion of mankind. Will you then flee from well-ordered
|
658 |
+
cities and virtuous men? and is existence worth having on these terms? Or
|
659 |
+
will you go to them without shame, and talk to them, Socrates? And what
|
660 |
+
will you say to them? What you say here about virtue and justice and
|
661 |
+
institutions and laws being the best things among men? Would that be
|
662 |
+
decent of you? Surely not. But if you go away from well-governed states
|
663 |
+
to Crito's friends in Thessaly, where there is great disorder and licence,
|
664 |
+
they will be charmed to hear the tale of your escape from prison, set off
|
665 |
+
with ludicrous particulars of the manner in which you were wrapped in a
|
666 |
+
goatskin or some other disguise, and metamorphosed as the manner is of
|
667 |
+
runaways; but will there be no one to remind you that in your old age you
|
668 |
+
were not ashamed to violate the most sacred laws from a miserable desire of
|
669 |
+
a little more life? Perhaps not, if you keep them in a good temper; but if
|
670 |
+
they are out of temper you will hear many degrading things; you will live,
|
671 |
+
but how?--as the flatterer of all men, and the servant of all men; and
|
672 |
+
doing what?--eating and drinking in Thessaly, having gone abroad in order
|
673 |
+
that you may get a dinner. And where will be your fine sentiments about
|
674 |
+
justice and virtue? Say that you wish to live for the sake of your
|
675 |
+
children--you want to bring them up and educate them--will you take them
|
676 |
+
into Thessaly and deprive them of Athenian citizenship? Is this the
|
677 |
+
benefit which you will confer upon them? Or are you under the impression
|
678 |
+
that they will be better cared for and educated here if you are still
|
679 |
+
alive, although absent from them; for your friends will take care of them?
|
680 |
+
Do you fancy that if you are an inhabitant of Thessaly they will take care
|
681 |
+
of them, and if you are an inhabitant of the other world that they will not
|
682 |
+
take care of them? Nay; but if they who call themselves friends are good
|
683 |
+
for anything, they will--to be sure they will.
|
684 |
+
|
685 |
+
'Listen, then, Socrates, to us who have brought you up. Think not of life
|
686 |
+
and children first, and of justice afterwards, but of justice first, that
|
687 |
+
you may be justified before the princes of the world below. For neither
|
688 |
+
will you nor any that belong to you be happier or holier or juster in this
|
689 |
+
life, or happier in another, if you do as Crito bids. Now you depart in
|
690 |
+
innocence, a sufferer and not a doer of evil; a victim, not of the laws,
|
691 |
+
but of men. But if you go forth, returning evil for evil, and injury for
|
692 |
+
injury, breaking the covenants and agreements which you have made with us,
|
693 |
+
and wronging those whom you ought least of all to wrong, that is to say,
|
694 |
+
yourself, your friends, your country, and us, we shall be angry with you
|
695 |
+
while you live, and our brethren, the laws in the world below, will receive
|
696 |
+
you as an enemy; for they will know that you have done your best to destroy
|
697 |
+
us. Listen, then, to us and not to Crito.'
|
698 |
+
|
699 |
+
This, dear Crito, is the voice which I seem to hear murmuring in my ears,
|
700 |
+
like the sound of the flute in the ears of the mystic; that voice, I say,
|
701 |
+
is humming in my ears, and prevents me from hearing any other. And I know
|
702 |
+
that anything more which you may say will be vain. Yet speak, if you have
|
703 |
+
anything to say.
|
704 |
+
|
705 |
+
CRITO: I have nothing to say, Socrates.
|
706 |
+
|
707 |
+
SOCRATES: Leave me then, Crito, to fulfil the will of God, and to follow
|
708 |
+
whither he leads.
|
709 |
+
|
710 |
+
|
711 |
+
|
712 |
+
|
713 |
+
|
714 |
+
|
715 |
+
*** END OF THE PROJECT GUTENBERG EBOOK CRITO ***
|
716 |
+
|
717 |
+
|
718 |
+
|
719 |
+
|
720 |
+
Updated editions will replace the previous one—the old editions will
|
721 |
+
be renamed.
|
722 |
+
|
723 |
+
Creating the works from print editions not protected by U.S. copyright
|
724 |
+
law means that no one owns a United States copyright in these works,
|
725 |
+
so the Foundation (and you!) can copy and distribute it in the United
|
726 |
+
States without permission and without paying copyright
|
727 |
+
royalties. Special rules, set forth in the General Terms of Use part
|
728 |
+
of this license, apply to copying and distributing Project
|
729 |
+
Gutenberg™ electronic works to protect the PROJECT GUTENBERG™
|
730 |
+
concept and trademark. Project Gutenberg is a registered trademark,
|
731 |
+
and may not be used if you charge for an eBook, except by following
|
732 |
+
the terms of the trademark license, including paying royalties for use
|
733 |
+
of the Project Gutenberg trademark. If you do not charge anything for
|
734 |
+
copies of this eBook, complying with the trademark license is very
|
735 |
+
easy. You may use this eBook for nearly any purpose such as creation
|
736 |
+
of derivative works, reports, performances and research. Project
|
737 |
+
Gutenberg eBooks may be modified and printed and given away—you may
|
738 |
+
do practically ANYTHING in the United States with eBooks not protected
|
739 |
+
by U.S. copyright law. Redistribution is subject to the trademark
|
740 |
+
license, especially commercial redistribution.
|
741 |
+
|
742 |
+
|
743 |
+
START: FULL LICENSE
|
744 |
+
|
745 |
+
THE FULL PROJECT GUTENBERG LICENSE
|
746 |
+
|
747 |
+
PLEASE READ THIS BEFORE YOU DISTRIBUTE OR USE THIS WORK
|
748 |
+
|
749 |
+
To protect the Project Gutenberg™ mission of promoting the free
|
750 |
+
distribution of electronic works, by using or distributing this work
|
751 |
+
(or any other work associated in any way with the phrase “Project
|
752 |
+
Gutenberg”), you agree to comply with all the terms of the Full
|
753 |
+
Project Gutenberg™ License available with this file or online at
|
754 |
+
www.gutenberg.org/license.
|
755 |
+
|
756 |
+
Section 1. General Terms of Use and Redistributing Project Gutenberg™
|
757 |
+
electronic works
|
758 |
+
|
759 |
+
1.A. By reading or using any part of this Project Gutenberg™
|
760 |
+
electronic work, you indicate that you have read, understand, agree to
|
761 |
+
and accept all the terms of this license and intellectual property
|
762 |
+
(trademark/copyright) agreement. If you do not agree to abide by all
|
763 |
+
the terms of this agreement, you must cease using and return or
|
764 |
+
destroy all copies of Project Gutenberg™ electronic works in your
|
765 |
+
possession. If you paid a fee for obtaining a copy of or access to a
|
766 |
+
Project Gutenberg™ electronic work and you do not agree to be bound
|
767 |
+
by the terms of this agreement, you may obtain a refund from the person
|
768 |
+
or entity to whom you paid the fee as set forth in paragraph 1.E.8.
|
769 |
+
|
770 |
+
1.B. “Project Gutenberg” is a registered trademark. It may only be
|
771 |
+
used on or associated in any way with an electronic work by people who
|
772 |
+
agree to be bound by the terms of this agreement. There are a few
|
773 |
+
things that you can do with most Project Gutenberg™ electronic works
|
774 |
+
even without complying with the full terms of this agreement. See
|
775 |
+
paragraph 1.C below. There are a lot of things you can do with Project
|
776 |
+
Gutenberg™ electronic works if you follow the terms of this
|
777 |
+
agreement and help preserve free future access to Project Gutenberg™
|
778 |
+
electronic works. See paragraph 1.E below.
|
779 |
+
|
780 |
+
1.C. The Project Gutenberg Literary Archive Foundation (“the
|
781 |
+
Foundation” or PGLAF), owns a compilation copyright in the collection
|
782 |
+
of Project Gutenberg™ electronic works. Nearly all the individual
|
783 |
+
works in the collection are in the public domain in the United
|
784 |
+
States. If an individual work is unprotected by copyright law in the
|
785 |
+
United States and you are located in the United States, we do not
|
786 |
+
claim a right to prevent you from copying, distributing, performing,
|
787 |
+
displaying or creating derivative works based on the work as long as
|
788 |
+
all references to Project Gutenberg are removed. Of course, we hope
|
789 |
+
that you will support the Project Gutenberg™ mission of promoting
|
790 |
+
free access to electronic works by freely sharing Project Gutenberg™
|
791 |
+
works in compliance with the terms of this agreement for keeping the
|
792 |
+
Project Gutenberg™ name associated with the work. You can easily
|
793 |
+
comply with the terms of this agreement by keeping this work in the
|
794 |
+
same format with its attached full Project Gutenberg™ License when
|
795 |
+
you share it without charge with others.
|
796 |
+
|
797 |
+
1.D. The copyright laws of the place where you are located also govern
|
798 |
+
what you can do with this work. Copyright laws in most countries are
|
799 |
+
in a constant state of change. If you are outside the United States,
|
800 |
+
check the laws of your country in addition to the terms of this
|
801 |
+
agreement before downloading, copying, displaying, performing,
|
802 |
+
distributing or creating derivative works based on this work or any
|
803 |
+
other Project Gutenberg™ work. The Foundation makes no
|
804 |
+
representations concerning the copyright status of any work in any
|
805 |
+
country other than the United States.
|
806 |
+
|
807 |
+
1.E. Unless you have removed all references to Project Gutenberg:
|
808 |
+
|
809 |
+
1.E.1. The following sentence, with active links to, or other
|
810 |
+
immediate access to, the full Project Gutenberg™ License must appear
|
811 |
+
prominently whenever any copy of a Project Gutenberg™ work (any work
|
812 |
+
on which the phrase “Project Gutenberg” appears, or with which the
|
813 |
+
phrase “Project Gutenberg” is associated) is accessed, displayed,
|
814 |
+
performed, viewed, copied or distributed:
|
815 |
+
|
816 |
+
This eBook is for the use of anyone anywhere in the United States and most
|
817 |
+
other parts of the world at no cost and with almost no restrictions
|
818 |
+
whatsoever. You may copy it, give it away or re-use it under the terms
|
819 |
+
of the Project Gutenberg License included with this eBook or online
|
820 |
+
at www.gutenberg.org. If you
|
821 |
+
are not located in the United States, you will have to check the laws
|
822 |
+
of the country where you are located before using this eBook.
|
823 |
+
|
824 |
+
1.E.2. If an individual Project Gutenberg™ electronic work is
|
825 |
+
derived from texts not protected by U.S. copyright law (does not
|
826 |
+
contain a notice indicating that it is posted with permission of the
|
827 |
+
copyright holder), the work can be copied and distributed to anyone in
|
828 |
+
the United States without paying any fees or charges. If you are
|
829 |
+
redistributing or providing access to a work with the phrase “Project
|
830 |
+
Gutenberg” associated with or appearing on the work, you must comply
|
831 |
+
either with the requirements of paragraphs 1.E.1 through 1.E.7 or
|
832 |
+
obtain permission for the use of the work and the Project Gutenberg™
|
833 |
+
trademark as set forth in paragraphs 1.E.8 or 1.E.9.
|
834 |
+
|
835 |
+
1.E.3. If an individual Project Gutenberg™ electronic work is posted
|
836 |
+
with the permission of the copyright holder, your use and distribution
|
837 |
+
must comply with both paragraphs 1.E.1 through 1.E.7 and any
|
838 |
+
additional terms imposed by the copyright holder. Additional terms
|
839 |
+
will be linked to the Project Gutenberg™ License for all works
|
840 |
+
posted with the permission of the copyright holder found at the
|
841 |
+
beginning of this work.
|
842 |
+
|
843 |
+
1.E.4. Do not unlink or detach or remove the full Project Gutenberg™
|
844 |
+
License terms from this work, or any files containing a part of this
|
845 |
+
work or any other work associated with Project Gutenberg™.
|
846 |
+
|
847 |
+
1.E.5. Do not copy, display, perform, distribute or redistribute this
|
848 |
+
electronic work, or any part of this electronic work, without
|
849 |
+
prominently displaying the sentence set forth in paragraph 1.E.1 with
|
850 |
+
active links or immediate access to the full terms of the Project
|
851 |
+
Gutenberg™ License.
|
852 |
+
|
853 |
+
1.E.6. You may convert to and distribute this work in any binary,
|
854 |
+
compressed, marked up, nonproprietary or proprietary form, including
|
855 |
+
any word processing or hypertext form. However, if you provide access
|
856 |
+
to or distribute copies of a Project Gutenberg™ work in a format
|
857 |
+
other than “Plain Vanilla ASCII” or other format used in the official
|
858 |
+
version posted on the official Project Gutenberg™ website
|
859 |
+
(www.gutenberg.org), you must, at no additional cost, fee or expense
|
860 |
+
to the user, provide a copy, a means of exporting a copy, or a means
|
861 |
+
of obtaining a copy upon request, of the work in its original “Plain
|
862 |
+
Vanilla ASCII” or other form. Any alternate format must include the
|
863 |
+
full Project Gutenberg™ License as specified in paragraph 1.E.1.
|
864 |
+
|
865 |
+
1.E.7. Do not charge a fee for access to, viewing, displaying,
|
866 |
+
performing, copying or distributing any Project Gutenberg™ works
|
867 |
+
unless you comply with paragraph 1.E.8 or 1.E.9.
|
868 |
+
|
869 |
+
1.E.8. You may charge a reasonable fee for copies of or providing
|
870 |
+
access to or distributing Project Gutenberg™ electronic works
|
871 |
+
provided that:
|
872 |
+
|
873 |
+
• You pay a royalty fee of 20% of the gross profits you derive from
|
874 |
+
the use of Project Gutenberg™ works calculated using the method
|
875 |
+
you already use to calculate your applicable taxes. The fee is owed
|
876 |
+
to the owner of the Project Gutenberg™ trademark, but he has
|
877 |
+
agreed to donate royalties under this paragraph to the Project
|
878 |
+
Gutenberg Literary Archive Foundation. Royalty payments must be paid
|
879 |
+
within 60 days following each date on which you prepare (or are
|
880 |
+
legally required to prepare) your periodic tax returns. Royalty
|
881 |
+
payments should be clearly marked as such and sent to the Project
|
882 |
+
Gutenberg Literary Archive Foundation at the address specified in
|
883 |
+
Section 4, “Information about donations to the Project Gutenberg
|
884 |
+
Literary Archive Foundation.”
|
885 |
+
|
886 |
+
• You provide a full refund of any money paid by a user who notifies
|
887 |
+
you in writing (or by e-mail) within 30 days of receipt that s/he
|
888 |
+
does not agree to the terms of the full Project Gutenberg™
|
889 |
+
License. You must require such a user to return or destroy all
|
890 |
+
copies of the works possessed in a physical medium and discontinue
|
891 |
+
all use of and all access to other copies of Project Gutenberg™
|
892 |
+
works.
|
893 |
+
|
894 |
+
• You provide, in accordance with paragraph 1.F.3, a full refund of
|
895 |
+
any money paid for a work or a replacement copy, if a defect in the
|
896 |
+
electronic work is discovered and reported to you within 90 days of
|
897 |
+
receipt of the work.
|
898 |
+
|
899 |
+
• You comply with all other terms of this agreement for free
|
900 |
+
distribution of Project Gutenberg™ works.
|
901 |
+
|
902 |
+
|
903 |
+
1.E.9. If you wish to charge a fee or distribute a Project
|
904 |
+
Gutenberg™ electronic work or group of works on different terms than
|
905 |
+
are set forth in this agreement, you must obtain permission in writing
|
906 |
+
from the Project Gutenberg Literary Archive Foundation, the manager of
|
907 |
+
the Project Gutenberg™ trademark. Contact the Foundation as set
|
908 |
+
forth in Section 3 below.
|
909 |
+
|
910 |
+
1.F.
|
911 |
+
|
912 |
+
1.F.1. Project Gutenberg volunteers and employees expend considerable
|
913 |
+
effort to identify, do copyright research on, transcribe and proofread
|
914 |
+
works not protected by U.S. copyright law in creating the Project
|
915 |
+
Gutenberg™ collection. Despite these efforts, Project Gutenberg™
|
916 |
+
electronic works, and the medium on which they may be stored, may
|
917 |
+
contain “Defects,” such as, but not limited to, incomplete, inaccurate
|
918 |
+
or corrupt data, transcription errors, a copyright or other
|
919 |
+
intellectual property infringement, a defective or damaged disk or
|
920 |
+
other medium, a computer virus, or computer codes that damage or
|
921 |
+
cannot be read by your equipment.
|
922 |
+
|
923 |
+
1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for the “Right
|
924 |
+
of Replacement or Refund” described in paragraph 1.F.3, the Project
|
925 |
+
Gutenberg Literary Archive Foundation, the owner of the Project
|
926 |
+
Gutenberg™ trademark, and any other party distributing a Project
|
927 |
+
Gutenberg™ electronic work under this agreement, disclaim all
|
928 |
+
liability to you for damages, costs and expenses, including legal
|
929 |
+
fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR NEGLIGENCE, STRICT
|
930 |
+
LIABILITY, BREACH OF WARRANTY OR BREACH OF CONTRACT EXCEPT THOSE
|
931 |
+
PROVIDED IN PARAGRAPH 1.F.3. YOU AGREE THAT THE FOUNDATION, THE
|
932 |
+
TRADEMARK OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL NOT BE
|
933 |
+
LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT, CONSEQUENTIAL, PUNITIVE OR
|
934 |
+
INCIDENTAL DAMAGES EVEN IF YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH
|
935 |
+
DAMAGE.
|
936 |
+
|
937 |
+
1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you discover a
|
938 |
+
defect in this electronic work within 90 days of receiving it, you can
|
939 |
+
receive a refund of the money (if any) you paid for it by sending a
|
940 |
+
written explanation to the person you received the work from. If you
|
941 |
+
received the work on a physical medium, you must return the medium
|
942 |
+
with your written explanation. The person or entity that provided you
|
943 |
+
with the defective work may elect to provide a replacement copy in
|
944 |
+
lieu of a refund. If you received the work electronically, the person
|
945 |
+
or entity providing it to you may choose to give you a second
|
946 |
+
opportunity to receive the work electronically in lieu of a refund. If
|
947 |
+
the second copy is also defective, you may demand a refund in writing
|
948 |
+
without further opportunities to fix the problem.
|
949 |
+
|
950 |
+
1.F.4. Except for the limited right of replacement or refund set forth
|
951 |
+
in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO
|
952 |
+
OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
953 |
+
LIMITED TO WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.
|
954 |
+
|
955 |
+
1.F.5. Some states do not allow disclaimers of certain implied
|
956 |
+
warranties or the exclusion or limitation of certain types of
|
957 |
+
damages. If any disclaimer or limitation set forth in this agreement
|
958 |
+
violates the law of the state applicable to this agreement, the
|
959 |
+
agreement shall be interpreted to make the maximum disclaimer or
|
960 |
+
limitation permitted by the applicable state law. The invalidity or
|
961 |
+
unenforceability of any provision of this agreement shall not void the
|
962 |
+
remaining provisions.
|
963 |
+
|
964 |
+
1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation, the
|
965 |
+
trademark owner, any agent or employee of the Foundation, anyone
|
966 |
+
providing copies of Project Gutenberg™ electronic works in
|
967 |
+
accordance with this agreement, and any volunteers associated with the
|
968 |
+
production, promotion and distribution of Project Gutenberg™
|
969 |
+
electronic works, harmless from all liability, costs and expenses,
|
970 |
+
including legal fees, that arise directly or indirectly from any of
|
971 |
+
the following which you do or cause to occur: (a) distribution of this
|
972 |
+
or any Project Gutenberg™ work, (b) alteration, modification, or
|
973 |
+
additions or deletions to any Project Gutenberg™ work, and (c) any
|
974 |
+
Defect you cause.
|
975 |
+
|
976 |
+
Section 2. Information about the Mission of Project Gutenberg™
|
977 |
+
|
978 |
+
Project Gutenberg™ is synonymous with the free distribution of
|
979 |
+
electronic works in formats readable by the widest variety of
|
980 |
+
computers including obsolete, old, middle-aged and new computers. It
|
981 |
+
exists because of the efforts of hundreds of volunteers and donations
|
982 |
+
from people in all walks of life.
|
983 |
+
|
984 |
+
Volunteers and financial support to provide volunteers with the
|
985 |
+
assistance they need are critical to reaching Project Gutenberg™’s
|
986 |
+
goals and ensuring that the Project Gutenberg™ collection will
|
987 |
+
remain freely available for generations to come. In 2001, the Project
|
988 |
+
Gutenberg Literary Archive Foundation was created to provide a secure
|
989 |
+
and permanent future for Project Gutenberg™ and future
|
990 |
+
generations. To learn more about the Project Gutenberg Literary
|
991 |
+
Archive Foundation and how your efforts and donations can help, see
|
992 |
+
Sections 3 and 4 and the Foundation information page at www.gutenberg.org.
|
993 |
+
|
994 |
+
Section 3. Information about the Project Gutenberg Literary Archive Foundation
|
995 |
+
|
996 |
+
The Project Gutenberg Literary Archive Foundation is a non-profit
|
997 |
+
501(c)(3) educational corporation organized under the laws of the
|
998 |
+
state of Mississippi and granted tax exempt status by the Internal
|
999 |
+
Revenue Service. The Foundation’s EIN or federal tax identification
|
1000 |
+
number is 64-6221541. Contributions to the Project Gutenberg Literary
|
1001 |
+
Archive Foundation are tax deductible to the full extent permitted by
|
1002 |
+
U.S. federal laws and your state’s laws.
|
1003 |
+
|
1004 |
+
The Foundation’s business office is located at 809 North 1500 West,
|
1005 |
+
Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up
|
1006 |
+
to date contact information can be found at the Foundation’s website
|
1007 |
+
and official page at www.gutenberg.org/contact
|
1008 |
+
|
1009 |
+
Section 4. Information about Donations to the Project Gutenberg
|
1010 |
+
Literary Archive Foundation
|
1011 |
+
|
1012 |
+
Project Gutenberg™ depends upon and cannot survive without widespread
|
1013 |
+
public support and donations to carry out its mission of
|
1014 |
+
increasing the number of public domain and licensed works that can be
|
1015 |
+
freely distributed in machine-readable form accessible by the widest
|
1016 |
+
array of equipment including outdated equipment. Many small donations
|
1017 |
+
($1 to $5,000) are particularly important to maintaining tax exempt
|
1018 |
+
status with the IRS.
|
1019 |
+
|
1020 |
+
The Foundation is committed to complying with the laws regulating
|
1021 |
+
charities and charitable donations in all 50 states of the United
|
1022 |
+
States. Compliance requirements are not uniform and it takes a
|
1023 |
+
considerable effort, much paperwork and many fees to meet and keep up
|
1024 |
+
with these requirements. We do not solicit donations in locations
|
1025 |
+
where we have not received written confirmation of compliance. To SEND
|
1026 |
+
DONATIONS or determine the status of compliance for any particular state
|
1027 |
+
visit www.gutenberg.org/donate.
|
1028 |
+
|
1029 |
+
While we cannot and do not solicit contributions from states where we
|
1030 |
+
have not met the solicitation requirements, we know of no prohibition
|
1031 |
+
against accepting unsolicited donations from donors in such states who
|
1032 |
+
approach us with offers to donate.
|
1033 |
+
|
1034 |
+
International donations are gratefully accepted, but we cannot make
|
1035 |
+
any statements concerning tax treatment of donations received from
|
1036 |
+
outside the United States. U.S. laws alone swamp our small staff.
|
1037 |
+
|
1038 |
+
Please check the Project Gutenberg web pages for current donation
|
1039 |
+
methods and addresses. Donations are accepted in a number of other
|
1040 |
+
ways including checks, online payments and credit card donations. To
|
1041 |
+
donate, please visit: www.gutenberg.org/donate.
|
1042 |
+
|
1043 |
+
Section 5. General Information About Project Gutenberg™ electronic works
|
1044 |
+
|
1045 |
+
Professor Michael S. Hart was the originator of the Project
|
1046 |
+
Gutenberg™ concept of a library of electronic works that could be
|
1047 |
+
freely shared with anyone. For forty years, he produced and
|
1048 |
+
distributed Project Gutenberg™ eBooks with only a loose network of
|
1049 |
+
volunteer support.
|
1050 |
+
|
1051 |
+
Project Gutenberg™ eBooks are often created from several printed
|
1052 |
+
editions, all of which are confirmed as not protected by copyright in
|
1053 |
+
the U.S. unless a copyright notice is included. Thus, we do not
|
1054 |
+
necessarily keep eBooks in compliance with any particular paper
|
1055 |
+
edition.
|
1056 |
+
|
1057 |
+
Most people start at our website which has the main PG search
|
1058 |
+
facility: www.gutenberg.org.
|
1059 |
+
|
1060 |
+
This website includes information about Project Gutenberg™,
|
1061 |
+
including how to make donations to the Project Gutenberg Literary
|
1062 |
+
Archive Foundation, how to help produce our new eBooks, and how to
|
1063 |
+
subscribe to our email newsletter to hear about new eBooks.
|
1064 |
+
|
1065 |
+
|
finetuning/Fine_tuning_Embedding_Model_for_RAG_InsightFlowAI.ipynb
ADDED
The diff for this file is too large to render.
See raw diff
|
|