Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
ec890d6
GetSummaryDataView() implementation for Pca and Linear Predictors
ganik May 18, 2018
9394cdd
typo
ganik May 18, 2018
b508e68
Implement ICanGetSummaryAsIRow instead of ICanGetSummaryAsIDataView o…
ganik May 25, 2018
e072546
Merge branch 'master' of https://github.com/ganik/machinelearning
ganik May 25, 2018
ec8200a
Add vector column for top rank eigenvectors
ganik May 27, 2018
cf37f62
remove unnecessary code
ganik May 27, 2018
9943586
remove space
ganik May 27, 2018
45cd5f2
fix build
ganik May 28, 2018
083645f
no need for slot names
ganik May 29, 2018
58d0f31
Merge pull request #1 from dotnet/master
ganik May 30, 2018
c5c0173
Enable back PCA anomaly tests
ganik May 30, 2018
695abc5
fix PCA Anomaly tests baseline
ganik May 30, 2018
eea9c69
fix unit tests for Release
ganik May 30, 2018
637b325
Add PCA azure test data
ganik May 30, 2018
bdec903
Added entrypoint summpary test for LinearPredictor
ganik May 30, 2018
b942537
added PCA summary test
ganik May 30, 2018
678633c
use using() { } on IDisposable
ganik May 31, 2018
3031a4c
remove slot names
ganik Jun 4, 2018
b0c2e49
remove not needed datasets
ganik Jun 5, 2018
eb3df32
Merge pull request #2 from dotnet/master
ganik Jun 15, 2018
7cb7bc8
Added LDANative project
ganik Jun 19, 2018
0690012
Merge pull request #3 from dotnet/master
ganik Jun 19, 2018
9ee8703
remove malloc.h
ganik Jun 19, 2018
1c4310f
Merge branch 'master' of https://github.com/ganik/machinelearning
ganik Jun 19, 2018
1574123
no affinity for MAC for now
ganik Jun 20, 2018
341be9d
disable affinity for MAC for now
ganik Jun 20, 2018
179d6cf
adding LdaTransform
ganik Jun 20, 2018
8be2c79
Fix header
ganik Jun 21, 2018
c79589c
Fix name case
ganik Jun 21, 2018
b35d4cf
Update Entrypoint catalog test and CSharpApi
ganik Jun 21, 2018
e1e0421
reference lda native in tests
ganik Jun 21, 2018
1e9b0d3
add lda native reference to test project
ganik Jun 21, 2018
c41dc50
address comments
ganik Jun 25, 2018
7c2449f
remove aliases
ganik Jun 25, 2018
6e6cefb
rename LDANative to LdaNative folder
ganik Jun 25, 2018
545ae86
remove unicode char
ganik Jun 25, 2018
336ddb0
address comments
ganik Jun 25, 2018
98c15c6
remove aliases
ganik Jun 25, 2018
34eedf1
Add unit tests for "direct" API
ganik Jun 25, 2018
9b4dcab
add LdaNative reference to test proj
ganik Jun 25, 2018
6205510
thread affinity on OSX
ganik Jun 25, 2018
b72d194
include <mach/mach_types.h>
ganik Jun 25, 2018
1ce124b
include <mach/thread_act.h>
ganik Jun 25, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix name case
  • Loading branch information
ganik committed Jun 21, 2018
commit c79589c12cb48f0db3a93b2929605f73ca9a62b4
6 changes: 3 additions & 3 deletions src/Native/LDANative/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
project (LDANative)
project (LdaNative)

set(SOURCES
alias_multinomial_rng_int.cpp
Expand All @@ -14,6 +14,6 @@ set(SOURCES
utils.cpp
)

add_library(LDANative SHARED ${SOURCES} ${RESOURCES})
add_library(LdaNative SHARED ${SOURCES} ${RESOURCES})

install_library_and_symbols (LDANative)
install_library_and_symbols (LdaNative)
2 changes: 1 addition & 1 deletion src/Native/build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<NativePackageAsset Include="$(NativeAssetsBuiltPath)\$(NativeLibPrefix)FastTreeNative$(NativeLibExtension)"
RelativePath="Microsoft.ML\runtimes\$(PackageRid)\native" />

<NativePackageAsset Include="$(NativeAssetsBuiltPath)\$(NativeLibPrefix)LDANative$(NativeLibExtension)"
<NativePackageAsset Include="$(NativeAssetsBuiltPath)\$(NativeLibPrefix)LdaNative$(NativeLibExtension)"
RelativePath="Microsoft.ML\runtimes\$(PackageRid)\native" />
</ItemGroup>

Expand Down