<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: AETHERCORE / Sora Attilas</title>
    <description>The latest articles on DEV Community by AETHERCORE / Sora Attilas (@takatsusora).</description>
    <link>https://dev.to/takatsusora</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3465466%2F9ee27d84-5d14-4e25-b587-c2f0f4ffc16f.png</url>
      <title>DEV Community: AETHERCORE / Sora Attilas</title>
      <link>https://dev.to/takatsusora</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/takatsusora"/>
    <language>en</language>
    <item>
      <title>From 9,999 Sign Vectors to One maxT Threshold: Auditing GenesisCore v7</title>
      <dc:creator>AETHERCORE / Sora Attilas</dc:creator>
      <pubDate>Sat, 29 Aug 2026 11:19:37 +0000</pubDate>
      <link>https://dev.to/takatsusora/from-9999-sign-vectors-to-one-maxt-threshold-auditing-genesiscore-v7-f5f</link>
      <guid>https://dev.to/takatsusora/from-9999-sign-vectors-to-one-maxt-threshold-auditing-genesiscore-v7-f5f</guid>
      <description>&lt;p&gt;The line that matters most in our public reproduction script is not a p-value. It is the matrix multiplication that forces every estimable surface to face the same 9,999 person-level sign vectors.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Publisher: AETHERCORE.&lt;/strong&gt; We build GenesisCore, a Western astrology and Jyotish analysis system, and publish the associated empirical research. This article inspects one narrow question in the current 420-person development result: how did the implementation control multiplicity across the declared evaluation package?&lt;/p&gt;

&lt;h2&gt;
  
  
  Table of contents
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Project and study recap&lt;/li&gt;
&lt;li&gt;What enters the script&lt;/li&gt;
&lt;li&gt;Why the family has 22 surfaces&lt;/li&gt;
&lt;li&gt;The four lines that generate maxT&lt;/li&gt;
&lt;li&gt;Adjusted p-values and simultaneous lower bounds&lt;/li&gt;
&lt;li&gt;What M3 handles separately&lt;/li&gt;
&lt;li&gt;Decoys, ablations, and failed history&lt;/li&gt;
&lt;li&gt;Reproduce and review the code&lt;/li&gt;
&lt;li&gt;Previous and next in this series&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Project and study recap
&lt;/h2&gt;

&lt;p&gt;GenesisCore converts linked astrological rules into testable data structures. The accompanying study asks whether frozen rule chains are associated with five documented social-expression functions: advocacy, authored symbolic production, collective realization, technology or product implementation, and competitive performance.&lt;/p&gt;

&lt;p&gt;Version 7 uses 420 unique people in a development dataset. All five risk differences remained positive after adding birth era, evidence-measurement regime, and collection source. Earlier v3–v5 person-out tests remain non-positive. We therefore report v7 as a development-set result with measured-confound robustness, with an independently frozen person-out replication still open.&lt;/p&gt;

&lt;p&gt;The multiplicity problem is concrete. The package contains several functions and more than one exposure surface per function. Reading five small p-values after searching freely across that structure would tell us very little. The code must preserve the declared family, preserve person-level dependence, and calculate the threshold from the maximum statistic in each draw.&lt;/p&gt;

&lt;h2&gt;
  
  
  What enters the script
&lt;/h2&gt;

&lt;p&gt;The public matrix contains 420 anonymous rows. &lt;code&gt;analysis_order&lt;/code&gt; fixes their order. Each row carries an opaque &lt;code&gt;release_id&lt;/code&gt;, measured-factor groups, observed functions, and binary surface values.&lt;/p&gt;

&lt;p&gt;The structure is approximately:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"release_id"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"opaque-id"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"analysis_order"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"birth_era"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"source_evidence_regime"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"collection_source_group"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"observed_functions"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"..."&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"surfaces"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"function-name"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"pp_both_system"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"any_tier_both_system"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The reproduction script sorts on &lt;code&gt;analysis_order&lt;/code&gt;, asserts the exact 1–420 sequence, builds outcome arrays from &lt;code&gt;observed_functions&lt;/code&gt;, and builds exposure arrays from &lt;code&gt;surfaces&lt;/code&gt;. The order check matters because a person-level sign vector only has meaning when it is applied to the same fixed row order on every run.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why the family has 22 surfaces
&lt;/h2&gt;

