JuliaTrustworthyAI / TaijaInteroperability.jl

A package for enabling interoperability between Python and R machine learning models with Taija.
https://www.taija.org/TaijaInteroperability.jl/
MIT License
0 stars 0 forks source link

Add PyTorch tests #7

Closed kmariuszk closed 12 months ago

kmariuszk commented 12 months ago

Testing functionality of PyTorch models.

kmariuszk commented 12 months ago

@pat-alt could you please take a look at the error message thrown by the pipelines Julia1.7 and Julia1.8? It popped up after I added

using PackageExtensionCompat
function __init__()
    @require_extensions
end

in the src/TaijaInteroperability.jl folder. My best guess why it pops up is the fact that I didn't create Project.toml in the test folder and handled the dependencies in the root Project.toml file. Do you think that's the case? Or am I missing something else?

pat-alt commented 12 months ago

@pat-alt could you please take a look at the error message thrown by the pipelines Julia1.7 and Julia1.8? It popped up after I added

using PackageExtensionCompat
function __init__()
    @require_extensions
end

in the src/TaijaInteroperability.jl folder. My best guess why it pops up is the fact that I didn't create Project.toml in the test folder and handled the dependencies in the root Project.toml file. Do you think that's the case? Or am I missing something else?

Exactly, just create a separate env for tests in the test folder and add those deps