mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-17 16:35:52 +00:00
Update samples and Readme
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 3.20)
|
||||
project(main)
|
||||
project(sample)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 11)
|
||||
|
||||
|
@@ -44,10 +44,10 @@ test = FImdlp(
|
||||
now = time.time()
|
||||
test.fit(X, y)
|
||||
fit_time = time.time()
|
||||
print("Fitting: ", fit_time - now)
|
||||
print(f"Fitting ....: {fit_time - now:7.5f} seconds")
|
||||
now = time.time()
|
||||
Xt = test.transform(X)
|
||||
print("Transforming: ", time.time() - now)
|
||||
print(f"Transforming: {time.time() - now:7.5f} seconds")
|
||||
print(test.get_cut_points())
|
||||
clf = RandomForestClassifier(random_state=0)
|
||||
print(
|
||||
|
Reference in New Issue
Block a user