&lt;p&gt;The five new outcomes are the primary reporting targets, while the multiplicity family spans 11 functions. Two frozen exposure surfaces are evaluated per function, giving 22 surfaces.&lt;/p&gt;

&lt;p&gt;Eighteen surfaces are estimable. Four are structural zeros: their exposure column is constant, so a statistic cannot be estimated. The script records those four cases and asserts that exactly 18 influence vectors remain.&lt;/p&gt;

&lt;p&gt;Dropping the four zeros silently and renaming the remaining 18 as the original family would make the family depend on what happened to be estimable. Keeping the 22-surface declaration visible makes that choice auditable.&lt;/p&gt;

&lt;p&gt;For each estimable surface, the script calculates a null-score influence vector after residualizing against the M3 design. Stacking those vectors produces a 420-by-18 matrix.&lt;/p&gt;

&lt;h2&gt;
  
  
  The four lines that generate maxT
&lt;/h2&gt;

&lt;p&gt;The implementation is short enough to inspect directly:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;rng&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;random&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;default_rng&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;SEED&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;signs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;rng&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;integers&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;2&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;size&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;MAXT_DRAWS&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;420&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt; &lt;span class="n"&gt;dtype&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;int8&lt;/span&gt;&lt;span class="p"&gt;).&lt;/span&gt;&lt;span class="nf"&gt;astype&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;float&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="mf"&gt;2.0&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="mf"&gt;1.0&lt;/span&gt;
&lt;span class="n"&gt;max_t&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;max&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;signs&lt;/span&gt; &lt;span class="o"&gt;@&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;column_stack&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;influences&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt; &lt;span class="n"&gt;axis&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;critical&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;float&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;quantile&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;max_t&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;0.95&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;signs&lt;/code&gt; has shape &lt;code&gt;(9999, 420)&lt;/code&gt;. One row is one draw; one column is one person. Multiplication by the 420-by-18 influence matrix gives an array of shape &lt;code&gt;(9999, 18)&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;The key design choice is reuse. During a draw, a person's &lt;code&gt;-1&lt;/code&gt; or &lt;code&gt;+1&lt;/code&gt; sign is reused across all 18 estimable surfaces. If the same person contributes to several functions, that dependence is retained inside the draw. Each draw then contributes one value: the maximum statistic across the 18 columns.&lt;/p&gt;

&lt;p&gt;The 95th percentile of those 9,999 maxima was approximately &lt;code&gt;2.59217&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Adjusted p-values and simultaneous lower bounds
&lt;/h2&gt;

&lt;p&gt;For a primary surface, the script compares its observed t-statistic with the full &lt;code&gt;max_t&lt;/code&gt; distribution:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;adjusted_p&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;max_t&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;=&lt;/span&gt; &lt;span class="n"&gt;observed_t&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;MAXT_DRAWS&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;lower&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;risk_difference&lt;/span&gt; &lt;span class="o"&gt;-&lt;/span&gt; &lt;span class="n"&gt;critical&lt;/span&gt; &lt;span class="o"&gt;*&lt;/span&gt; &lt;span class="n"&gt;hc3_standard_error&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The five reported outcomes were:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Function&lt;/th&gt;
&lt;th&gt;M3 difference&lt;/th&gt;
&lt;th&gt;maxT adjusted p&lt;/th&gt;
&lt;th&gt;Simultaneous one-sided 95% lower bound&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Advocacy / public cause&lt;/td&gt;
&lt;td&gt;+33.60 pp&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+18.48 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Authored symbolic production&lt;/td&gt;
&lt;td&gt;+39.08 pp&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+27.79 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Collective realization&lt;/td&gt;
&lt;td&gt;+27.95 pp&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+16.01 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Technology / product&lt;/td&gt;
&lt;td&gt;+32.49 pp&lt;/td&gt;
&lt;td&gt;0.0008&lt;/td&gt;
&lt;td&gt;+9.64 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Competitive performance&lt;/td&gt;
&lt;td&gt;+32.14 pp&lt;/td&gt;
&lt;td&gt;0.0047&lt;/td&gt;
&lt;td&gt;+6.93 pp&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F03ho6hpvzfaeskye4vo1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F03ho6hpvzfaeskye4vo1.png" alt="M0 and M3 differences with fixed22 maxT lower bounds" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;All five simultaneous lower bounds remained above zero. That is the selection-aware result we want reviewers to inspect. A single attractive raw p-value is not carrying the claim.&lt;/p&gt;

