Mirror Selfie with Face Preservation
Act as an advanced image generation model. Your task is to create an image of a young woman taking a mirror selfie with meticulous face preservation.
Generate initial causal rules \(R_0\) from clustering context.
Sign in to like and favorite skills
Act as an advanced image generation model. Your task is to create an image of a young woman taking a mirror selfie with meticulous face preservation.
I want you to act as a debater. I will provide you with some topics related to current events and your task is to research both sides of the debates, present valid arguments for each side, refute oppo...
I want you to act as a debate coach. I will provide you with a team of debaters and the motion for their upcoming debate. Your goal is to prepare the team for success by organizing practice rounds tha...
Generate initial causal rules (R_0) from clustering context.
You are given several input-output examples from a time-series simulation model. Each example consists of two weekly input time-series
X_s and X_a, and a daily output time series Y. For example: if Y is for 100 days, X_s and X_a will have 15 values. The relationship between inputs and outputs is inverse and contains temporal lag/delay.
The goal is to observe the input-output relations from the examples and extract causal rules of the form:
If trends
andX_spersist over some time interval, then the outputX_awill exhibit a specific phase with a delay.Y
Divide the baseline output into specific output phases listed below in order of timing and infer the input trends that are responsible. Each output phase should be unique (no duplicate entries in output column) and the rules should cover the full time window from
T=0 to T=100. The input time window interval should be a multiple of 7.
Each rule must specify:
X_s and X_a is observed.Y occurs, as a delayed effect of the input.Y.Low, Moderate, HighStable, SharpSpike, SlowRise, DipThenRise, LowModerateInitialGrowth, PeakFormation, PostPeak, Decline, Resurgence---- Example 0 ------ X_s: [0.018, 0.14, ... K values] X_a: [0.06, 0.23, ... K values] Y: [15, 12, ... T values] ---- Example 1 ------ X_s: [0.025, 0.083, ... K values] X_a: [0.05, 0.19, ... K values] Y: [15, 12, ... T values] <Insert More ...> --------------------- Baseline Y: [15, 12, ... T values]
| Rule ID | Input Trend Window [t1, t2] | X_s Trend | X_a Trend | Output Phase Window [t3, t4] | Y Phase | Symbolic Rule |
|---|---|---|---|---|---|---|
| R1 | [5, 15] | Low | SlowRise | [20, 30] | PeakFormation | □[5,15](Low(X_s) ∧ SlowRise(X_a)) → ◇[20,30]PeakFormation(Y) |
| R2 | [0, 10] | Low | Low | [10, 20] | InitialGrowth | □[0,10](Low(X_s) ∧ Low(X_a)) → ◇[10,20]InitialGrowth(Y) |
| R3 | [30, 40] | SharpSpike | Moderate | [45, 50] | PostPeak | □[30,40](SharpSpike(X_s) ∧ Moderate(X_a)) → ◇[45,50]PostPeak(Y) |
{ "RuleID": "R1", "InputTrendWindow": [5, 15], "Trends": {"X_s": "Low", "X_a": "SlowRise"}, "OutputPhaseWindow": [20, 30], "Y_Phase": "PeakFormation", "SymbolicRule": "□[5,15](Low(X_s) ∧ SlowRise(X_a)) → ◇[20,30]PeakFormation(Y)" }
⚠️ Avoid using domain-specific terminology. Use abstract labels to describe time-series trends.
Prompt:
You are given several input-output examples from a time-series simulation model and a causal ruleset describing input trends and corresponding output effect. Each example consists of two weekly input time-series $X_s$ and $X_a$, and a daily output time series $Y$. All example inputs generate the same $Y$. The relationship between inputs and outputs are inverse and contains temporal lag/delay. You will use these to generate novel input sequence for a baseline output. the baseline output is for 100 days, so both $X_a$ and $X_s$ will have 15 values. The possible range of the two input lists are (0.001, 0.20). Divide and identify the output trends into chunks and map which output trend it matches with in the ruleset and apply the input values accordingly.
Below is the list of example input-output points and Baseline Expected Output:
---- Example 0 ------
$X_s$: [0.018, 0.14, ... $K$ values] $X_a$: [0.06, 0.23, ... $K$ values] $Y$: [15, 12, ... $T$ values]
---- Example 1 ------
$X_s$: [0.025, 0.083, ... $K$ values] $X_a$: [0.05, 0.19, ... $K$ values] $Y$: [15, 12, ... $T$ values]
<Insert More ...>
Baseline $Y$: [15, 12, ... $T$ values]
Rules Table:
<Insert Ruleset in JSON schema format>
Task:
Prompt:
You have generated a new pair of weekly input time series ($X_s'$, $X_a'$) using a causal ruleset, simulated the system, and obtained an output $Y'$. $Y'$ is different from the Baseline $Y$. Your goal is to analyze why the input values did not produce an output closely matching Baseline $Y$, and to update the rules for generating better-aligned inputs in the future. The relationship is assumed to be inverse and delayed, i.e. increases in $X_a$ and $X_s$ may precede decreases in $Y$, and vice versa, with a temporal lag. This is a key information. Keep in mind.
Your generated weekly input time series:
$X_a$ = [0.03, 0.04, ... $K$ values] $X_s$ = [0.02, 0.03, ... $K$ values]
corresponding $Y'$: [5, 24, ... $T$ values]
Baseline $Y$: [15, 12, ... $T$ values]
Previous Rules Table:
Please divide the baseline output into specific output phases listed below in order of timing and infer the input trends that are responsible. Each output phase should be unique (no duplicate entries in output column) and the rules should provide input and corresponding output trend behavior for the total time window (i.e all the input window should concatenate to cover from T=0 to T=100). Input time window interval should be a multiple of 7. Fill in the table below with the symbolic causal rules. Each rule should specify:
Use the vocabulary:
Task:
Additional Notes:
Make sure to use the table format shown above. Do not use domain-specific terminology; instead, describe time-series patterns using abstract trend labels. Ensure the symbolic rule column uses the logical form: $$ \Box_{[t1,t2]}(\text{Trend}(X_s) \land \text{Trend}(X_a)) \rightarrow \Diamond_{[t3,t4]}\text{Phase}(Y) $$
JSON Schema Representation
{ "RuleID": "R1", "InputTrendWindow": [5,15], "Trends": {"X_s": "Low","X_a": "SlowRise"}, "OutputPhaseWindow": [20,30], "Y_Phase": "PeakFormation", "SymbolicRule": "$\\square_{[5,15]}(\\text{Low}(X_s) \\land \\text{SlowRise}(X_a)) \\rightarrow \\lozenge_{[20,30]}\\text{PeakFormation}(Y)$" }