23 Matching Annotations
  1. Apr 2026
    1. if AI can do only 50 percent of a human's tasks, the importance of the non-automatable tasks likely goes up since they become the bottlenecks, increasing their relative value.

      「部分自动化悖论」:当 AI 完成一半工作时,剩余不可自动化的工作反而变得更重要、更值钱——因为它们成了生产的瓶颈。这意味着 AI 的局部进展可能不会均匀地分配收益,而是集中在那些「恰好不能被自动化」的稀有能力持有者身上。这是一个对「AI 替代论」的精妙反驳,也是理解「AI 时代哪种技能更值钱」的正确框架。

    1. We introduce a minimal hierarchical partially observed control model with latent dynamics, structured episodic memory, observer-belief state, option-level actions, and delayed verifier signals.

      大多数AI系统设计倾向于使用完全可观测的模型,并假设系统状态是已知的。但作者提出了一个部分可观测的层级控制模型,包含潜在动态、结构化情景记忆、观察者信念状态、选项级行动和延迟验证器信号。这一观点挑战了传统AI系统设计的完全可观测性假设,认为部分可观测性更接近现实世界的复杂性。

  2. Jun 2025
    1. Following Mill

      for - example - partial truth of each of - traditional - modern - postmodern worldview - traditional worldview - affirms - transcendental divine - sense of higher purpose - importance of social solidarity / national sovereignty - denies - this worldly - the individuall - modern worldview - affirms - reality - material - physical - objective - logic and reasoning - democracy / free speech - denial - immaterial - subjective and inner space - post-modern worldview - affirms - reality as constructed - inclusiveness - denial - reality as - material - physical - objective - agency of the individual - universal values and realities

  3. Apr 2025
  4. Dec 2022
  5. Jun 2021
  6. Apr 2021
  7. Nov 2020
  8. Oct 2020
  9. Sep 2020
  10. Aug 2020
  11. Jul 2020
  12. Jun 2020
  13. Feb 2019
    1. You may believe that there is a relationship between 10,000 m running performance and VO2max (i.e., the larger an athlete's VO2max, the better their running performance), but you would like to know if this relationship is affected by wind speed and humidity (e.g., if the relationship changes when taking wind speed and humidity into account since you suspect that athletes' performance decreases in more windy and humid conditions).

      An example of partial correlation.

  14. Nov 2018
  15. Dec 2017
    1. After doing some research, we found mochiglobal, a module that exploits a feature of the VM: if Erlang sees a function that always returns the same constant data, it puts that data into a read-only shared heap that processes can access without copying the data. mochiglobal takes advantage of this by creating an Erlang module with one function at runtime and compiling it.

      This is a cool trick and it sounds like partial evaluation and just-in-time compilation.