&lt;h2&gt;
  
  
  What M3 handles separately
&lt;/h2&gt;

&lt;p&gt;The maxT layer controls multiplicity across the fixed family. It does not make historical records comparable by itself. The model sequence handles measured differences in the data:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;M0: no added blocks;&lt;/li&gt;
&lt;li&gt;M1: birth era, five levels;&lt;/li&gt;
&lt;li&gt;M2: evidence-measurement regime, three levels;&lt;/li&gt;
&lt;li&gt;M3: collection source, six levels.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The main table reports M3 risk differences. Additional checks include within-era and within-source permutations, raw strata summaries, leave-one-source-out fits, and separate opportunity-data adjustments for 311 and 109 people.&lt;/p&gt;

&lt;p&gt;These checks address recorded factors. Unmeasured confounding remains possible, which is one reason the next external dataset matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  Decoys, ablations, and failed history
&lt;/h2&gt;

&lt;p&gt;The repository also contains 7,634 adversarial-decoy rows representing 708 unique exposure sets. They were constructed after outcome information was available. Their purpose is to attack specificity: does an observed surface exceed the 95th percentile of these necessary-condition alternatives?&lt;/p&gt;

&lt;p&gt;They are not a random null distribution. The chance-control statement comes from maxT. Decoy performance answers a different question.&lt;/p&gt;

&lt;p&gt;Western-only, Jyotish-only, and full-system exposures are also refit. Those ablations describe which rule family may carry a result under the present specification. No Western-by-Jyotish interaction test has been run, so the ablations do not establish synergy.&lt;/p&gt;

&lt;p&gt;Finally, the non-positive v3–v5 person-out results remain in the repository. v7 adds robustness inside the development set; it does not turn the earlier external tests into successes.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz7tyt8ehv21u29rcp7xq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fz7tyt8ehv21u29rcp7xq.png" alt="Current support and the next decisive tests" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Reproduce and review the code
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/AETHER-CORE1219/Genesis-Core-route-research-public.git
&lt;span class="nb"&gt;cd &lt;/span&gt;Genesis-Core-route-research-public
python3 &lt;span class="nt"&gt;-m&lt;/span&gt; pip &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt; independent_social_expression_v7/requirements.txt
&lt;span class="nv"&gt;PYTHONDONTWRITEBYTECODE&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1 python3 independent_social_expression_v7/scripts/reproduce_v7.py
&lt;span class="nv"&gt;PYTHONDONTWRITEBYTECODE&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1 python3 independent_social_expression_v7/scripts/validate_public_v7_privacy.py
&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;independent_social_expression_v7 &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;sha256sum&lt;/span&gt; &lt;span class="nt"&gt;-c&lt;/span&gt; CHECKSUMS.sha256&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A focused review can start with six questions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Does &lt;code&gt;analysis_order&lt;/code&gt; lock the same opaque 420 rows?&lt;/li&gt;
&lt;li&gt;Is the 18-column influence matrix derived from the declared 22-surface family correctly?&lt;/li&gt;
&lt;li&gt;Are person-level signs shared across every estimable surface in a draw?&lt;/li&gt;
&lt;li&gt;Is &lt;code&gt;axis=1&lt;/code&gt; taking the intended per-draw maximum?&lt;/li&gt;
&lt;li&gt;Do the critical value, adjusted p-values, and lower bounds match &lt;code&gt;RESULTS.json&lt;/code&gt;?&lt;/li&gt;
&lt;li&gt;Do the privacy validator and checksums pass?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;AETHERCORE develops and operates GenesisCore, which provides free results, paid detailed analysis interfaces, and emailed PDF reports. The commercial relationship is disclosed here because it is relevant context; the research code and result files can be reviewed without using the service.&lt;/p&gt;

&lt;h2&gt;
  
  
  Previous and next in this series
&lt;/h2&gt;

