Commit 610a8b3b authored by mythezone's avatar mythezone
Browse files

update

parent c34c40af
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
# -*- encoding: utf-8 -*-
'''
@File    :   change_data_from_id_to_structrue.py
@Time    :   2021/09/29 11:00:50
@Author  :   Muyao ZHONG 
@Version :   1.0
@Contact :   zmy125616515@hotmail.com
@License :   (C)Copyright 2019-2020
@Title   :   change data format
'''

import os,sys
sys.path.append("./dataset/DTLP_pre")

import pandas as pd 
import numpy as np 

from dataset.DTLP_pre.data_constructor import *

input_path="./dataset/original/datasets_yamanishi_2008/"

def read_data(filepath):
    
Loading