mirror of
https://github.com/apachecn/ailearning.git
synced 2026-02-03 02:14:18 +08:00
21 lines
595 B
Python
21 lines
595 B
Python
# import tutorials.keras.text_NER as ft
|
|
# import tutorials.keras.brat_tag as ft
|
|
import tutorials.RecommenderSystems.rs_rating_demo as ft
|
|
# from middleware.utils import TimeStat, Chart
|
|
# import matplotlib.pyplot as plt
|
|
# import matplotlib.gridspec as gridspec
|
|
# from matplotlib.font_manager import FontProperties
|
|
# plt.rcParams['font.sans-serif'] = ['SimHei']
|
|
# plt.rcParams['axes.unicode_minus'] = False
|
|
|
|
|
|
def main():
|
|
ft.main()
|
|
# x=y=[1,2,3]
|
|
# plt.plot(x, y, color='g', linestyle='-') # 绘制
|
|
# plt.grid(True, ls = '--')
|
|
# plt.show()
|
|
|
|
if __name__ == "__main__":
|
|
main()
|