&lt;p&gt;The previous article introduced AETHERCORE, the GenesisCore product, the v1–v7 history, and the public package. This article followed the maxT implementation from the anonymous matrix to the simultaneous bounds. Next, we will inspect &lt;code&gt;analysis_order&lt;/code&gt;, the privacy validator, and the checksum chain that make the package reproducible without publishing identities.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/AETHER-CORE1219/Genesis-Core-route-research-public/blob/main/independent_social_expression_v7/README_JA.md" rel="noopener noreferrer"&gt;GenesisCore v7 primary materials&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/AETHER-CORE1219/Genesis-Core-route-research-public" rel="noopener noreferrer"&gt;Full public repository&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://aether-core.org/en/genesiscore?utm_source=devto&amp;amp;utm_medium=community&amp;amp;utm_campaign=route_v7_launch&amp;amp;utm_content=post02" rel="noopener noreferrer"&gt;GenesisCore product and report surfaces&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you find a flaw in the fixed family, influence calculation, sign reuse, or adjusted-bound calculation, please include the code path and the result produced by the alternative specification.&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>statistics</category>
      <category>python</category>
      <category>research</category>
    </item>
    <item>
      <title>Who We Are, What GenesisCore Builds, and Why Our Astrology Research Is Open</title>
      <dc:creator>AETHERCORE / Sora Attilas</dc:creator>
      <pubDate>Tue, 25 Aug 2026 15:34:54 +0000</pubDate>
      <link>https://dev.to/takatsusora/who-we-are-what-genesiscore-builds-and-why-our-astrology-research-is-open-5fbi</link>
      <guid>https://dev.to/takatsusora/who-we-are-what-genesiscore-builds-and-why-our-astrology-research-is-open-5fbi</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Publisher:&lt;/strong&gt; AETHERCORE, the research and business organization behind GenesisCore.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;What we build:&lt;/strong&gt; an analysis system combining Western astrology, Jyotish, AI-assisted interpretation, numerical processing, interactive results, and PDF reports.&lt;br&gt;&lt;br&gt;
&lt;strong&gt;What we will publish here:&lt;/strong&gt; data structures, reproducible code, statistical design, failed tests, product boundaries, and new research results.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Hello. We are AETHERCORE.&lt;/p&gt;

&lt;p&gt;Our main project is &lt;strong&gt;GenesisCore&lt;/strong&gt;. It is both an astrology-analysis product and a research program. Users can receive a free result, explore a paid detailed analysis interface, and obtain an extended PDF report by email.&lt;/p&gt;

&lt;p&gt;The subject is astrology. The work we want to discuss with the developer community is broader: how to turn a large symbolic rule system into structured data, how to connect it to auditable real-world records, how to limit researcher freedom, and how to release a result that another person can recalculate.&lt;/p&gt;

&lt;p&gt;This first post introduces the organization, the product, the reason for the research, the failed steps from v1 through v5, and the new v7 result. Later posts will examine the implementation in detail.&lt;/p&gt;

&lt;h2&gt;
  
  
  Table of contents
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;What GenesisCore provides&lt;/li&gt;
&lt;li&gt;Why developers may care&lt;/li&gt;
&lt;li&gt;What we mean by a route&lt;/li&gt;
&lt;li&gt;From a chart to a public matrix row&lt;/li&gt;
&lt;li&gt;How the research reached v7&lt;/li&gt;
&lt;li&gt;The question and result in plain language&lt;/li&gt;
&lt;li&gt;How M0, M3, and maxT differ&lt;/li&gt;
&lt;li&gt;What is in the public package&lt;/li&gt;
&lt;li&gt;How the result can enter the product&lt;/li&gt;
&lt;li&gt;What we will publish next&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What GenesisCore provides
&lt;/h2&gt;

&lt;p&gt;GenesisCore calculates Western and Jyotish structures from birth date, birth time, and birthplace. It then organizes many interacting rules into explanations, scores, graphs, timelines, and thematic analyses.&lt;/p&gt;

&lt;p&gt;The current user-facing surfaces are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;a free result interface;&lt;/li&gt;
&lt;li&gt;a paid detailed analysis interface;&lt;/li&gt;
&lt;li&gt;a long-form PDF report delivered by email.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The image below shows verified GenesisCore product surfaces. It is not a generated product mockup.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fexp49d6gkvp2xqp74dy8.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fexp49d6gkvp2xqp74dy8.png" alt="Verified GenesisCore Western and Jyotish result screens, free result UI, and PDF reports" width="800" height="1300"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why developers may care
&lt;/h2&gt;

