Tim Clements

Results 7 issues of Tim Clements

Trying to load ArcFace model from [ONNX](https://github.com/onnx/models/tree/master/vision/body_analysis/arcface). Using versions ```julia (v1.3) pkg> st Status `~/.julia/environments/v1.3/Project.toml` [c5f51814] CUDAdrv v6.0.0 [be33ccc6] CUDAnative v2.10.2 [3a865a2d] CuArrays v1.7.2 [587475ba] Flux v0.10.1 [d0dd6a25] ONNX v0.1.1...

The `ConvTranspose` operator needs to be implemented https://github.com/onnx/onnx/blob/master/docs/Operators.md#ConvTranspose ```julia ONNX.load_model("model.onnx") ERROR: KeyError: key :ConvTranspose not found Stacktrace: [1] getindex(::Dict{Symbol,Any}, ::Symbol) at ./dict.jl:478 [2] _graph(::ONNX.Types.Graph) at /home/timclements/.julia/packages/ONNX/iz0dL/src/graph/graph.jl:0 [3] graph(::ONNX.Types.Graph) at /home/timclements/.julia/packages/ONNX/iz0dL/src/graph/graph.jl:92...

I'm on SeisIO v1.2.1 and Julia 1.7.0 I have a miniseed file with over 3,000 channels. Loading the file on a windows machine with 32GB RAM is crashing with out...

I am not able to test SeisIO on my work computer because I don't have permission to install svn. A solution to this would be to change the tests to...

With SeisIO v1.2.0 ```julia (@v1.5) pkg> st Status `~/.julia/environments/v1.5/Project.toml` [b372bb87] SeisIO v1.2.0 ``` I found an mseed file with 113 different unique sampling rates. ```julia using SeisIO SeisIO.SEED.scan_seed("/home/timclements/CIHEC__BHZ___1999289.ms") CHANNEL |...

On SeisIO v1.2.0 ```julia (@v1.5) pkg> st Status `~/.julia/environments/v1.5/Project.toml` [b372bb87] SeisIO v1.2.0 ``` Using `sync!` on a `SeisChannel` does not update the time matrix but an allocating `sync` does. MWE:...

bug

Reading a parquet file into a DataFrame is ~170 slower than using CSV.read with the same data. Not sure I can help improve performance but this is limiting my use...