Git Product home page Git Product logo

Comments (5)

patrick-kidger avatar patrick-kidger commented on July 28, 2024 2

Thanks! This should be fixed in #27.

from jaxtyping.

patrick-kidger avatar patrick-kidger commented on July 28, 2024

Should be fixed in #24!

from jaxtyping.

wookayin avatar wookayin commented on July 28, 2024

I'm still having a similar issue with jaxtyping==0.2.2 and jaxtyping==0.2.3 -- from a similar but different place. Reverting back to jaxtyping==0.2.0 has no issue.

Client code:

assert isinstance(observations, types.FloatArray)

Where it crashes:

File "...python3.10/site-packages/jaxtyping/array_types.py", line 153, in __instancecheck__
  153       if len(storage.memo_stack) == 0:   

from jaxtyping.

patrick-kidger avatar patrick-kidger commented on July 28, 2024

Can you provide a full MWE that I can run?

from jaxtyping.

wookayin avatar wookayin commented on July 28, 2024

It's just making any isinstance call within a thread:

Here is a minimal working example that fails with jaxtyping==0.2.3:

import jax.numpy as jnp
from jaxtyping import Array, Float as F
import threading
from typeguard import typechecked as typechecker

FloatArray = F[jnp.ndarray, '...']

def run():
    a = jnp.array([[1., 2.]])
    assert isinstance(a, FloatArray)

thread = threading.Thread(target=run)
thread.start()
thread.join()

Error:

  File "test.py", line 10, in run
    assert isinstance(a, FloatArray)
  File ".../jaxtyping/array_types.py", line 153, in __instancecheck__
    if len(storage.memo_stack) == 0:
AttributeError: '_thread._local' object has no attribute 'memo_stack'

from jaxtyping.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.