&lt;p&gt;A large symbolic system creates a technical and epistemic problem. When hundreds of rules can apply to one person, it is easy to select a convincing interpretation after seeing the outcome.&lt;/p&gt;

&lt;p&gt;This is a familiar engineering problem in an unusual domain: a flexible rule engine can produce plausible outputs while making its own error rate hard to measure. We therefore separate two activities.&lt;/p&gt;

&lt;p&gt;The product calculates and explains a chart. The research layer asks whether a frozen group of astrological chains has a measurable relationship with documented activity across people.&lt;/p&gt;

&lt;p&gt;The questions include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Do different chart expressions converge on the same real-world function?&lt;/li&gt;
&lt;li&gt;Can one function be reached through several mechanisms?&lt;/li&gt;
&lt;li&gt;Does a result persist after accounting for era and data-collection differences?&lt;/li&gt;
&lt;li&gt;Does it survive correction across a declared family of tests?&lt;/li&gt;
&lt;li&gt;What should happen when a selected route fails on unused people?&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What we mean by a route
&lt;/h2&gt;

&lt;p&gt;A route is not a single placement-to-job lookup. It is a structured chain of chart factors that can converge on a documented social function.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;chart factors
  -&amp;gt; frozen relationship pattern
  -&amp;gt; route surface (present / absent)
  -&amp;gt; documented social function (present / absent)
  -&amp;gt; person-level analysis row
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The current research focuses on five non-exclusive functions:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;advocacy or public-cause action;&lt;/li&gt;
&lt;li&gt;authored symbolic production;&lt;/li&gt;
&lt;li&gt;organized collective realization;&lt;/li&gt;
&lt;li&gt;technology or product implementation;&lt;/li&gt;
&lt;li&gt;embodied competitive performance.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;A person may express several functions. We code documented activity, not an occupation label inferred from a chart.&lt;/p&gt;

&lt;h2&gt;
  
  
  From a chart to a public matrix row
&lt;/h2&gt;

&lt;p&gt;The public package reduces each person to an anonymous row. &lt;code&gt;observed_functions&lt;/code&gt; records the real-world side from fixed evidence. &lt;code&gt;surfaces&lt;/code&gt; records whether the frozen chart-side chains were present. This is an abridged public row:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"analysis_order"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="mi"&gt;14&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"release_id"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"R0001"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"birth_era"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"BEFORE_1900"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"observed_functions"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"AUTHORED_SYMBOLIC_PRODUCTION"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"KNOWLEDGE_OR_DISCOVERY_PRODUCTION"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"ORGANIZED_COLLECTIVE_REALIZATION"&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"surfaces"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"AUTHORED_SYMBOLIC_PRODUCTION"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"any_tier_jyotish"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"any_tier_western"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"primary_jyotish"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"primary_western"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The release ID and analysis order replace a personal name. The public package contains no identity lookup table.&lt;/p&gt;

&lt;h2&gt;
  
  
  How the research reached v7
&lt;/h2&gt;

&lt;p&gt;The history matters because v7 was not our first attempt.&lt;/p&gt;

&lt;h3&gt;
  
  
  v1: the first measurement method failed
&lt;/h3&gt;

&lt;p&gt;A 12-person pilot tested whether real-world activity could be labelled consistently from public evidence. It did not meet the predefined standard, so we stopped before chart comparison and recorded the failure.&lt;/p&gt;

&lt;h3&gt;
  
  
  v2: five functions in 420 people
&lt;/h3&gt;

&lt;p&gt;We built an anonymous, duplicate-free development set of 420 people. Five social functions and related astrological candidates were organized into a person-level matrix.&lt;/p&gt;

&lt;h3&gt;
  
  
  v3–v5: selected candidates did not reproduce on separated people
&lt;/h3&gt;

&lt;p&gt;We tested selected authorship, collective-realization, and competitive-performance candidates on people who were not used to select them. None produced a clear positive result. Those results remain public.&lt;/p&gt;

&lt;h3&gt;
  
  
  v6: multiple paths and failed tests were integrated
&lt;/h3&gt;

&lt;p&gt;We integrated five functions, 136 groups of related meanings, person-level paths, and the v3–v5 results. This made room for several mechanisms leading toward the same function while preserving the failed tests.&lt;/p&gt;

