Skip to content

Fix runtime exception in MapKeyToVector sample. #3287

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 11, 2019

Conversation

codemzs
Copy link
Member

@codemzs codemzs commented Apr 11, 2019

fixes #3286

@codemzs codemzs requested review from wschin, artidoro and sfilipi April 11, 2019 01:32
@@ -67,8 +67,8 @@ private class DataPoint

private class TransformedData : DataPoint
{
public uint[] TimeframeVector { get; set; }
public uint[] CategoryVector { get; set; }
public float[] TimeframeVector { get; set; }
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the other option is leave it as uint[] but add another transform in the pipeline that converts these column types from float to uint but this is not currently possibly because we don't have float to uint converter in Conversions.cs but of course that can be added and we can use C#'s convention for conversion to uint by casting.

CC: @TomFinley

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think changing the type is appropriate -- this is a key-to-vector sample, the output type of key-to-vector is a float vector, so, this change seems appropriate at least to me.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @TomFinley

@codemzs codemzs requested a review from TomFinley April 11, 2019 02:06
@codecov
Copy link

codecov bot commented Apr 11, 2019

Codecov Report

Merging #3287 into master will decrease coverage by <.01%.
The diff coverage is n/a.

@@            Coverage Diff             @@
##           master    #3287      +/-   ##
==========================================
- Coverage   72.63%   72.63%   -0.01%     
==========================================
  Files         807      807              
  Lines      145129   145129              
  Branches    16220    16220              
==========================================
- Hits       105417   105414       -3     
- Misses      35294    35297       +3     
  Partials     4418     4418
Flag Coverage Δ
#Debug 72.63% <ø> (-0.01%) ⬇️
#production 68.17% <ø> (ø) ⬆️
#test 88.94% <ø> (-0.01%) ⬇️
Impacted Files Coverage Δ
...soft.ML.TestFramework/DataPipe/TestDataPipeBase.cs 73.7% <0%> (-0.34%) ⬇️

Copy link
Contributor

@TomFinley TomFinley left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @codemzs !

@codemzs codemzs requested a review from eerhardt April 11, 2019 15:00
@codemzs codemzs merged commit 1e27ead into dotnet:master Apr 11, 2019
codemzs added a commit to codemzs/machinelearning that referenced this pull request Apr 11, 2019
@ghost ghost locked as resolved and limited conversation to collaborators Mar 22, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

MapKeyToValue sample throws exception
3 participants