&lt;h3&gt;
  
  
  v7: a different question
&lt;/h3&gt;

&lt;p&gt;v7 does not rerun the failed person-out tests with new thresholds. It asks whether the five development-set results survive measured external factors and a declared multiple-testing family.&lt;/p&gt;

&lt;h2&gt;
  
  
  The question and result in plain language
&lt;/h2&gt;

&lt;p&gt;The core question is:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Among people whose charts contained the corresponding frozen chains, was the documented social function more common than among people whose charts did not? Did the difference remain after adding birth era, measurement regime, and collection source? Did it remain when 22 testing surfaces were evaluated together?&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;M0 is the raw difference between the two rates. M3 is the adjusted difference after adding birth era, evidence-measurement regime, and collection source.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Function&lt;/th&gt;
&lt;th&gt;Chains present&lt;/th&gt;
&lt;th&gt;Chains absent&lt;/th&gt;
&lt;th&gt;M0&lt;/th&gt;
&lt;th&gt;M3&lt;/th&gt;
&lt;th&gt;maxT p&lt;/th&gt;
&lt;th&gt;Simultaneous 95% lower&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Advocacy / public cause&lt;/td&gt;
&lt;td&gt;74.65% (71)&lt;/td&gt;
&lt;td&gt;37.82% (349)&lt;/td&gt;
&lt;td&gt;+36.83&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+33.60&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+18.48&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Authored symbolic production&lt;/td&gt;
&lt;td&gt;89.41% (85)&lt;/td&gt;
&lt;td&gt;50.45% (335)&lt;/td&gt;
&lt;td&gt;+38.96&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+39.08&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+27.79&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Collective realization&lt;/td&gt;
&lt;td&gt;82.50% (120)&lt;/td&gt;
&lt;td&gt;55.00% (300)&lt;/td&gt;
&lt;td&gt;+27.50&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+27.95&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;0.0001&lt;/td&gt;
&lt;td&gt;+16.01&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Technology / product&lt;/td&gt;
&lt;td&gt;64.71% (34)&lt;/td&gt;
&lt;td&gt;27.46% (386)&lt;/td&gt;
&lt;td&gt;+37.24&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+32.49&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;0.0008&lt;/td&gt;
&lt;td&gt;+9.64&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Competitive performance&lt;/td&gt;
&lt;td&gt;64.00% (25)&lt;/td&gt;
&lt;td&gt;18.48% (395)&lt;/td&gt;
&lt;td&gt;+45.52&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;+32.14&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;0.0047&lt;/td&gt;
&lt;td&gt;+6.93&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzg7kkskslj3298kjhlbu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fzg7kkskslj3298kjhlbu.png" alt="Five v7 function results showing M0, M3, and simultaneous maxT lower bounds" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The primary multiplicity control used 9,999 person-package maxT draws across a fixed 22-surface family. All five simultaneous lower bounds remained above zero.&lt;/p&gt;

&lt;p&gt;The result is strong inside the defined development study. It is not an independent person-out replication. It does not establish causality, universal validity, or deterministic career and future prediction.&lt;/p&gt;

&lt;h2&gt;
  
  
  How M0, M3, and maxT differ
&lt;/h2&gt;

&lt;p&gt;M0 through M3 add measured factors in stages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;M0: chain presence only;&lt;/li&gt;
&lt;li&gt;M1: add birth era;&lt;/li&gt;
&lt;li&gt;M2: add evidence-measurement regime;&lt;/li&gt;
&lt;li&gt;M3: add collection source.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Multiple-testing control is a separate layer. The fixed 22 surfaces share the same person-level sign flips in each draw, preserving dependence among surfaces. The following is a shortened version of the public implementation's core idea:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;numpy&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;

&lt;span class="n"&gt;rng&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;random&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;default_rng&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;20260821&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;shared_signs&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;rng&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;choice&lt;/span&gt;&lt;span class="p"&gt;((&lt;/span&gt;&lt;span class="o"&gt;-&lt;/span&gt;&lt;span class="mf"&gt;1.0&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;1.0&lt;/span&gt;&lt;span class="p"&gt;),&lt;/span&gt; &lt;span class="n"&gt;size&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;9_999&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nf"&gt;len&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;rows&lt;/span&gt;&lt;span class="p"&gt;)))&lt;/span&gt;

&lt;span class="n"&gt;influence_matrix&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;column_stack&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;surface_influences&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;null_max_t&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;max&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;shared_signs&lt;/span&gt; &lt;span class="o"&gt;@&lt;/span&gt; &lt;span class="n"&gt;influence_matrix&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;axis&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="n"&gt;critical_95&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;quantile&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;null_max_t&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mf"&gt;0.95&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;adjusted_p&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="n"&gt;np&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;sum&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;null_max_t&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;=&lt;/span&gt; &lt;span class="n"&gt;observed_t&lt;/span&gt;&lt;span class="p"&gt;))&lt;/span&gt; &lt;span class="o"&gt;/&lt;/span&gt; &lt;span class="mi"&gt;10_000&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Using a shared 420-person sign package for every surface keeps cross-surface dependence in the null distribution. The complete calculation, including studentization and simultaneous bounds, is in &lt;code&gt;scripts/reproduce_v7.py&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is in the public package
&lt;/h2&gt;

&lt;p&gt;The repository contains more than a narrative README:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;methods and function definitions;&lt;/li&gt;
&lt;li&gt;an anonymous 420-person analysis matrix;&lt;/li&gt;
&lt;li&gt;machine-readable &lt;code&gt;RESULTS.json&lt;/code&gt;;&lt;/li&gt;
&lt;li&gt;a machine-readable claim boundary;&lt;/li&gt;
&lt;li&gt;failure and limitation history;&lt;/li&gt;
&lt;li&gt;a reproduction script;&lt;/li&gt;
&lt;li&gt;a public-privacy validator;&lt;/li&gt;
&lt;li&gt;SHA-256 checksums.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;From the repository root:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;python3 &lt;span class="nt"&gt;-m&lt;/span&gt; pip &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-r&lt;/span&gt; independent_social_expression_v7/requirements.txt
&lt;span class="nv"&gt;PYTHONDONTWRITEBYTECODE&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1 python3 independent_social_expression_v7/scripts/reproduce_v7.py
&lt;span class="nv"&gt;PYTHONDONTWRITEBYTECODE&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;1 python3 independent_social_expression_v7/scripts/validate_public_v7_privacy.py
&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;cd &lt;/span&gt;independent_social_expression_v7 &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;sha256sum&lt;/span&gt; &lt;span class="nt"&gt;-c&lt;/span&gt; CHECKSUMS.sha256&lt;span class="o"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  How the result can enter the product
&lt;/h2&gt;

&lt;p&gt;AETHERCORE operates both the research and the GenesisCore service. We disclose that commercial relationship.&lt;/p&gt;

&lt;p&gt;v7 can support explanation, hypothesis formation, and dialogue. It cannot currently serve as a validated predictor of occupation, behavior, or future events. Product UI must display the research status and the open replication boundary.&lt;/p&gt;

&lt;p&gt;Readers can evaluate the public package without using or purchasing the product.&lt;/p&gt;

&lt;h2&gt;
  
  
  What we will publish next
&lt;/h2&gt;

&lt;p&gt;The next DEV post will explain the shared-sign person-package maxT design and why multiplicity and measured-confound adjustment are separate layers.&lt;/p&gt;

&lt;p&gt;Later posts will cover:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;public-data privacy and anonymous reproducibility;&lt;/li&gt;
&lt;li&gt;the v3–v5 failed person-out tests;&lt;/li&gt;
&lt;li&gt;Western-only and Jyotish-only ablations;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;the claim boundary between research output and product UI.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/AETHER-CORE1219/Genesis-Core-route-research-public/blob/main/independent_social_expression_v7/README_JA.md" rel="noopener noreferrer"&gt;GenesisCore v7 primary page&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://github.com/AETHER-CORE1219/Genesis-Core-route-research-public" rel="noopener noreferrer"&gt;Full public research repository&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://aether-core.org/en/genesiscore?utm_source=devto&amp;amp;utm_medium=community&amp;amp;utm_campaign=route_v7_launch&amp;amp;utm_content=post01" rel="noopener noreferrer"&gt;See the actual GenesisCore product&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>research</category>
      <category>datascience</category>
      <category>opensource</category>
      <category>astrology</category>
    </item>
  </channel>
</rss>
